source: trunk/LMDZ.COMMON/libf/evolution/time_evol_mod.F90 @ 3428

Last change on this file since 3428 was 3214, checked in by jbclement, 10 months ago

PEM:

  • It is now possible to set the number of initial PCM calls independently of the number of "inter-PEM" PCM calls. It is useful to get a stable situation for the start of the simulation.
  • Correction of a bug: 'reshape_XIOS_output' treated the first two PCM runs instead of the last two. The numbering has been adapted in "launch_pem.sh" to get it right.
  • PEM outputs ("diagpem.nc" and "diagsoil_pem.nc") has been improved: 'Time' now evolves according to 'dt_pem' (usually year by year) and 'ecritpem' is a full variable of "time_evol_mod.F90".

JBC

File size: 1.2 KB
Line 
1MODULE time_evol_mod
2
3implicit none
4
5integer :: year_bp_ini    ! Initial year (in Planetary years) of the simulation of the PEM defined in run.def (in Earth years)
6integer :: dt_pem         ! Time step used by the PEM in Planetary years
7real    :: convert_years  ! Conversion ratio from Planetary years to Earth years
8real    :: h2o_ice_crit   ! Percentage of change of the surface of h2o ice sublimating before stopping the PEM
9real    :: co2_ice_crit   ! Percentage of change of the surface of co2 ice sublimating before stopping the PEM
10real    :: ps_criterion   ! Percentage of change of averaged surface pressure before stopping the PEM
11integer :: Max_iter_pem   ! Maximal number of iteration when converging to a steady state, read in evol.def
12logical :: evol_orbit_pem ! True if we want to follow the orbital parameters of obl_ecc_lsp.asc, read in evol.def
13logical :: var_obl        ! True if we want the PEM to follow obl_ecc_lsp.asc parameters for obliquity
14logical :: var_ecc        ! True if we want the PEM to follow obl_ecc_lsp.asc parameters for eccenticity
15logical :: var_lsp        ! True if we want the PEM to follow obl_ecc_lsp.asc parameters for ls perihelie
16integer :: ecritpem       ! For "diagpem.nc" outputs, writen every ecritpem
17
18END MODULE time_evol_mod
Note: See TracBrowser for help on using the repository browser.