Changeset 3149 for trunk/LMDZ.MARS


Ignore:
Timestamp:
Dec 6, 2023, 4:02:06 PM (12 months ago)
Author:
jbclement
Message:

PEM:

  • Simplification of the algorithm managing the stopping criteria;
  • Complete rework of the ice management in the PEM (H2O & CO2);

    Subroutines to evolve the H2O and CO2 ice are now in the same module "evol_ice_mod.F90".
    Tendencies are computed from the variation of "ice + frost" between the 2 PCM runs.
    Evolving ice in the PEM is now called 'h2o_ice' or 'co2_ice' (not anymore in 'qsurf' and free of 'water_reservoir').
    Default value 'ini_h2o_bigreservoir' (= 10 m) initializes the H2O ice of the first PEM run where there is 'watercap'. For the next PEM runs, initialization is done with the value kept in "startpem.nc". CO2 ice is taken from 'perennial_co2ice' of the PCM (paleoclimate flag must be true).
    Simplification of the condition to compute the surface ice cover needed for the stopping criteria.
    Frost ('qsurf') is not evolved by the PEM and given back to the PCM.
    New default threshold value 'inf_h2oice_threshold' (= 2 m) to decide at the end of the PEM run if the H2O ice should be 'watercap' or not for the next PCM runs. If H2O ice cannot be 'watercap', then the remaining H2O ice is transferred to the frost ('qsurf').

  • Renaming of variables/subroutines for clarity;
  • Some cleanings throughout the code;
  • Small updates in files of the deftank.

JBC

Location:
trunk/LMDZ.MARS/deftank/pem
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/LMDZ.MARS/deftank/pem/launch_orb_1Dchained.sh

    r3145 r3149  
    8686    found=false
    8787    while read -r y1 obl1 ecc1 lsp1 && read -r y2 obl2 ecc2 lsp2; do
     88        y1=$(echo "$y1*1000" | bc -l)
     89        y2=$(echo "$y2*1000" | bc -l)
    8890        if [ "$(echo "$y1 >= $yearlask && $yearlask > $y2" | bc)" -eq 1 ]; then
    8991            found=true
  • trunk/LMDZ.MARS/deftank/pem/run_PEM.def

    r3136 r3149  
    6969# icetable_dynamic=.false.
    7070
    71 #---------- Water reservoirs parameters --------------#
    72 # Amont of water reservoir if the variable is not present in startfi_PEM.nc? Default = 1.e4
    73 # water_reservoir_nom=1e4
     71#---------- H2O reservoir parameters ----------#
     72# Amount of h2o ice to initialize the big reservoir if the variable is not present in startfi_PEM.nc? Default = 1.e4
     73# ini_h2o_bigreservoir=1e4
    7474
    7575# Some definitions for the physics, in file 'callphys.def'
Note: See TracChangeset for help on using the changeset viewer.