Changes between Version 6 and Version 7 of Tags/196/ExternalisationParameters/UsersGuide


Ignore:
Timestamp:
2011-07-22T11:26:39+02:00 (13 years ago)
Author:
dsolyga
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Tags/196/ExternalisationParameters/UsersGuide

    v6 v7  
    168168}}} 
    169169 
     170 
    170171'''NB: Concerning the other arrays parameters'''[[BR]] 
    171172 
     
    315316in any of these files because ORCHIDEE can make the merge.  
    316317 
     318== JULY 2011 == 
     319 
     320When you work with this version, I advice you to document you run.def file specially when you don't use the standard configuration.[[BR]] 
     321 
     322This is important if you want to use the same MTC.[[BR]] 
     323 
     324In this case, you should give names to your PFTs. You got two ways to do it : comment your *.def file or using 
     325the variable PFT_name. [[BR]] 
     326 
     327Let's suppose you want to work on forests with 3 differents species.[[BR]] 
     328 
     329You could have the following run.def file : 
     330 
     331{{{ 
     332# Nb of PFTs : 
     333  NVM = 4 
     334 
     335# Correspondance table 
     336 # sol_nu/bare_ground 
     337 PFT_TO_MTC__01 = 1      
     338 # hetre/beech 
     339 PFT_TO_MTC__02 = 6 
     340 # chene/oak 
     341 PFT_TO_MTC__03 = 6  
     342 # bouleau/birch 
     343 PFT_TO_MTC__04 = 6 
     344}}} 
     345 
     346or you can use the variable called PFT_NAME : 
     347 
     348 
     349{{{ 
     350# Nb of PFTs 
     351  NVM = 4 
     352 
     353# Correspondance table 
     354  
     355 PFT_TO_MTC__01 = 1      
     356 PFT_TO_MTC__02 = 6 
     357 PFT_TO_MTC__03 = 6  
     358 PFT_TO_MTC__04 = 6 
     359 
     360# Names of the pfts 
     361 
     362PFT_NAME__01 = bare_ground 
     363PFT_NAME__02 = beech 
     364PFT_NAME__03 = oak 
     365PFT_NAME__04 = birch 
     366}}} 
     367 
     368By default, PFT_NAME contains the names of the MTCs. [[BR]] 
     369If you choose the second manner, you will find in the output files *_out_orchidee_ol :  
     370{{{ 
     371 the PFT           1 called  sol_nu                             
     372 corresponds to the MTC : bared ground                       
     373 the PFT           2 called   hetre                              
     374 corresponds to the MTC : temperate broad-leaved summergreen 
     375 the PFT           3 called  chene                              
     376 corresponds to the MTC : temperate broad-leaved summergreen 
     377 the PFT           4 called bouleau                            
     378 corresponds to the MTC : temperate broad-leaved summergreen 
     379}}} 
     380 
     381It is only a data variable for the moment, so do as you please. 
    317382 
    318383