Changeset 4152 for trunk/LMDZ.COMMON/libf/evolution/tendencies.F90
- Timestamp:
- Mar 25, 2026, 11:19:02 AM (12 days ago)
- File:
-
- 1 edited
-
trunk/LMDZ.COMMON/libf/evolution/tendencies.F90 (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.COMMON/libf/evolution/tendencies.F90
r4140 r4152 65 65 66 66 ! 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._dp67 where (d_ice(:,:) < 0._dp .and. abs(perice(:,:)) < minieps) d_ice(:,:) = 0._dp 68 68 69 69 END SUBROUTINE compute_tendice … … 89 89 ! DEPENDENCIES 90 90 ! ------------ 91 use geometry, only: ngrid, nslope, nday92 use physics, only: sigmaB, alpha_clap_co2, beta_clap_co2, Lco2, m_co2, A, B93 use orbit, only: yr_len_sol, sol_len_s94 use display, only: print_msg, LVL_NFO95 use utility, only: real2str91 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 96 96 97 97 ! DECLARATION
Note: See TracChangeset
for help on using the changeset viewer.
