Changeset 3256 for trunk/LMDZ.COMMON/libf/evolution
- Timestamp:
- Mar 7, 2024, 12:01:29 PM (9 months ago)
- Location:
- trunk/LMDZ.COMMON/libf/evolution
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.COMMON/libf/evolution/changelog.txt
r3215 r3256 244 244 == 13/02/2024 == JBC 245 245 Small syntax correction of the if condition in "launch_pem.sh" following r3214. 246 247 == 07/03/2024 == JBC 248 Adaptation of threshold values for ice management (in particular 'inf_h2oice_threshold') to more realistic values. -
trunk/LMDZ.COMMON/libf/evolution/conf_pem.F90
r3214 r3256 150 150 151 151 !#---------- Ice management parameters ----------# 152 ini_huge_h2oice = 1.e4152 ini_huge_h2oice = 9200. ! kg.m-2 (= 10 m) 153 153 call getin('ini_huge_h2oice',ini_huge_h2oice) 154 154 155 inf_h2oice_threshold = 2.e3155 inf_h2oice_threshold = 460. ! kg.m-2 (= 0.5 m) 156 156 call getin('inf_h2oice_threshold',inf_h2oice_threshold) 157 157 … … 159 159 call getin('metam_h2oice',metam_h2oice) 160 160 161 metam_h2oice_threshold = 5.e-2161 metam_h2oice_threshold = 460. ! kg.m-2 (= 0.5 m) 162 162 call getin('metam_h2oice_threshold',metam_h2oice_threshold) 163 163 … … 168 168 call getin('metam_co2ice',metam_co2ice) 169 169 170 metam_co2ice_threshold = 16 .e3170 metam_co2ice_threshold = 16500. ! kg.m-2 (= 10 m) 171 171 call getin('metam_co2ice_threshold',metam_co2ice_threshold) 172 172 -
trunk/LMDZ.COMMON/libf/evolution/deftank/run_PEM.def
r3161 r3256 67 67 68 68 #---------- Ice management parameters ----------# 69 # Amount of H2O ice to initialize the huge reservoir if the variable is not present in "startfi_PEM.nc"? Default = 1.e469 # Amount of H2O ice to initialize the huge reservoir if the variable is not present in "startfi_PEM.nc"? Default = 9200. kg.m-2 (= 10 m) 70 70 # ini_huge_h2oice=1.e4 71 71 72 # Threshold to consider the amount of H2O ice as an infinite reservoir? Default = 2.e372 # Threshold to consider the amount of H2O ice as an infinite reservoir? Default = 460. kg.m-2 (= 0.5 m) 73 73 # inf_h2oice_threshold=2.e3 74 74 … … 76 76 # metam_h2oice=.false. 77 77 78 # Threshold to consider frost is becoming perennial H2O ice? Default = 5.e-278 # Threshold to consider frost is becoming perennial H2O ice? Default = 460. kg.m-2 (= 0.5 m) 79 79 # metam_h2oice_threshold=5.e-2 80 80 … … 85 85 # metam_co2ice=.false. 86 86 87 # Threshold to consider frost is becoming perennial CO2 ice? Default = 16 .e387 # Threshold to consider frost is becoming perennial CO2 ice? Default = 16500. kg.m-2 (= 10 m) 88 88 # metam_co2ice_threshold=16.e3 89 89 -
trunk/LMDZ.COMMON/libf/evolution/glaciers_mod.F90
r3161 r3256 11 11 12 12 ! Thresholds for ice management 13 real, save :: inf_h2oice_threshold ! To consider the amount of H2O ice as an infinite reservoir 14 real, save :: metam_h2oice_threshold ! To consider frost is becoming perennial H2O ice 15 real, save :: metam_co2ice_threshold ! To consider frost is becoming perennial CO2 ice 13 real, save :: inf_h2oice_threshold ! To consider the amount of H2O ice as an infinite reservoir [kg.m-2] 14 real, save :: metam_h2oice_threshold ! To consider frost is becoming perennial H2O ice [kg.m-2] 15 real, save :: metam_co2ice_threshold ! To consider frost is becoming perennial CO2 ice [kg.m-2] 16 16 17 17 !=======================================================================
Note: See TracChangeset
for help on using the changeset viewer.