Changeset 2739 for trunk/LMDZ.MARS
- Timestamp:
- Jun 30, 2022, 10:31:16 AM (2 years ago)
- Location:
- trunk/LMDZ.MARS
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.MARS/README
r2685 r2739 3719 3719 and top of atmosphere from physiq. Required adding some output arguments 3720 3720 to callradite. 3721 3722 == 30/06/2022 == EM 3723 Minor bug fix in co2condens, erroneous use of surface geopotential phisfi(), 3724 wheras geoptential pphi() is already the geopotential relative to the surface. 3725 Tests showed that this specific erroneous computation was only done in rare 3726 cases and had overall little impact on the simulations. -
trunk/LMDZ.MARS/libf/phymars/co2condens_mod.F
r2669 r2739 24 24 & qperemin,masseqmin, 25 25 & igcm_co2 26 use surfdat_h, only: emissiv , phisfi26 use surfdat_h, only: emissiv 27 27 use geometry_mod, only: latitude, ! grid point latitudes (rad) 28 28 & longitude_deg, latitude_deg … … 400 400 401 401 IF (zfallice(ig,1).gt.0 .and. .not. co2clouds) then 402 zfallheat = zfallice(ig,1) * (pphi(ig,1)- phisfi(ig) + 402 ! potential eneregy release due to the impact of the snowfall 403 ! appendix of forget et al. 1999 404 zfallheat = zfallice(ig,1) * (pphi(ig,1) + 403 405 & cpice*(ztcond(ig,1)-ztcondsol(ig)))/latcond 404 406 ELSE
Note: See TracChangeset
for help on using the changeset viewer.