Changeset 2835 for trunk/LMDZ.COMMON/libf/evolution/temps_mod_evol.F90
- Timestamp:
- Nov 30, 2022, 11:29:29 AM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.COMMON/libf/evolution/temps_mod_evol.F90
r2779 r2835 3 3 IMPLICIT NONE 4 4 5 INTEGER nyear ! nyear : Maximun number of year over which the PEM can interpolate5 INTEGER year_bp_ini ! year_bp_ini : Initial year of the simulation of the PEM (in evol.def) 6 6 INTEGER dt_pem ! dt_pem : in years, the time step used by the PEM 7 7 REAL alpha_criterion ! alpha_criterion : percentage of change before stopping the PEM 8 9 !$OMP THREADPRIVATE(nyear) 10 11 !WARNING: when adding a threadprivate variable in this module 12 ! do not forget to add it to the copyin clause when opening an OpenMP 13 ! parallel section. e.g. in gcm before call leapfrog_loc and/or 14 ! possibly in iniphysiq 8 INTEGER year_PEM ! year written in startfiPEM.nc 9 INTEGER Max_iter_pem ! Maximal number of iteration when converging to a steady state, read in evol.def 10 LOGICAL evol_orbit_pem ! True if we want to follow the orbital parameters of ob_ex_lsp.asc, read in evol.def 15 11 16 12 END MODULE temps_mod_evol
Note: See TracChangeset
for help on using the changeset viewer.