Ignore:
Timestamp:
Apr 10, 2026, 7:17:55 PM (6 hours ago)
Author:
jbclement
Message:

PEM:

  • Rework layering-related logic, especially clarify interactions between surface and subsurface water tendencies and disable CO2 lag resistance (inconsistent without updating pressure and mass balance + PCM).
  • Prevent simultaneous activation of layering and ice flows.
  • Add warning when flux_geo /= 0 while soil is disabled.
  • Add new utility function "is_lvl_enabled" for displaying.
  • Replace deprecated 'minieps' with 'eps'/'tol'.

JBC

File:
1 edited

Legend:

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

    r4170 r4180  
    1616! DEPENDENCIES
    1717! ------------
    18 use numerics, only: dp, di, k4, minieps
     18use numerics, only: dp, di, k4, eps
    1919
    2020! DECLARATION
     
    469469
    470470! If output timing not met, return
    471 if (abs(mod(idt,output_rate)) > minieps) return
     471if (abs(mod(idt,output_rate)) > eps) return
    472472
    473473! If it is the first writing of the current timestep
Note: See TracChangeset for help on using the changeset viewer.