source: trunk/LMDZ.COMMON/libf/evolution/temps_mod_evol.F90 @ 2889

Last change on this file since 2889 was 2888, checked in by llange, 2 years ago

PEM

  • Following r-2886-5, debugging some issues ( conservation of H2O, water_reservoir not initialized, info_pem which was not working)
  • Cleaning of some redundant routines (e.g., stopping criterion of the PEM) and variables renamed (e.g., alpha_criterion now transofrmed in ice_criterion)
  • Ice table subroutine is now in a module and recalled "compute_ice_table_equilibrium" (v.s. dynamic ice table, efforts ongoing)
  • Abort_pem introduced to avoid just stopping the pem with raw "stop" in the codes
  • conf_pem has been improved so that values are not hard coded (e.g., geothermal flux, mass of water_reservoir)
  • Regolith thermal properties updated in a cleaner way

(Not atomic commit, sorry)
LL & RV

File size: 761 bytes
Line 
1MODULE temps_mod_evol
2
3IMPLICIT NONE 
4
5  INTEGER   year_bp_ini     !     year_bp_ini : Initial year of the simulation of the PEM (in evol.def)
6  INTEGER   dt_pem          !     dt_pem  : in years, the time step used by the PEM   
7  REAL      ice_criterion   !     ice_criterion : percentage of change of ice before stopping the PEM
8  REAL      ps_criterion    !     ice_criterion : percentage of change of ice before stopping the PEM
9  INTEGER   year_PEM        !     year written in startfiPEM.nc
10  INTEGER   Max_iter_pem    !     Maximal number of iteration when converging to a steady state, read in evol.def
11  LOGICAL   evol_orbit_pem  !     True if we want to follow the orbital parameters of ob_ex_lsp.asc, read in evol.def
12
13END MODULE temps_mod_evol
Note: See TracBrowser for help on using the repository browser.