Changeset 1773 for trunk/LMDZ.MARS/libf/phymars
- Timestamp:
- Aug 27, 2017, 8:51:38 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.MARS/libf/phymars/phys_state_var_init_mod.F90
r1621 r1773 34 34 !======================================================================= 35 35 36 use slope_mod, only: ini_slope_mod 37 use comsaison_h, only: ini_comsaison_h 38 use surfdat_h, only: ini_surfdat_h 39 use comgeomfi_h, only: ini_comgeomfi_h 40 use comsoil_h, only: ini_comsoil_h 41 use dimradmars_mod, only: ini_dimradmars_mod 42 use yomlw_h, only: ini_yomlw_h 43 use conc_mod, only: ini_conc_mod 44 use turb_mod, only: ini_turb_mod 36 use slope_mod, only: ini_slope_mod,end_slope_mod 37 use comsaison_h, only: ini_comsaison_h,end_comsaison_h 38 use surfdat_h, only: ini_surfdat_h,end_surfdat_h 39 use comgeomfi_h, only: ini_comgeomfi_h,end_comgeomfi_h 40 use comsoil_h, only: ini_comsoil_h,end_comsoil_h 41 use dimradmars_mod, only: ini_dimradmars_mod,end_dimradmars_mod 42 use yomlw_h, only: ini_yomlw_h,end_yomlw_h 43 use conc_mod, only: ini_conc_mod,end_conc_mod 44 use turb_mod, only: ini_turb_mod,end_turb_mod 45 45 use comcstfi_h, only: pi,rad,cpp,g,r,rcp 46 use tracer_mod, only: ini_tracer_mod 46 use tracer_mod, only: ini_tracer_mod,end_tracer_mod 47 47 use time_phylmdz_mod, only: init_time 48 48 … … 56 56 57 57 ! set dimension and allocate arrays in tracer_mod 58 call end_tracer_mod 58 59 call ini_tracer_mod(nq,tname) 59 60 … … 70 71 71 72 ! allocate "slope_mod" arrays 73 call end_slope_mod 72 74 call ini_slope_mod(ngrid) 73 75 74 76 ! allocate "comsaison_h" arrays 77 call end_comsaison_h 75 78 call ini_comsaison_h(ngrid) 76 79 77 80 ! allocate "surfdat_h" arrays 81 call end_surfdat_h 78 82 call ini_surfdat_h(ngrid,nq) 79 83 80 84 ! allocate "comgeomfi_h" arrays 85 call end_comgeomfi_h 81 86 call ini_comgeomfi_h(ngrid) 82 87 83 88 ! allocate "comsoil_h" arrays 89 call end_comsoil_h 84 90 call ini_comsoil_h(ngrid) 85 91 86 92 ! set some variables in "dimradmars_mod" 93 call end_dimradmars_mod 87 94 call ini_dimradmars_mod(ngrid,nlayer) 88 95 89 96 ! allocate arrays in "yomlw_h" 97 call end_yomlw_h 90 98 call ini_yomlw_h(ngrid) 91 99 92 100 ! allocate arrays in "conc_mod" (aeronomars) 101 call end_conc_mod 93 102 call ini_conc_mod(ngrid,nlayer) 94 103 95 104 ! allocate arrays in "turb_mod" 105 call end_turb_mod 96 106 call ini_turb_mod(ngrid,nlayer) 97 107
Note: See TracChangeset
for help on using the changeset viewer.