Ignore:
Timestamp:
Dec 19, 2023, 3:14:48 PM (11 months ago)
Author:
jbclement
Message:

PEM:

  • Addition of flags defined in the "run_PEM.def" to decide to do or not CO2 & H2O ice metamorphism: 'metam_co2ice' and 'metam_h2oice' (default is false).
  • The variations of infinite reservoirs ('watercap') during the PCM years are now taken into account to update H2O ice at the PEM initialization.
  • 'ini_h2o_bigreservoir' is renamed into 'ini_huge_h2oice'.
  • Some cleanings, in particular for the main program "pem.F90".

JBC

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/LMDZ.COMMON/libf/evolution/glaciers_mod.F90

    r3149 r3161  
    33implicit none
    44
    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
     7logical :: h2oice_flow ! True by default, to compute H2O ice flow. Read in "run_PEM.def"
     8logical :: co2ice_flow ! True by default, to compute CO2 ice flow. Read in "run_PEM.def"
     9logical :: metam_h2oice ! False by default, to compute H2O ice metamorphism. Read in "run_PEM.def"
     10logical :: metam_co2ice ! False by default, to compute CO2 ice metamorphism. Read in "run_PEM.def"
     11
     12! Thresholds for ice management
     13real, save :: inf_h2oice_threshold   ! To consider the amount of H2O ice as an infinite reservoir
     14real, save :: metam_h2oice_threshold ! To consider frost is becoming perennial H2O ice
     15real, save :: metam_co2ice_threshold ! To consider frost is becoming perennial CO2 ice
    716
    817!=======================================================================
Note: See TracChangeset for help on using the changeset viewer.