Changes between Version 4 and Version 5 of Documentation/UserGuide/AddNewInputFiles


Ignore:
Timestamp:
2020-02-28T12:34:36+01:00 (4 years ago)
Author:
luyssaert
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Documentation/UserGuide/AddNewInputFiles

    v4 v5  
    1414When downloading the ORCHIDEE trunk from svn, you will also download the ORCIDEE_OL folder. This folder contains a set of default [http://forge.ipsl.jussieu.fr/igcmg_doc/wiki/Doc/Config/ORCHIDEE_OL#Theexperiments experiments]. Check which of these experiments could be a good starting point for the experiment you have in mind. Copy that folder and start from there.  
    1515 
    16 The experiment you copied conatins several folders. The offline driver forcing files are set in orchidee_ol.card. The input files for the stomate routines are typically set in COMP/stomate.card. For offline simulations, input files for sechiba are set in COMP/sechiba.card. For coupled simulations, input files for sechiba are set in the orchidee.card. 
     16The experiment you copied conatins several folders. The offline driver forcing files are set in orchidee_ol.card. The input files for the stomate routines are typically set in COMP/stomate.card. For offline simulations, input files for sechiba are set in COMP/sechiba.card. For coupled simulations, input files for sechiba are set in the orchidee.card. For the experiment called ENSEMBLE the stomate.card and sechiba.card are hidden in config/ORCHIDEE_OL/SPINUP/SUBJOB/OOL_SEC_STO/COMP/. The ENSEMBLE experiment helps to compare ORCHIDEE simulations agains FLUXNET data but is a complicated and delicate set-up. It is best to first read its specific [https://forge.ipsl.jussieu.fr/orchidee/wiki/Documentation/UserGuide/FLUXNETValidation documentation]  
    1717   
    1818In these ''component.card'', the input files are divided into different sections : 
     
    2222 * [!ParametersFiles]/List : add the file here if it is a text file 
    2323 
    24 The ''component.card'' files are processed by the matching ''component.driver'', hence, the syntax is really important and precise. See how it is done for other files. If you are adding a file to an existing list, remember to add in the end of the previous line "''',\'''", be careful not to add empty spaces! Add a new line (sourcefile, destinationfile) where sourcefile describes the complete file path and filename and destinationfile is the filename read by the model (see above). To define the path for the source file you can use ${R_IN} which points to the shared repository IGCM or set directly the full path to the file ONLY if you are using a file that is not on the repository. '''Help us to save disk space and do NOT copy any files from the repository to your personal folders.'''  
     24The ''component.card'' files are processed by the matching ''component.driver'', hence, the syntax is really important and precise. See how it is done for other files. If you are adding a file to an existing list, remember to add in the end of the previous line "''',\'''", be careful not to add empty spaces! Add a new line (source_file, destination_file) where source_file describes the complete file path and filename and destination_file is the filename read by the model (see above). For the destination_file you can use "'''.'''" if the filename is the same. To define the path for the source_file you can use ${R_IN} which points to the shared repository IGCM or set directly the full path to the file ONLY if you are using a file that is not on the repository. '''Help us to save disk space and do NOT copy any files from the repository to your personal folders.'''  
    2525 
    26 For the destinationfile you can use "'''.'''" if the filename is the same.   
    27  
    28 Examples: 
     26Example 1. Use a file with the reftemp.nc in ORCHIDEE. This file is known to ORCHIDEE as reftemp.nc so there is no need to change the name:  
    2927{{{ 
    3028ListNonDel= (${R_IN}/SRF/reftemp.nc, .), \        
    3129            (path/to/new/file.nc, destinationfilename) 
    3230}}} 
    33  
     31[[BR]] 
     32Example 2. Use for every year a different climate forcing file with the name ncc_for_XXX.nc where XXX is the year, e.g. 1902. These files are known to ORCHIDEE as forcing_file.nc:  
    3433{{{ 
    3534[BoundaryFiles] 
    3635List=  (${R_IN}/SRF/METEO/NCC/ncc_for_${year}.nc, forcing_file.nc) 
    3736}}} 
     37[[BR]] 
    3838 
    39  
    40 === Special case for ENSEMBLE / FLUXNET simulation === 
    41 Note that the stomate.card and sechiba.card are hidden in here: 
    42  
    43 {{{ 
    44 config/ORCHIDEE_OL/SPINUP/SUBJOB/OOL_SEC_STO/COMP/ 
    45 }}} 
    46  
    47  
    48  
    49 Modify sechiba.card and stomate.card as described above. 
    5039 
    5140=== Alternatives ===