Changeset 3809 for trunk/LMDZ.COMMON/libf/evolution/recomp_tend_mod.F90
- Timestamp:
- Jun 16, 2025, 5:11:50 PM (3 weeks ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.COMMON/libf/evolution/recomp_tend_mod.F90
r3789 r3809 92 92 Rz_old = h2oice_depth_old*zcdv/coef_diff ! Old resistance from PCM 93 93 Rz_new = h2oice_depth_new*zcdv/coef_diff ! New resistance based on new depth 94 R_dec = 1. 95 if (Rz_new >= Rz_old) R_dec = Rz_new/Rz_old ! Decrease because of resistance 94 R_dec = Rz_old/Rz_new ! Decrease because of resistance 96 95 97 96 ! The maxmimum of the daily averages over one year for the saturation vapor pressure at the ice table location … … 104 103 105 104 ! Lower humidity due to growing lag layer (higher depth) 106 hum_dec = psv_max_old/psv_max_new ! Decrease because of lower water vapor pressure at the new depth 105 if (abs(psv_max_old) < 1.e2*epsilon(1.)) then 106 hum_dec = 1. 107 else 108 hum_dec = psv_max_new/psv_max_old ! Decrease because of lower water vapor pressure at the new depth 109 endif 107 110 108 111 ! Flux correction (decrease) 109 d_h2oice = d_h2oice /R_dec/hum_dec112 d_h2oice = d_h2oice*R_dec*hum_dec 110 113 111 114 END SUBROUTINE recomp_tend_h2o
Note: See TracChangeset
for help on using the changeset viewer.