Changes between Version 120 and Version 121 of DevelopmentActivities/ORCHIDEE-DOFOCO


Ignore:
Timestamp:
2017-06-20T13:46:50+02:00 (7 years ago)
Author:
luyssaert
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DevelopmentActivities/ORCHIDEE-DOFOCO

    v120 v121  
    4242Age classes were defined as separate PFTs and if wanted different age classes of the same PFT could be run with different parameters. This option has not been tested yet because it is expected to result in discontinuities when the biomass is moved from one age class to another. The number of age classes is fixed but for each PFT it can be decided whether age classes are used or not. This adds a lot of flexibility to the model. ORCHIDEE-CAN, for example, has been run with 64 PFTs, using age classes for European forest and using no age classes for all forests outside the domain of interest. Setting-up a simulation with age classes will require some thinking when setting-up the run.def. A python-script was written to create this kind of run.def. Increasing the number of PFTs has important consequences for the speed of the model and the memory use. Because a single run can contain PFTs with and PFTs without age classes, processing of the simulation output needs to account for the relationship between PFTs of the same species but a different age class. 
    4343 
    44 The number of age classes is defined by the parameter '''NAGEC'''. Setting this parameter to 1 is a good start unless you have a special interest in using age classes. 
    45   
     44The number of age classes is defined by the parameter '''NAGEC'''. Setting this parameter to 1 is a good start unless you have a special interest in using age classes. When NAGEC is set to more than 1, '''PFT_TO_MTC'''', '''AGEC_GROUP''' and '''PFT_NAME''' will all need to be carefully defined. See the attached run.def for a functional example. See below for some principles: 
     45NAGEC = 2 
     46Assume we want to use two age classes in the tropical evergreen forest (default PFT 2). We will end-up with 14 PFTs, the 13 default PFTs and the 14the which is used as an age class for tropical evergreen forest 
     47PFT_TO_MTC_01 = 1 
     48PFT_TO_MTC_02 = 2 
     49PFT_TO_MTC_03 = 2 
     50PFT_TO_MTC_04 = 3 
     51PFT_TO_MTC_05 = 4 
     52... 
    4653 
     54Now we need to inform ORCHIDEE that PFT 2 and PFT 3 are age classes from each other 
     55AGEC_GROUP_01 = 1 
     56AGEC_GROUP_02 = 2 
     57AGEC_GROUP_03 = 2 
     58AGEC_GROUP_04 = 3 
    4759 
    4860