|
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
|
| Line | |
|---|
| 1 | MODULE evolution |
|---|
| 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 | !----------------------------------------------------------------------- |
|---|
| 16 | |
|---|
| 17 | ! DECLARATION |
|---|
| 18 | ! ----------- |
|---|
| 19 | implicit none |
|---|
| 20 | |
|---|
| 21 | ! PARAMETERS |
|---|
| 22 | ! ---------- |
|---|
| 23 | real :: year_bp_ini ! Initial year (in Planetary years) of the simulation of the PEM defined in run.def (in Earth years) |
|---|
| 24 | real :: dt ! Time step used by the PEM in Planetary years |
|---|
| 25 | real :: convert_years ! Conversion ratio from Planetary years to Earth years |
|---|
| 26 | real :: nyears_max ! Maximal number of iterations when converging to a steady state, read in evol.def |
|---|
| 27 | logical :: evol_orbit ! True if we want to follow the orbital parameters of obl_ecc_lsp.asc, read in evol.def |
|---|
| 28 | logical :: var_obl ! True if we want the PEM to follow obl_ecc_lsp.asc parameters for obliquity |
|---|
| 29 | logical :: var_ecc ! True if we want the PEM to follow obl_ecc_lsp.asc parameters for eccenticity |
|---|
| 30 | logical :: var_lsp ! True if we want the PEM to follow obl_ecc_lsp.asc parameters for ls perihelie |
|---|
| 31 | |
|---|
| 32 | END MODULE evolution |
|---|
Note: See
TracBrowser
for help on using the repository browser.