Changeset 2864
- Timestamp:
- Jan 12, 2023, 12:24:45 AM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.COMMON/libf/evolution/conf_pem.F90
r2863 r2864 1 1 MODULE conf_pem_mod 2 2 3 IMPLICIT NONE 3 4 5 CONTAINS 4 6 7 SUBROUTINE conf_pem 5 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 6 19 20 21 !PEM parameter 22 year_bp_ini=0. 23 CALL getin('year_bp_ini', year_bp_ini) 7 24 25 dt_pem=1 26 CALL getin('dt_pem', dt_pem) 8 27 28 alpha_criterion=0.2 29 CALL getin('alpha_criterion', alpha_criterion) 9 30 31 evol_orbit_pem=.false. 32 CALL getin('evol_orbit_pem', evol_orbit_pem) 10 33 34 Max_iter_pem=99999999 35 CALL getin('Max_iter_pem', Max_iter_pem) 11 36 37 soil_pem=.true. 38 CALL getin('soil_pem', soil_pem) 12 39 40 END SUBROUTINE conf_pem 13 41 14 42 END MODULE conf_pem_mod 15
Note: See TracChangeset
for help on using the changeset viewer.