Ignore:
Timestamp:
2019-12-16T12:11:50+01:00 (4 years ago)
Author:
josefine.ghattas
Message:

As done in ORCHIDEE_2_0:
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
  • branches/ORCHIDEE_2_2/ORCHIDEE/src_parameters/constantes_var.f90

    r6019 r6393  
    629629  REAL(r_std), SAVE :: laimax = 12.             !! Maximal LAI used for splitting LAI into N layers (m^2.m^{-2}) 
    630630!$OMP THREADPRIVATE(laimax) 
    631   LOGICAL, SAVE :: downregulation_co2 = .TRUE.             !! Set to .TRUE. if you want CO2 downregulation. 
     631  LOGICAL, SAVE :: downregulation_co2 = .TRUE.             !! Set to .TRUE. if you want CO2 downregulation version used for CMIP6 6.1.0-6.1.10 
    632632!$OMP THREADPRIVATE(downregulation_co2) 
     633  LOGICAL, SAVE :: downregulation_co2_new = .FALSE.        !! Set to .TRUE. if you want CO2 downregulation version revised for CMIP6 6.1.11 
     634!$OMP THREADPRIVATE(downregulation_co2_new) 
    633635  REAL(r_std), SAVE :: downregulation_co2_baselevel = 380. !! CO2 base level (ppm) 
    634636!$OMP THREADPRIVATE(downregulation_co2_baselevel) 
     637  REAL(r_std), SAVE :: downregulation_co2_minimum = 280.   !! CO2 value above which downregulation is taken into account  
     638!$OMP THREADPRIVATE(downregulation_co2_minimum) 
    635639 
    636640  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.