Changes between Version 5 and Version 6 of Documentation/UserGuide/XIOSinConfig


Ignore:
Timestamp:
2018-09-27T16:47:21+02:00 (6 years ago)
Author:
jgipsl
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Documentation/UserGuide/XIOSinConfig

    v5 v6  
    8686GatherWithInternal= (lon, lat, veget, time_counter, time_counter_bounds, Areas, Contfrac) 
    8787}}} 
     88 
     89=== Changing the level and frequency of output files === 
     90Using XIOS, when the model is running, the information is read from the file file\_def\_orchidee.xml present in the run directory. This file is copied by the libIGCM configuration from modeles/ORCHIDEE/src_xml directory. Some major changes can be done from the higher level, in the top of the files sechiba.card(orchidee.card in coupled configurations) and stomate.card. The 4 standard files can be modified from here: sechiba_history.nc, sechiba_out_2.nc, stomate_history.nc and stomate_ipcc_history.nc. Activation, frequency and output level can be changed for each of these files. See comments in the beginning of the comp.cards.  
     91 
     92In sechiba.card (orchidee.card in coupled configurations): 
     93{{{ 
     94# Specify output level for output files 
     95# Only the files sechiba_history.nc, sechiba_out_2.nc and sechiba_history_4dim.nc can be set here. 
     96# output_level_filename=0     : lowest level writing only variables needed for the monitoring 
     97# output_level_filename=12    : highest level which will output all variables 
     98# output_level_filename=NONE  : deactivate the file 
     99output_level_sechiba_history = 11 
     100output_level_sechiba_out_2 = NONE 
     101output_level_sechiba_history_4dim = 11 
     102 
     103# Specify output frequency for each file [1y, 1mo, 1d, 10800s, 1ts] 
     104# Settings using WriteFrequency in config.card are not longer used 
     105output_freq_sechiba_history = 1mo 
     106output_freq_sechiba_out_2 = 10800s 
     107output_freq_sechiba_history_4dim = 1mo 
     108}}} 
     109 
     110In stomate.card: 
     111{{{ 
     112# Specify output level for output files 
     113# Only the files stomate_history.nc and stomate_ipcc_history.nc can be set here. 
     114# output_level_filname=0     : lowest level writing only variables needed for the monitoring 
     115# output_level_filname=1     : highest level which will output all variables 
     116# output_level_filname=NONE  : deactivate the file 
     117output_level_stomate_history = 1 
     118output_level_stomate_ipcc_history = 1 
     119 
     120# Specify output frequency for each file [1y, 1mo, 1d] 
     121# Settings using WriteFrequency in config.card are not longer used 
     122output_freq_stomate_history = 1mo 
     123output_freq_stomate_ipcc_history = 1mo 
     124}}} 
     125 
     126 
     127If you want to do more changes, this can be done directly in the file modeles/ORCHIDEE/src\_xml/file\_def\_orchidee.xml. 
     128It is also possible to have several different file\_def\_orchidee.xml (in src\_xml or in PARAM folder for example) but in that case changes in COMP/orchidee\_ol.card must be done to copy the corresponding file.  
     129For example change orchidee_ol.card info (orchidee.card in coupled configuraions):  
     130{{{ 
     131[ParametersFiles] 
     132List=   (${SUBMIT_DIR}/PARAM/run.def, .) ,\ 
     133        (${SUBMIT_DIR}/PARAM/iodef.xml, .)   ,\ 
     134        (${MODIPSL}/modeles/ORCHIDEE/src_xml/file_def_input_orchidee.xml, .)  ,\ 
     135        (${MODIPSL}/modeles/ORCHIDEE/src_xml/file_def_orchidee.xml.modif, file_def_orchidee.xml)  ,\ 
     136        (${MODIPSL}/modeles/ORCHIDEE/src_xml/context_orchidee.xml, .)   ,\ 
     137        (${MODIPSL}/modeles/ORCHIDEE/src_xml/field_def_orchidee.xml, .) 
     138}}} 
     139 
     140 
     141 
     142 
     143