Changes between Initial Version and Version 1 of Documentation/UserGuide/TestCase1


Ignore:
Timestamp:
2012-09-19T10:51:39+02:00 (12 years ago)
Author:
jgipsl
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Documentation/UserGuide/TestCase1

    v1 v1  
     1= How to run a simple test case with ORCHIDEE = 
     2 
     3You need following files : 
     4   - forcing_file.nc   (680M) 
     5   - PFTmap.nc         (13M)  
     6   - soils_param.nc    (<1M) 
     7   - reftemp.nc        (<1M) 
     8   - run.def 
     9   - executable orchidee_ol 
     10 
     11'''Get the input files :'''  
     12{{{ 
     13wget http://dods.extra.cea.fr/work/p86ipsl/IGCM/BC/OOL/OL2/NCC/ncc_for_1982.nc 
     14ln -s ncc_for_1982.nc forcing_file.nc 
     15wget http://dods.extra.cea.fr/work/p86ipsl/IGCM/BC/SRF/OL2/PFTmap_1850to2005_AR5_LUHa.rc2/PFTmap_IPCC_1982.nc 
     16ln -s PFTmap_IPCC_1982.nc PFTmap.nc 
     17wget http://dods.extra.cea.fr/work/p86ipsl/IGCM/INIT/SRF/OL2/soils_param.nc 
     18wget http://dods.extra.cea.fr/work/p86ipsl/IGCM/BC/SRF/OL2/reftemp.nc 
     19}}} 
     20 
     21'''Save following lines into run.def :''' 
     22{{{ 
     23WRITE_STEP= -1. 
     24SECHIBA_HISTLEVEL= 11 
     25SECHIBA_HISTFILE2= y 
     26SECHIBA_HISTLEVEL2= 1 
     27WRITE_STEP2= 10800.0 
     28STOMATE_OK_CO2= y 
     29LAI_MAP= n 
     30RIVER_ROUTING= n 
     31HYDROL_CWRR= n 
     32VEGET_UPDATE= 0Y 
     33VEGET_REINIT= y 
     34VEGET_YEAR= 1 
     35SECHIBA_reset_time= y 
     36STOMATE_OK_STOMATE= y 
     37STOMATE_HIST_DT= -1. 
     38STOMATE_HISTLEVEL= 10 
     39STOMATE_IPCC_HIST_DT= -1. 
     40STOMATE_FORCING_NAME= stomate_forcing.nc 
     41STOMATE_CFORCING_NAME= stomate_Cforcing.nc 
     42TIME_LENGTH= 365D 
     43#TIME_LENGTH=31D 
     44TIME_SKIP= 0D 
     45 
     46# For regional run : 
     47# LIMIT_WEST ([Degrees] ) :  Western limit of region    {[-]} 
     48LIMIT_WEST =  -10. 
     49# LIMIT_EAST ([Degrees] ) :  Eastern limit of region    {[-]} 
     50LIMIT_EAST =  0. 
     51# LIMIT_NORTH ([Degrees]) :  Northern limit of region   {[-]} 
     52LIMIT_NORTH =  10. 
     53# LIMIT_SOUTH ([Degrees]) :  Southern limit of region   {[-]} 
     54LIMIT_SOUTH =  0. 
     55 
     56# For global run : 
     57#LIMIT_WEST = -180. 
     58#LIMIT_EAST =  180. 
     59#LIMIT_NORTH =  90. 
     60#LIMIT_SOUTH = -90. 
     61}}} 
     62 
     63 
     64'''Once you've get all input files, launch the modele in the same directory :''' 
     65{{{ 
     66./orchidee_ol > out_orchidee_ol 2>&1 
     67}}} 
     68 
     69