Changes between Version 1 and Version 2 of Documentation/UserGuide/AddNewInputFiles


Ignore:
Timestamp:
2016-04-14T10:04:57+02:00 (8 years ago)
Author:
jgipsl
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Documentation/UserGuide/AddNewInputFiles

    v1 v2  
    1 = How to tell libIGCM to handle a new input file of ORCHIDEE = 
    2 This sites describes where you had to add the information so that libIGCM will handle a new input file of ORCHIDEE. 
     1= How to tell libIGCM to copy a new input file for ORCHIDEE = 
     2This page describes where you had to add the information so that libIGCM will copy a new input file of ORCHIDEE. 
     3Read more about setting up an experiment in [http://forge.ipsl.jussieu.fr/igcmg_doc/wiki/DocEsetupthe igmcg_doc chapter Setup].  
    34 
    4 == default way == 
    5 === new input file for stomate === 
    6 modify the variable ListNonDel in COMP/stomate.card: 
     5All input files for stomate are set in COMP/stomate.card. Input files for sechiba are set in COMP/sechiba.card for offline simulations and in orchidee.card for coupled simulations. The offline driver forcing files are set in orchidee_ol.card. In these ''component.card'', the input files are divided into different sections : 
     6 * [!InitialStateFiles]/List : add the file here if it is only needed when no restart file is existing. For example soils_param.nc is set here. 
     7 * [!BoundaryFiles]/List : add the file depends on the date of the simulation. For example the forcing file is set here. You can use ${year} and ${month} to describe the file.  
     8 * [!BoundaryFiles]/!ListNonDel : add the file here if it is needed during the whole simulation 
     9 * [!ParametersFiles]/List : add the file here if it is a text file 
     10 
     11 
     12Syntax: 
     13Add in the end of the previous line "''',\'''", be careful not adding empty space and add a new line (sourcefile, destinationfile) where sourcefile is the complete file path and name and destinationfile is the filename read by the model. 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.  
     14 
     15For the destinationfile you can use "'''.'''" if the filename is the same.   
     16 
     17Examples: 
    718{{{ 
    819ListNonDel= (${R_IN}/SRF/reftemp.nc, .), \        
    9 (<path>/< new file>.nc, .), \ 
     20            (path/to/new/file.nc, destinationfilename) 
    1021}}} 
    11 === new input file for sechiba === 
    12 do the same but in COMP/sechiba.card: 
     22 
     23{{{ 
     24[BoundaryFiles] 
     25List=  (${R_IN}/SRF/METEO/NCC/ncc_for_${year}.nc, forcing_file.nc) 
     26}}} 
    1327 
    1428 
    15 == ENSEMBLE simulation == 
    16 the stomate.card and sechiba.card used are hidden here: 
    17 ../SPINUP/SUBJOB/OOL_SEC_STO/COMP/ 
    18 do as described in the default way 
     29=== Special case for ENSEMBLE / FLUXNET simulation === 
     30Note that the stomate.card and sechiba.card are hidden in here: 
     31 
     32{{{ 
     33config/ORCHIDEE_OL/SPINUP/SUBJOB/OOL_SEC_STO/COMP/ 
     34}}} 
     35 
     36 
     37 
     38Modify sechiba.card and stomate.card as described above.