Changes between Version 32 and Version 33 of Documentation/UserGuide/TestCase1
- Timestamp:
- 2022-01-14T10:21:21+01:00 (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Documentation/UserGuide/TestCase1
v32 v33 3 3 Author: J. Ghattas[[BR]] 4 4 Last revision: 2020/01/19, J. Ghattas, update done after inclusion of branch CN-CAN in the trunk[[BR]] 5 Last revision: 202 0/06/26, F. Maignan, output_level="X" (noticed by E. Dupont)5 Last revision: 2022/01/14, J. Ghattas with input from Mandresy Rasolonjatovo 6 6 7 7 == Objectives == … … 12 12 == Prepare input files == 13 13 You need the following files : 14 - executable orchidee_ol 14 - executable orchidee_ol 15 15 - forcing_file.nc and other netcdf input files 16 16 - xml files to configure output using XIOS … … 19 19 Create a directory where you will run the model and copy input files as follow. 20 20 === Executable orchidee_ol === 21 Install and compile the model to get the executable orchidee_ol. Read more here: wiki:Documentation/UserGuide/InstallingORCHIDEEBasic21 Install and compile the model to get the executable orchidee_ol. You can use orchidee_ol_prod or orchidee_ol_debug depending on the compilation you activated. Read more here: wiki:Documentation/UserGuide/InstallingORCHIDEEBasic 22 22 23 23 === Input netcdf files === … … 39 39 40 40 where 41 * R_IN=/pro digfs/ipslfs/igcmg/IGCM at ciclad/climserv41 * R_IN=/projsu/igcmg/IGCM at ciclad/climserv 42 42 * R_IN=/home/orchideeshare/igcmg/IGCM at obelix 43 * IDRIS, TGCC see ORCHIDEE training courses or http://forge.ipsl.jussieu.fr/igcmg_doc/wiki/Doc/ComputingCenters 44 * or download using wget, replace R_IN by https://vesg.ipsl.upmc.fr/thredds/catalog/ IPSLFS/igcmg/IGCM43 * IDRIS, TGCC see ORCHIDEE training courses or http://forge.ipsl.jussieu.fr/igcmg_doc/wiki/Doc/ComputingCenters/SharedFiles 44 * or download using wget, replace R_IN by https://vesg.ipsl.upmc.fr/thredds/catalog/igcmg/IGCM/catalog.html 45 45 * replace ${year} by the year of your choice between 1901-2010 46 46 … … 55 55 * output_level="_AUTO_" into output_level="X" where X is an integer between 0-11 56 56 * output_freq="_AUTO_" into output_freq="1mo" or output_freq="1d" par example 57 * enabled="_AUTO_" into enabled=" true" or enabled="false"57 * enabled="_AUTO_" into enabled=".TRUE." or enabled=".FALSE." 58 58 * do any other change as you wish to adapt the output to your needs 59 59 … … 62 62 === Parameter files === 63 63 Copy following parameter files from experiment set up OOL_SEC_STO2 into your run folder and modify all occurrences of AUTO as follow: 64 * modipsl/config/ORCHIDEE_OL/OOL_SEC_STO_FG2/PARAM/run.def 64 * modipsl/config/ORCHIDEE_OL/OOL_SEC_STO_FG2/PARAM/run.def 65 65 {{{ 66 66 TIME_LENGTH = 1D … … 69 69 RESTART_FILEIN = NONE 70 70 ATM_CO2 = 350. 71 }}} 71 }}} 72 72 * modipsl/config/ORCHIDEE_OL/OOL_SEC_STO_FG2/PARAM/orchidee.def 73 73 {{{ … … 82 82 RIVER_DESC = n 83 83 VEGET_UPDATE = 0Y 84 SPINUP_ANALYTIC = n85 SPINUP_PERIOD = 086 84 STOMATE_OK_STOMATE = y 87 85 NINPUT_UPDATE = 0Y … … 91 89 * rename the file as orchidee_pft.def, no changes in the file 92 90 91 By default, in this test case the simulation will be on the global domain, running for 1 day, starting with no restart files. See comments if in run.def and orchidee.def files to understand the meaning of the parameters. You can for example run on regional domain using LIMIT_xx parameters to be set in run.def, see comments in the end of this file. 92 93 93 == Check you environment and launch the model == 94 94 To run the model you first need to load the same netcdf library as the one used for the compilation. This depends on the machine you work at. If you use one of the predefined IPSL machines (irene, jeanzay, obelix or ciclad/climserv), source the file in the folder ORCHIDEE_OL/ARCH: … … 100 100 Once you've get all input files, launch the model in the same directory : 101 101 {{{ 102 ./orchidee_ol > out_orchidee_ol2>&1102 ./orchidee_ol_prod > out_orchidee_ol_prod 2>&1 103 103 }}} 104 104