Changeset 3161 for trunk/LMDZ.COMMON/libf/evolution/glaciers_mod.F90
- Timestamp:
- Dec 19, 2023, 3:14:48 PM (11 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.COMMON/libf/evolution/glaciers_mod.F90
r3149 r3161 3 3 implicit none 4 4 5 logical :: co2_ice_flow ! True by default, to compute co2 ice flow. Read in run_PEM.def 6 logical :: h2o_ice_flow ! True by default, to compute h2o ice flow. Read in run_PEM.def 5 6 ! Flags for ice management 7 logical :: h2oice_flow ! True by default, to compute H2O ice flow. Read in "run_PEM.def" 8 logical :: co2ice_flow ! True by default, to compute CO2 ice flow. Read in "run_PEM.def" 9 logical :: metam_h2oice ! False by default, to compute H2O ice metamorphism. Read in "run_PEM.def" 10 logical :: metam_co2ice ! False by default, to compute CO2 ice metamorphism. Read in "run_PEM.def" 11 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 7 16 8 17 !=======================================================================
Note: See TracChangeset
for help on using the changeset viewer.