Changeset 2417 for trunk/LMDZ.MARS/libf/phymars/dust_param_mod.F90
- Timestamp:
- Oct 16, 2020, 9:40:05 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.MARS/libf/phymars/dust_param_mod.F90
r2415 r2417 15 15 16 16 REAL,SAVE,ALLOCATABLE :: tauscaling(:) ! Convertion factor for qdust and Ndust 17 INTEGER,SAVE :: tauscaling_mode ! =0, no rescaling (freedust) 18 ! =1, prescribed scaling GCM5.3 style 17 INTEGER,SAVE :: dustscaling_mode ! dust scaling modes 18 ! =0, no rescaling (freedust) 19 ! =1, prescribed scaling GCM5.3 style (using tauscaling) 20 ! =2, only radiative scaling (using dust_rad_adjust) 21 REAL,SAVE,ALLOCATABLE :: dust_rad_adjust(:) ! radiative scaling for dust 22 REAL,PARAMETER :: t_scenario_sol=14/24. ! time of day (sol) at which 23 ! tau_pref_scenario is deemed exact 19 24 20 25 contains … … 25 30 26 31 allocate(tauscaling(ngrid)) 32 allocate(dust_rad_adjust(ngrid)) 27 33 28 34 end subroutine ini_dust_param_mod … … 32 38 33 39 if (allocated(tauscaling)) deallocate(tauscaling) 40 if (allocated(dust_rad_adjust)) deallocate(dust_rad_adjust) 34 41 35 42 end subroutine end_dust_param_mod
Note: See TracChangeset
for help on using the changeset viewer.