source: trunk/LMDZ.COMMON/libf/evolution/evolution.F90 @ 3995

Last change on this file since 3995 was 3991, checked in by jbclement, 4 weeks ago

PEM:
Apply documentation template everywhere: standardized headers format with short description, separators between functions/subroutines, normalized code sections, aligned dependencies/arguments/variables declaration.
JBC

File size: 1.2 KB
RevLine 
[3989]1MODULE evolution
[3991]2!-----------------------------------------------------------------------
3! NAME
4!     evolution
5!
6! DESCRIPTION
7!     Contains global parameters used for the evolution flags.
8!
9! AUTHORS & DATE
10!     R. Vandemeulebrouck
11!     JB Clement, 2023-2025
12!
13! NOTES
14!
15!-----------------------------------------------------------------------
[2779]16
[3991]17! DECLARATION
18! -----------
[3076]19implicit none
[2779]20
[3991]21! PARAMETERS
22! ----------
[3989]23real    :: year_bp_ini   ! Initial year (in Planetary years) of the simulation of the PEM defined in run.def (in Earth years)
24real    :: dt            ! Time step used by the PEM in Planetary years
25real    :: convert_years ! Conversion ratio from Planetary years to Earth years
[3991]26real    :: nyears_max    ! Maximal number of iterations when converging to a steady state, read in evol.def
[3989]27logical :: evol_orbit    ! True if we want to follow the orbital parameters of obl_ecc_lsp.asc, read in evol.def
28logical :: var_obl       ! True if we want the PEM to follow obl_ecc_lsp.asc parameters for obliquity
29logical :: var_ecc       ! True if we want the PEM to follow obl_ecc_lsp.asc parameters for eccenticity
30logical :: var_lsp       ! True if we want the PEM to follow obl_ecc_lsp.asc parameters for ls perihelie
[2779]31
[3989]32END MODULE evolution
Note: See TracBrowser for help on using the repository browser.