source: LMDZ5/trunk/DefLists/context_lmdz.xml @ 2822

Last change on this file since 2822 was 2822, checked in by idelkadi, 7 years ago
  1. Ecriture des champs de sorties Cosp 4D dans les fichiers Netcdf en utilisant les fonctionalites Xios.
  • ajout d'une routine histwrite_cosp4D appelee si les sorties sont gerees par Xios (dans cosp_output_write.F90)
  • definitions des differents axes et grilles 4D pour Cosp (dans context_lmdz.xml)
  1. Traitement des valeurs indefinies par Xios et mise a zero si l'on utilise Ioipsl.
  1. Correction d'erreur sur les sorties Modis
  • Property copyright set to
    Name of program: LMDZ
    Creation date: 1984
    Version: LMDZ5
    License: CeCILL version 2
    Holder: Laboratoire de m\'et\'eorologie dynamique, CNRS, UMR 8539
    See the license file in the root directory
File size: 3.8 KB
Line 
1<!-- Context LMDZ -->
2<context id="LMDZ">
3<!--  <calendar type="D360" start_date="1980-01-01 00:00:00" /> -->
4 
5  <!-- Define available variables -->
6  <field_definition src="./field_def_lmdz.xml"/> 
7 
8  <!-- Define output files
9       Each file contains the list of variables and their output levels -->
10 
11  <file_definition src="./file_def_histday_lmdz.xml"/>
12  <file_definition src="./file_def_histhf_lmdz.xml"/>
13  <file_definition src="./file_def_histins_lmdz.xml"/>
14<!--  <file_definition src="./file_def_histLES_lmdz.xml"/> -->
15  <file_definition src="./file_def_histmth_lmdz.xml"/> 
16<!--  <file_definition src="./file_def_histstn_lmdz.xml"/> -->
17  <file_definition src="./file_def_histmthNMC_lmdz.xml"/>
18  <file_definition src="./file_def_histdayNMC_lmdz.xml"/>
19  <file_definition src="./file_def_histhfNMC_lmdz.xml"/>
20<!--  <file_definition src="./file_def_histmthCOSP_lmdz.xml"/> -->
21<!--  <file_definition src="./file_def_histdayCOSP_lmdz.xml"/> -->
22<!--  <file_definition src="./file_def_histhfCOSP_lmdz.xml"/> -->
23  <file_definition src="./file_def_histstrataer_lmdz.xml"/>
24 
25  <!-- Define domains and groups of domains -->
26  <domain_definition>
27    <domain id="dom_glo" data_dim="2" />
28  </domain_definition>
29 
30  <!-- Need to define a grid? Do it here -->
31<!--  <grid_definition>
32    <grid_group id="vertical" axis_ref="presnivs" />
33  </grid_> -->
34
35  <!-- Define groups of vertical axes -->
36  <axis_definition>
37    <axis id="presnivs" standard_name="Vertical levels" unit="Pa">
38    </axis>
39    <axis id="Ahyb" standard_name="Ahyb comp of Hyb Cord" unit="Pa">
40    </axis> 
41    <axis id="Bhyb" standard_name="Bhyb comp of Hyb Cord" unit="">
42    </axis>
43    <axis id="Alt" standard_name="Height approx for scale heigh of 8km at levels" unit="km">
44    </axis>
45    <axis id="plev" standard_name="model_level_number" unit="Pa">
46    </axis>
47
48<!-- Cosp axis definitions-->
49    <axis id="height" standard_name="Cosp levels" unit="m"> 
50    </axis>
51    <axis id="height_mlev" standard_name="height_mlev" unit="m"> 
52    </axis>
53    <axis id="sza" standard_name="solar_zenith_angle" unit="degrees">
54    </axis>
55    <axis id="pressure2" standard_name="pressure" unit="mb">
56    </axis>
57    <axis id="column" standard_name="column" unit="count"> 
58    </axis> 
59    <axis id="temp" standard_name="temperature" unit="K"> 
60    </axis> 
61    <axis id="cth16" name="cth" standard_name="altitude" unit="m"> 
62    </axis> 
63    <axis id="ReffIce" standard_name="ReffIce" unit="microne" >
64    </axis>
65    <axis id="ReffLiq" standard_name="ReffLiq" unit="microne" >
66    </axis>
67    <axis id="scatratio" standard_name="scatratio" unit="1" >
68    </axis>
69    <axis id="dbze" standard_name="dbze" unit="dBZ" >
70    </axis>
71    <axis id="tau" standard_name="tau" unit="1" >
72    </axis>
73  </axis_definition>
74
75  <grid_definition>
76<!-- Define Scalar grid for GHG, orbital parameters and solar constants -->
77    <grid id="grid_scalar">
78    </grid>
79
80<!-- Define 4D grids for Cosp simulator -->
81     <grid id="grid4Dcol">
82        <domain id="dom_glo" />
83        <axis id="height_mlev" />
84        <axis id="column" />
85     </grid>
86
87     <grid id="grid4Dsrbin">
88        <domain id="dom_glo" />
89        <axis id="height" />
90        <axis id="scatratio" />
91     </grid>
92
93     <grid id="grid4Ddbze">
94        <domain id="dom_glo" />
95        <axis id="height" />
96        <axis id="dbze" />
97     </grid>
98
99     <grid id="grid4Dtau">
100        <domain id="dom_glo" />
101        <axis id="tau" />
102        <axis id="pressure2" />
103     </grid>
104
105     <grid id="grid4Dmisr">
106        <domain id="dom_glo" />
107        <axis id="tau" />
108        <axis id="cth16" />
109     </grid>
110
111     <grid id="grid4Dreffi">
112        <domain id="dom_glo" />
113        <axis id="tau" />
114        <axis id="ReffIce" />
115     </grid>
116
117     <grid id="grid4Dreffl">
118        <domain id="dom_glo" />
119        <axis id="tau" />
120        <axis id="ReffLiq" />
121     </grid>
122  </grid_definition>
123
124</context>
Note: See TracBrowser for help on using the repository browser.