Ignore:
Timestamp:
Mar 25, 2026, 11:19:02 AM (12 days ago)
Author:
jbclement
Message:

PEM:

  • Fix outputs "diagevo.nc" for 3D data.
  • Fix sign in computing exchanges due to adsorption/ice table and in balancing H2O flux from/into atmosphere.
  • Few cleanings.

JBC

File:
1 edited

Legend:

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

    r4140 r4152  
    6565
    6666! If the tendency is negative but there is no ice reservoir for the PEM
    67 where (d_ice < 0._dp .and. abs(perice) < minieps) d_ice = 0._dp
     67where (d_ice(:,:) < 0._dp .and. abs(perice(:,:)) < minieps) d_ice(:,:) = 0._dp
    6868
    6969END SUBROUTINE compute_tendice
     
    8989! DEPENDENCIES
    9090! ------------
    91 use geometry,   only: ngrid, nslope, nday
    92 use physics,    only: sigmaB, alpha_clap_co2, beta_clap_co2, Lco2, m_co2, A, B
    93 use orbit,      only: yr_len_sol, sol_len_s
    94 use display,    only: print_msg, LVL_NFO
    95 use utility,    only: real2str
     91use geometry, only: ngrid, nslope, nday
     92use physics,  only: sigmaB, alpha_clap_co2, beta_clap_co2, Lco2, m_co2, A, B
     93use orbit,    only: yr_len_sol, sol_len_s
     94use display,  only: print_msg, LVL_NFO
     95use utility,  only: real2str
    9696
    9797! DECLARATION
Note: See TracChangeset for help on using the changeset viewer.