Changes between Version 2 and Version 3 of Documentation/UserGuide/RoutageSimple


Ignore:
Timestamp:
2022-04-11T13:36:07+02:00 (2 years ago)
Author:
jgipsl
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Documentation/UserGuide/RoutageSimple

    v2 v3  
    3333 * Install ORCHIDEE_2_2. You will get the HEAD of modeles/ORCHIDEE and config/ORCHIDEE_OL. Compile as usual. 
    3434 * Copy the experiment you want to use and make following modifications: 
     35   * Add in orchidee_ol.driver (or orchideedriver.driver), after context_input_orchidee.xml : 
     36{{{ 
     37      if [ -f context_routing_orchidee.xml ] ; then 
     38          echo '<context id="orchidee" src="./context_routing_orchidee.xml"/>' >> add.tmp 
     39      fi 
     40}}} 
     41   * In orchidee_ol.card (or in orchideedriver.card): 
     42{{{      
     43# Add in section [ParameterFiles] 
     44(${MODIPSL}/modeles/ORCHIDEE/src_xml/context_routing_orchidee.xml, .)  ,\ 
     45 
     46# Add in section [RestartFiles]: 
     47   (routing_restart.nc, routing_restart.nc, routing_start.nc) 
     48 
     49# Add in [OutputText] the file 
     50   context_routing_orchidee.xml 
     51}}} 
     52   * Set in COMP/sechiba.card 
     53{{{ 
     54# Add in section [BoundaryFiles]: 
     55ListNonDel= (${R_IN}/SRF/ROUTING/routing_simple.nc, .) 
     56 
     57# Add in section [Outputfiles]: 
     58       (diag_routing.nc,        ${R_OUT_SRF_O_D}/${PREFIX}_1D_sechiba_routing.nc, NONE), \ 
     59}}} 
    3560   * Set in PARAM/run.def: 
    3661{{{ 
     
    3863ROUTING_METHOD = simple 
    3964}}} 
    40    * Modify in COMP/sechiba.card (routing_simple.nc, context_routing_orchidee.xml, restart file, routage_diag.nc) more details to come. 
    41    * Add xml file in COMP/orchidee_ol.card (or orchideedriver.card if using experiment with the new driver) 
     65