Ignore:
Timestamp:
Jul 16, 2025, 3:25:48 PM (7 days ago)
Author:
jbclement
Message:

PEM:

  • Making the computation of CO2 mass balance more robust, especially regarding 'CO2cond_ps'.
  • Small correction about the dust tendency management for the layering algorithm.
  • Small improvement of the visualization in "visu_evol_layering.py".
  • File "log_launchPEM.txt" renamed into "launchPEM.log".

JBC

File:
1 edited

Legend:

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

    r3842 r3851  
    722722dh_h2oice = d_h2oice/rho_h2oice
    723723dh_dust = 0.
    724 if (dh_h2oice >= 0.) then ! To put a dust sedimentation tendency only when ice is condensing
     724if (dh_h2oice > 0.) then ! To put a dust sedimentation tendency only when ice is condensing
    725725    if (impose_dust_ratio) then
    726         if (dh_co2ice >= 0.) then
     726        if (dh_co2ice > 0.) then
    727727            dh_dust = dust2ice_ratio*(dh_h2oice + dh_co2ice)
    728728        else
Note: See TracChangeset for help on using the changeset viewer.