Changeset 2639
- Timestamp:
- Mar 9, 2022, 4:37:25 PM (3 years ago)
- Location:
- trunk/LMDZ.MARS
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.MARS/README
r2637 r2639 3646 3646 Update .def* files in LMDZ.MARS/deftank/ 3647 3647 *.def.GCM6 files are bound to change later but are ready to use. 3648 3649 == 03/03/2022 == AB 3650 Following r2637, change default values for dust cycle parameters to make them 3651 consistent with callphys.def.GCM6 -
trunk/LMDZ.MARS/deftank/callphys.def.GCM6
r2637 r2639 122 122 # DUST: dust injection scheme (if >0, use 'dustinjection') 123 123 dustinjection=1 124 # DUST: dust injection scheme coefficient (default= 1.)124 # DUST: dust injection scheme coefficient (default=0.25) 125 125 coeff_injection=0.25 126 # DUST: dust injection scheme initial local time (def : 10.)126 # DUST: dust injection scheme initial local time (default=0.) 127 127 ti_injection=0. 128 # DUST: dust injection scheme final local time (def : 12.)128 # DUST: dust injection scheme final local time (default=24.) 129 129 tf_injection=24. 130 130 # DUST: Rocket Dust Storm scheme 131 131 rdstorm=.true. 132 # DUST: RDS detrainment coefficient (def : 0.05)132 # DUST: RDS detrainment coefficient (default=0.02) 133 133 coeff_detrainment=0.02 134 134 # DUST: Dust entrainment by subgrid-scale slope winds … … 171 171 # WATER: Water ice thermal inertia (old ice and fresh frost) 172 172 inert_h2o_ice = 800 173 # Sublimation latent heat (def = T)173 # Sublimation latent heat (default = .true.) 174 174 latentheat_surfwater = .true. 175 175 #WATER: subgrid clouds -
trunk/LMDZ.MARS/libf/phymars/conf_phys.F
r2628 r2639 310 310 write(*,*)" rdstorm = ",rdstorm 311 311 ! rocket dust storm detrainment coefficient 312 coeff_detrainment=0.0 5! default value312 coeff_detrainment=0.02 ! default value 313 313 call getin_p("coeff_detrainment",coeff_detrainment) 314 314 write(*,*)" coeff_detrainment = ",coeff_detrainment … … 414 414 write(*,*)" dustinjection = ",dustinjection 415 415 ! dust injection scheme coefficient 416 coeff_injection= 1.! default value416 coeff_injection=0.25 ! default value 417 417 call getin_p("coeff_injection",coeff_injection) 418 418 write(*,*)" coeff_in,jection = ",coeff_injection 419 419 ! timing for dust injection 420 ti_injection= 10. ! default value421 tf_injection= 12. ! default value420 ti_injection=0. ! default value 421 tf_injection=24. ! default value 422 422 call getin_p("ti_injection",ti_injection) 423 423 write(*,*)" ti_injection = ",ti_injection
Note: See TracChangeset
for help on using the changeset viewer.