source: CONFIG_DEVT/ORCHIDEE_OL_TP/MAKE_RUN_DEF/config3PFTs.py @ 5578

Last change on this file since 5578 was 5570, checked in by aclsce, 3 years ago

Created ORCHIDEE_OL_TP configuration : temporary configuration to be used during prectical session.

File size: 1.1 KB
Line 
1#!/usr/bin/env python
2
3#-------------------------------------------------------------------
4# Objectives
5#-------------------------------------------------------------------
6# This file describes a configuration with bare soil and two
7# identical PFTs. It can be used to test the numerical consistency
8# of the model. The choice for MTC 4 is arbitrary. Any other PFT
9# is equally suited for the test.
10#
11# WARNING: the order of the PFTs should match the PFT definition of
12# the land cover, forest management, litter raking and species maps.
13#
14# CODING GUIDELINE: variable names written in capitals are variables
15# that will end up in the run.defs
16
17#-------------------------------------------------------------------
18# Configure the vegetation.
19#-------------------------------------------------------------------
20NAGEC = 1
21header = ['domain', 'mtc', 'pft', 'species, genus or biome', 'pft_to_mtc', 'has_agec']
22config = [\
23  ['Global', 'BareSoil', 'SoilBare', 'Global', 1, 'n'],
24  ['Global', 'TemperateNeedleleafEvergreen', 'NeedleleafEvergreen', 'Temperate', 4, 'y'], 
25  ['Global', 'TemperateNeedleleafEvergreen', 'NeedleleafEvergreen', 'Temperate', 4, 'y']] 
26
Note: See TracBrowser for help on using the repository browser.