updated top-level README and version_decl for V4.5 (#1847)
[WRF.git] / chem / module_mosaic_lsode.F
blob3061847bd6455d2e2aacd8c09332f65ee8b7d651
1 module module_mosaic_lsode
2   !
3   ! double precision lsodes solver
4   !
5   implicit none
6   private
8   public :: MOSAIC_LSODE
10 contains
11   subroutine MOSAIC_LSODE(dtchem)
12     use module_data_mosaic_kind
14     implicit none
17     ! subr arguments
18     real(r8), intent(in) :: dtchem
20     call wrf_error_fatal('*** error - mosaic_lsode has been deactivated ***')    
22     return
23   end subroutine MOSAIC_LSODE
25 end module module_mosaic_lsode