Changeset 2218
- Timestamp:
- Jan 16, 2020, 10:44:19 AM (5 years ago)
- Location:
- trunk/LMDZ.MARS
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.MARS/README
r2217 r2218 2825 2825 Bug fix in newstart "composition" option; added option "q=factor" in 2826 2826 newstart to multiply a tracer mixing ratio by a constant factor. 2827 2828 == 16/01/2020 == EM 2829 Change "latentheat" flag to a more descriptive "latentheat_surfwater" and 2830 set its default value to .true. -
trunk/LMDZ.MARS/libf/phymars/callkeys.h
r2199 r2218 15 15 & ,calltherm,callrichsl,callslope,tituscap,callyamada4,co2clouds & 16 16 & ,co2useh2o,meteo_flux,CLFvaryingCO2,spantCO2,CLFvarying & 17 & ,satindexco2,rdstorm,slpwind,calllott_nonoro,latentheat 17 & ,satindexco2,rdstorm,slpwind,calllott_nonoro & 18 & ,latentheat_surfwater 18 19 19 20 COMMON/callkeys_i/iradia,iaervar,iddist,ilwd,ilwb,ilwn,ncouche & … … 67 68 logical rdstorm ! rocket dust storm parametrization 68 69 logical slpwind ! entrainment by slope wind parametrization 69 logical latentheat ! latent heat release from ground water ice sublimation/condensation70 logical latentheat_surfwater ! latent heat release from ground water ice sublimation/condensation 70 71 logical sedimentation 71 72 logical activice,tifeedback,supersat,caps -
trunk/LMDZ.MARS/libf/phymars/conf_phys.F
r2199 r2218 307 307 write(*,*)"latent heat release during sublimation", 308 308 & " /condensation of ground water ice" 309 latentheat =.false. ! default value310 call getin("latentheat ",latentheat)311 write(*,*)" latentheat = ",latentheat309 latentheat_surfwater=.true. ! default value 310 call getin("latentheat_surfwater",latentheat_surfwater) 311 write(*,*)" latentheat_surfwater = ",latentheat_surfwater 312 312 313 313 write(*,*)"rad.transfer is computed every iradia", -
trunk/LMDZ.MARS/libf/phymars/vdifc_mod.F
r2179 r2218 867 867 ! pdtsrf(ig) = (tsrf_lw(ig)-ptsrf(ig))/ptimestep 868 868 c Take into account the H2O latent heat impact on the surface temperature 869 if (latentheat ) then869 if (latentheat_surfwater) then 870 870 tsrf_lh(ig) = ptsrf(ig) + pdtsrf(ig) *ptimestep 871 871 lh=(2834.3-0.28*(tsrf_lh(ig)-To)-
Note: See TracChangeset
for help on using the changeset viewer.