Changes between Version 123 and Version 124 of DevelopmentActivities/ORCHIDEE-DOFOCO


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

--

Legend:

Unmodified
Added
Removed
Modified
  • DevelopmentActivities/ORCHIDEE-DOFOCO

    v123 v124  
    3030The computational cost of using diameter classes is negligible and when a reasonable low number of diameter classes is used, the memory cost remains very small as the dimensions of only two variables are increased. The number of diameter classes is the same for all PFTs and is set by the parameter '''NCIRC'''. ORCHIDEE-CN, ORCHIDEE-CNP, and ORCHIDEE-MICT are all coded and used for NCIRC = 1. ORCHIDEE-CAN and ORCHIDEE-CN-CAN are coded and tested for NCIRC = 3. Until further testing, three diameter classes are considered sufficient. 
    3131 
    32 Given earlier choices in ORCHIDEE, we either need to define the boundaries of each diameter class or the diameter distribution. While developing the code, we considered the second approach the most flexible. To allow maximal flexibility, each diameter class needs to be defined separately by the variable '''CIRC_CLASS_DIST_0000X''', where X is the number of the diameter class. The smallest number presents the smallest diameter class. From literature it is known that a truncated exponential distribution is a good first guess:  
     32Given earlier choices in ORCHIDEE, we either need to define the boundaries of each diameter class or the diameter distribution. While developing the code, we considered the second approach the most flexible. To allow maximal flexibility, each diameter class needs to be defined separately by the variable '''CIRC_CLASS_DIST_0000X''', where X is the number of the diameter class. The smallest number presents the smallest diameter class. From literature it is known that a truncated exponential distribution is a good first guess: 
     33{{{  
    3334CIRC_CLASS_DIST_00001=9 
    3435CIRC_CLASS_DIST_00002=3 
    3536CIRC_CLASS_DIST_00003=1  
    36  
     37}}} 
    3738The above declaration implies that 9/13th of the trees will always be in the smallest diameter class, 3/13th will be in the medium class and 1 tree out of 13 will be in the largest diameter class. These ratios are kept throughout the simulations and the boundaries of the diameter classes are adjusted to respect this constraint. Consequently, an even-aged stand will be simulated with three diameter classes where the diameter of the first class may be, for example, 20.3 cm, the diameter of the second class 20.4 cm and the diameter of the third class 20.5 cm. The same code and set-up allows to simulate, in the same simulation, an uneven-aged stand for the same PFT but in a different pixel with, for example, the smallest diameter 7 cm, the medium diameter 25 cm and the largest diameter 45 cm.  
    3839 
     
    5051 
    5152If 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 
     53{{{ 
    5254SECHIBA_VEG_01=0.0769230769231 
    5355SECHIBA_VEG_02=0.0769230769231 
     
    6365SECHIBA_VEGMAX_05=0.0 
    6466... 
    65  
     67}}} 
    6668Link PFTs to MTCs  
     69{{{ 
    6770PFT_TO_MTC_01=1 
    6871PFT_TO_MTC_02=2 
     
    7174PFT_TO_MTC_05=2 
    7275... 
     76}}} 
    7377 
    7478Tell ORCHIDEE which PFTs have a successional relationship 
     79{{{ 
    7580AGEC_GROUP_01=1 
    7681AGEC_GROUP_02=2 
     
    7984AGEC_GROUP_05=2 
    8085... 
     86}}} 
    8187 
    8288Give all PFTs a name for clarity 
     89{{{ 
    8390PFT_NAME__01=Soilbare 
    8491PFT_NAME__02=Broadleavedevergreentropical_age01 
     
    8794PFT_NAME__05=Broadleavedevergreentropical_age04 
    8895... 
    89  
    90  
    91  
     96}}} 
    9297 
    9398=== CWRR vs Choinell ===