Changes between Initial Version and Version 1 of Doc/Models/ORCHIDEE


Ignore:
Timestamp:
03/24/14 16:18:50 (10 years ago)
Author:
trac
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Doc/Models/ORCHIDEE

    v1 v1  
     1{{{ 
     2#!html 
     3<h1>The ORCHIDEE model</h1> 
     4}}} 
     5---- 
     6[[TOC(heading=Table of contents,depth=1,inline)]] 
     7[[PageOutline(1,Table of contents,pullout)]] 
     8 
     9---- 
     10# Introduction #  
     11[http://labex.ipsl.fr/orchidee/ Visit the ORCHIDEE's official website][[BR]] 
     12[https://forge.ipsl.jussieu.fr/orchidee/wiki Follow the actualities in developements of ORCHIDEE] [[BR]] 
     13 
     14 
     15The ORCHIDEE models includes 3 components: sechiba, stomate and LPJ (vegetation dynamics). Only 2 components (sechiba and stomate) are activated by default. If you are using a coupled configuration with LMDZ, you will need the sechiba component to compute the water and energy balance. You will also need the stomate component to compute the carbon balance but this component can be deactivated. You will find additional information on how to use ORCHIDEE in libIGCM-supported configurations below.  
     16---- 
     17 
     18# Vegetation map # 
     19If you want to update annually (VEGET_UPDATE=1Y) the vegetation map (in forced or coupled mode) you must add the following lines in COMP/orchidee.card: 
     20{{{ 
     21[SmoothFiles] 
     22List=(${R_BC}/SRF/${config_UserChoices_TagName}/PFTmap_1850to2005_AR5_LUHa.rc2/PFTmap_IPCC_${year_p1}.nc, PFTmap.nc, 12:12:) 
     23}}} 
     24 
     25 
     26If you do not want to update annually the vegetation map (VEGET_UPDATE=0Y) but you want to update the vegetation map with activated stomate instead, you must add the following lines in COMP/orchidee.card and specify the map year to be used: 
     27{{{ 
     28[BoundaryFiles] 
     29List=(${R_BC}/SRF/${config_UserChoices_TagName}/PFTmap_1850to2005_AR5_LUHa.rc2/PFTmap_IPCC_2005.nc, PFTmap.nc) 
     30ListNonDel= () 
     31}}} 
     32 
     33---- 
     34# Options related to ORCHIDEE in configuration _v5 # 
     35## config.card ## 
     36The model output frequency is configured in the config.card file. 
     37 * The !WriteFrequency variable in the [SRF] section induces a change of the WRITE_STEP variable in orchidee.def. WRITE_STEP determines the output frequency for the sechiba_history.nc file. The available frequencies are: xY (x years), xM (x months), 5D(5 days), 1D (1 day), xs (x seconds). This file is mandatory. If you add HF a second sechiba_out_2.nc file will be written with the 3H frequency.  
     38 
     39 * The !WriteFrequency variable in the [SBG] section induces a change of the STOMATE_HIST_DT variable in orchidee.def. STOMATE_HIST_DT determines the output frequency for the stomate_history.nc file. The stomate_history_ipcc.nc file always has daily outputs.  
     40 
     41 
     42## orchidee.card ## 
     43In orchidee.card you can specify variables inducing a change in the model input parameter files. The default parameter values are: 
     44 * VEGET_UPDATE  : default value 0Y. The VEGET_UPDATE variable in orchidee.def is set to 0Y or 1Y. Frequency of the vegetation map update. 
     45 * LAND_COVER_CHANGE : default value n. The LAND_COVER_CHANGE variable in orchidee.def is set to n or y. Takes into account (or not) land use and deforestation processes.  
     46 * NEWHYDROL : mandatory variable, no default value. The HYDROL_CWRR variable is set to NEWHYDROL. Only the case NEWHYDROL=n is evaluated in the ORCHIDEE official versions.  
     47 * sechiba_LEVEL : mandatory variable, no default value, it varies between 0 and 11. The SECHIBA_HISTLEVEL variable is set to sechiba_LEVEL. This variable determines the number of variables written in sechiba_history.nc. 
     48  
     49## stomate.card ## 
     50 * stomate_LEVEL : mandatory variable, no default value, it varies between 0 and 10. The STOMATE_HISTLEVEL variable is set to this value. This variable determines the number of variables written in stomate_history.nc. 
     51 
     52---- 
     53# Deactivate stomate in ORCHIDEE # 
     54You can deactivate STOMATE component included by default in all experiments with ORCHIDEE. In this case, you only run the SECHIBA component. To do so: 
     55 * in config.card: delete the line for SBG in the !ListeOfComponents section 
     56 * in COMP/orchidee.card (for _v5 configurations) or in COMP/sechiba.card (for ORCHIDEE_OL configuration): add the lai2D.nc file in !BoundaryFiles, !ListNonDel section as follow: 
     57{{{ 
     58ListNonDel= (${R_BC}/SRF/${config_UserChoices_TagName}/lai2D_03.nc, lai2D.nc) 
     59}}} 
     60 * in PARAM/orchidee.def (for _v5) or PARAM/run.def (for ORCHIDEE_OL): add parameter LAI_MAP to request the reading of LAI_MAP: 
     61 {{{ 
     62# Read a LAI map (12 monthly values) 
     63LAI_MAP = y 
     64# default = n 
     65}}} 
     66