Changeset 2516
- Timestamp:
- May 6, 2021, 5:31:05 PM (4 years ago)
- Location:
- trunk/LMDZ.MARS
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.MARS/README
r2515 r2516 3376 3376 - hdo_vap is now treated independantly after h2o_vap (should be fine !) 3377 3377 3378 3378 == 06/05/2021 == MV 3379 Correction of the threshold value used to prevent from negative values in watercloud_mod.F: the threshold is set to 1e-16 (=qperemin, an already existing parameter for the water cycle), instead of 1e-8. This former value was at the origin of a strong and unrealistic drying out of the upper atmosphere, when the photochemistry was active, during the first part of the martian year (months 3 and 4). (bug reported by Francisco Gonzalez-Galindo). 3380 -
trunk/LMDZ.MARS/libf/phymars/watercloud_mod.F
r2494 r2516 22 22 & igcm_dust_mass, igcm_dust_number, 23 23 & igcm_ccn_mass, igcm_ccn_number, 24 & rho_dust, nuice_sed, nuice_ref 24 & rho_dust, nuice_sed, nuice_ref, 25 & qperemin 25 26 use dimradmars_mod, only: naerkind 26 27 IMPLICIT NONE … … 514 515 IF (pq(ig,l,igcm_h2o_ice) + ptimestep* 515 516 & (pdq(ig,l,igcm_h2o_ice) + pdqcloud(ig,l,igcm_h2o_ice)) 516 & .le. 1.e-8) THEN517 & .le. qperemin) THEN 517 518 pdqcloud(ig,l,igcm_h2o_ice) = 518 519 & - pq(ig,l,igcm_h2o_ice)/ptimestep - pdq(ig,l,igcm_h2o_ice) … … 526 527 IF (pq(ig,l,igcm_h2o_vap) + ptimestep* 527 528 & (pdq(ig,l,igcm_h2o_vap) + pdqcloud(ig,l,igcm_h2o_vap)) 528 & .le. 1.e-8) THEN529 & .le. qperemin) THEN 529 530 pdqcloud(ig,l,igcm_h2o_vap) = 530 531 & - pq(ig,l,igcm_h2o_vap)/ptimestep - pdq(ig,l,igcm_h2o_vap)
Note: See TracChangeset
for help on using the changeset viewer.