Changeset 6392


Ignore:
Timestamp:
2019-12-16T11:44:38+01:00 (4 years ago)
Author:
josefine.ghattas
Message:

Added new option for downregulation parametrization. Set DOWNREGULATION_CO2_NEW=y in run.def to activate. This option will be availble for configurations IPSLCM66.1.11 and later.

IF both DOWNREGULATION_CO2 and DOWNREGULATION_CO2_NEW are true, then DOWNREGULATION_CO2 will be set to false.

See ticket #641

File:
1 edited

Legend:

Unmodified
Added
Removed
  • tags/ORCHIDEE_2_0/ORCHIDEE/src_parameters/constantes_var.f90

    r5391 r6392  
    611611  REAL(r_std), SAVE :: laimax = 12.             !! Maximal LAI used for splitting LAI into N layers (m^2.m^{-2}) 
    612612!$OMP THREADPRIVATE(laimax) 
    613   LOGICAL, SAVE :: downregulation_co2 = .TRUE.             !! Set to .TRUE. if you want CO2 downregulation. 
     613  LOGICAL, SAVE :: downregulation_co2 = .TRUE.             !! Set to .TRUE. if you want CO2 downregulation version used for CMIP6 6.1.0-6.1.10 
    614614!$OMP THREADPRIVATE(downregulation_co2) 
     615  LOGICAL, SAVE :: downregulation_co2_new = .FALSE.        !! Set to .TRUE. if you want CO2 downregulation version revised for CMIP6 6.1.11 
     616!$OMP THREADPRIVATE(downregulation_co2_new) 
    615617  REAL(r_std), SAVE :: downregulation_co2_baselevel = 380. !! CO2 base level (ppm) 
    616618!$OMP THREADPRIVATE(downregulation_co2_baselevel) 
     619  REAL(r_std), SAVE :: downregulation_co2_minimum = 280.   !! CO2 value above which downregulation is taken into account  
     620!$OMP THREADPRIVATE(downregulation_co2_minimum) 
    617621 
    618622  REAL(r_std), SAVE :: gb_ref = 1./25.                     !! Leaf bulk boundary layer resistance (s m-1) 
Note: See TracChangeset for help on using the changeset viewer.