|
Last change
on this file since 2885 was
2864,
checked in by llange, 3 years ago
|
|
PEM
restores conf_pem as defined in R2859, accidentally deleted before the commit
LL
|
|
File size:
825 bytes
|
| Line | |
|---|
| 1 | MODULE conf_pem_mod |
|---|
| 2 | |
|---|
| 3 | IMPLICIT NONE |
|---|
| 4 | |
|---|
| 5 | CONTAINS |
|---|
| 6 | |
|---|
| 7 | SUBROUTINE conf_pem |
|---|
| 8 | |
|---|
| 9 | #ifdef CPP_IOIPSL |
|---|
| 10 | use IOIPSL, only: getin |
|---|
| 11 | #else |
|---|
| 12 | ! if not using IOIPSL, we still need to use (a local version of) getin |
|---|
| 13 | use ioipsl_getincom, only: getin |
|---|
| 14 | #endif |
|---|
| 15 | |
|---|
| 16 | USE temps_mod_evol, ONLY: year_bp_ini, dt_pem, alpha_criterion, & |
|---|
| 17 | Max_iter_pem, evol_orbit_pem |
|---|
| 18 | USE comsoil_h_pem, only: soil_pem |
|---|
| 19 | |
|---|
| 20 | |
|---|
| 21 | !PEM parameter |
|---|
| 22 | year_bp_ini=0. |
|---|
| 23 | CALL getin('year_bp_ini', year_bp_ini) |
|---|
| 24 | |
|---|
| 25 | dt_pem=1 |
|---|
| 26 | CALL getin('dt_pem', dt_pem) |
|---|
| 27 | |
|---|
| 28 | alpha_criterion=0.2 |
|---|
| 29 | CALL getin('alpha_criterion', alpha_criterion) |
|---|
| 30 | |
|---|
| 31 | evol_orbit_pem=.false. |
|---|
| 32 | CALL getin('evol_orbit_pem', evol_orbit_pem) |
|---|
| 33 | |
|---|
| 34 | Max_iter_pem=99999999 |
|---|
| 35 | CALL getin('Max_iter_pem', Max_iter_pem) |
|---|
| 36 | |
|---|
| 37 | soil_pem=.true. |
|---|
| 38 | CALL getin('soil_pem', soil_pem) |
|---|
| 39 | |
|---|
| 40 | END SUBROUTINE conf_pem |
|---|
| 41 | |
|---|
| 42 | END MODULE conf_pem_mod |
|---|
Note: See
TracBrowser
for help on using the repository browser.