- Timestamp:
- May 21, 2012, 1:35:29 PM (13 years ago)
- Location:
- trunk/LMDZ.MARS
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/LMDZ.MARS/README ¶
r661 r663 1679 1679 local array). 1680 1680 1681 == 21/05/12 == JYC 1681 == 21/05/12 == JYC+FL 1682 1682 - corrected bug in computation of HCO2+ in paramfoto_compact.F 1683 - avoid infinite H2O saturation ratio at very low temperatures in improvedclouds.F -
TabularUnified trunk/LMDZ.MARS/libf/phymars/improvedclouds.F ¶
r633 r663 36 36 #include "dimradmars.h" 37 37 #include "microphys.h" 38 #include "conc.h" 38 39 c------------------------------------------------------------------ 39 40 c Inputs: … … 258 259 259 260 c Get the partial pressure of water vapor and its saturation ratio 260 ph2o = zq(ig,l,igcm_h2o_vap) * ( 44./18.) * pplay(ig,l)261 satu = zq(ig,l,igcm_h2o_vap) / zqsat(ig,l)261 ph2o = zq(ig,l,igcm_h2o_vap) * (mmean(ig,l)/18.) * pplay(ig,l) 262 satu = zq(ig,l,igcm_h2o_vap) / max(zqsat(ig,l), 1.e-30) 262 263 263 264 !=============================================================
Note: See TracChangeset
for help on using the changeset viewer.