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


Ignore:
Timestamp:
2017-06-20T14:00:04+02:00 (7 years ago)
Author:
luyssaert
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DevelopmentActivities/ORCHIDEE-DOFOCO

    v121 v122  
    4343 
    4444The 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: 
    45 NAGEC = 2 
    46 Assume 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 
    47 PFT_TO_MTC_01 = 1 
    48 PFT_TO_MTC_02 = 2 
    49 PFT_TO_MTC_03 = 2 
    50 PFT_TO_MTC_04 = 3 
    51 PFT_TO_MTC_05 = 4 
     45NAGEC = 4 
     46Assume we want to use four age classes for all forests. We will end-up with 37 PFTs, the 1 for bare soil, C3 grass, C4 grass, C3 crop and C4 crop and 4 times 8 for the 8 forest PFTs. Thus NVM = 37 
     47 
     48Because we still use the 13 default MTC we can use the default maps. Let the model know how many MTCs it should find on the maps: 
     49NVMAP=13 
     50 
     51If you want to use IMPOSE_VEG=y then only vegetation should be added to the youngest age class. ORCHIDEE will update the vegetation fractions during the simulations 
     52SECHIBA_VEG__01=0.0769230769231 
     53SECHIBA_VEG__02=0.0769230769231 
     54SECHIBA_VEG__03=0.0 
     55SECHIBA_VEG__04=0.0 
     56SECHIBA_VEG__05=0.0 
    5257... 
    5358 
    54 Now we need to inform ORCHIDEE that PFT 2 and PFT 3 are age classes from each other 
    55 AGEC_GROUP_01 = 1 
    56 AGEC_GROUP_02 = 2 
    57 AGEC_GROUP_03 = 2 
    58 AGEC_GROUP_04 = 3 
     59SECHIBA_VEGMAX__01=0.0769230769231 
     60SECHIBA_VEGMAX__02=0.0769230769231 
     61SECHIBA_VEGMAX__03=0.0 
     62SECHIBA_VEGMAX__04=0.0 
     63SECHIBA_VEGMAX__05=0.0 
     64... 
     65 
     66Link PFTs to MTCs  
     67PFT_TO_MTC__01=1 
     68PFT_TO_MTC__02=2 
     69PFT_TO_MTC__03=2 
     70PFT_TO_MTC__04=2 
     71PFT_TO_MTC__05=2 
     72... 
     73 
     74Tell ORCHIDEE which PFTs have a successional relationship 
     75AGEC_GROUP__01=1 
     76AGEC_GROUP__02=2 
     77AGEC_GROUP__03=2 
     78AGEC_GROUP__04=2 
     79AGEC_GROUP__05=2 
     80... 
     81 
     82Give all PFTs a name for clarity 
     83PFT_NAME__01=SoilBare 
     84PFT_NAME__02=BroadLeavedEvergreenTropical_age01 
     85PFT_NAME__03=BroadLeavedEvergreenTropical_age02 
     86PFT_NAME__04=BroadLeavedEvergreenTropical_age03 
     87PFT_NAME__05=BroadLeavedEvergreenTropical_age04 
     88... 
    5989 
    6090