Changes between Version 152 and Version 153 of DevelopmentActivities/ORCHIDEE-DOFOCO


Ignore:
Timestamp:
2017-07-06T14:10:53+02:00 (7 years ago)
Author:
alanso
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DevelopmentActivities/ORCHIDEE-DOFOCO

    v152 v153  
    2525 
    2626== How do I run this version? == 
    27 For the moment, the instructions for ORCHIDEE-DOFOCO can be used to download and compile the model (see https://forge.ipsl.jussieu.fr/orchidee/wiki/Documentation/UserGuide/ORCHIDEEDOFOCOInstall). Use this run.def for a set-up with 13 MTCs and no age classes (as the trunk) or this run.def to make use of 13 MTC and 4 age classes for each forest MTC, thus resulting in 37 PFTs. 
     27For the moment, the instructions for ORCHIDEE-DOFOCO can be used to download and extract the model (see https://forge.ipsl.jussieu.fr/orchidee/wiki/Documentation/UserGuide/ORCHIDEEDOFOCOInstall). Use this run.def for a set-up with 13 MTCs and no age classes (as the trunk) or this run.def to make use of 13 MTC and 4 age classes for each forest MTC, thus resulting in 37 PFTs. 
     28 
     29When running the model, the default setting should be XIOS. Thus, compile the model with gmake with_xios. Note that there currently is a bug on obelix when compiling XIOS. It keeps re-compiling, even though no changes has been made to XIOS. To avoid this and reduce compiling time, change the following line in the Makefile from  
     30{{{ 
     31with_xios : xios ioipsl driver_xios verif 
     32}}} 
     33to 
     34{{{ 
     35with_xios : ioipsl driver_xios verif 
     36}}} 
     37Once the model is compiled, make sure that XIOS=y in orchidee_ol.card. 
     38 
     39Moreover, new output files for ORCHIDEE have been specified within the code. In order to obtain these, when you run the model, the files need to be added to both the cards and drivers for either stomate or sechiba. Below is given an example for stomate_history_4dim). 
     40[[BR]] 
     41In stomate.driver, add the following within the shown if statement: 
     42{{{ 
     43    # Modify file_def_orchidee.def if XIOS is activated 
     44    if [ X${orchidee_ol_UserChoices_XIOS} = Xy ] ; then 
     45        # Modify file_def_orchidee.xml 
     46        IGCM_comp_modifyXmlFile nonblocker file_def_orchidee.xml stomate3 enabled ${stomate_enabled} 
     47        IGCM_comp_modifyXmlFile nonblocker file_def_orchidee.xml stomate3 output_freq ${stomate_freq} 
     48    fi 
     49}}} 
     50In stomate.card add the new file to list of output files: 
     51{{{ 
     52[OutputFiles] 
     53List=   (stomate_history.nc, ${R_OUT_SBG_O_M}/${PREFIX}_1M_stomate_history.nc, Post_1M_stomate_history) \ 
     54        (stomate_ipcc_history.nc, ${R_OUT_SBG_O_M}/${PREFIX}_1M_stomate_ipcc_history.nc, Post_1M_stomate_ipcc_history),\ 
     55        (stomate_history_4dim.nc, ${R_OUT_SBG_O_M}$ {PREFIX}_1M_stomate_history_4dim.nc, NONE) 
     56}}} 
    2857[[BR]] 
    2958[[BR]]