New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
iodef_demo.xml in branches/2014/dev_r5134_UKMO4_CF_compliance/NEMOGCM/CONFIG/ORCA2_LIM/EXP00 – NEMO

source: branches/2014/dev_r5134_UKMO4_CF_compliance/NEMOGCM/CONFIG/ORCA2_LIM/EXP00/iodef_demo.xml @ 5199

Last change on this file since 5199 was 5199, checked in by hadcv, 9 years ago

Addition of standard_name entries and other changes.

  • XIOS namelist changes:
    • Added standard_name entries to field_def.xml for physical ocean variables and SBC fields
      • This does not cover all variables!
    • Added some new variable definitions
    • Renamed the coupled variable "calving" to "calving_cea" to avoid a clash with the ICB variable
    • Removed long_name entries from iodef.xml files
      • iodef_ar5.xml has been preserved where possible
    • Added axis definitions for 20C and 28C isotherm depths
    • Performed some minor cleaning and opportunistic minor edits
  • NEMO changes:
    • Replaced an iom_put call in DIA/diahth.F90 with a definition in field_def.xml
    • Added axis definitions for 20C and 28C isotherm depths
  • Property svn:keywords set to Id
File size: 5.6 KB
Line 
1<?xml version="1.0"?>
2<simulation> 
3
4  <context id="nemo" time_origin="1900-01-01 00:00:00" >
5   
6    <!-- $id$ -->
7   
8    <!--
9============================================================================================================
10=                                  definition of all existing variables                                    =
11=                                            DO NOT CHANGE                                                 =
12============================================================================================================
13    -->
14    <field_definition src="./field_def.xml"/>
15    <!--
16============================================================================================================
17=                                           output files definition                                        =
18=                                            Define your own files                                         =
19=                                         put the variables you want...                                    =
20============================================================================================================
21    -->
22   
23    <file_definition type="multiple_file" name="@expname@_@freq@_@startdate@_@enddate@" sync_freq="1d" min_digits="4">
24   
25      <file_group id="1h" output_freq="1h"  output_level="10" enabled=".TRUE."> <!-- 1h files -->
26   <file id="file1" name_suffix="_grid_T" description="ocean T grid variables" >
27     <field field_ref="sst"  />
28     <field field_ref="qsr"  />
29   </file>
30      </file_group>
31
32     
33      <file_group id="1d" output_freq="1d"  output_level="10" enabled=".TRUE."> <!-- 1d files -->
34   
35   <!-- example of "hand made" zoom  -->
36   <file id="file2" name_suffix="_grid_T_myzoom" >
37     <!-- group of variables sharing the same zoom. see zoom definition in domain_def.xml -->
38     <field_group id="blabla" domain_ref="myzoom" >   
39       <field field_ref="toce" />
40       <field field_ref="soce" />
41     </field_group>
42   </file>
43   
44   <!-- mooring: automatic definition of the file name suffix based on id="0n180wT"  -->
45   <!-- include a group of variables. see field_def.xml for mooring variables definition  -->
46   <file id="0n180wT">
47     <field_group group_ref="mooring" domain_ref="0n180wT" /> 
48   </file>
49   
50   <!-- Equatorial section: automatic definition of the file name suffix based on id="EqT" -->
51   <!-- Zoom over vertical axis. def of axis_ref in the axis_definition bellow -->
52   <file id="EqT" >
53     <field_group id="EqT" domain_ref="EqT" >
54       <field field_ref="toce" name="votemper" axis_ref="deptht_myzoom"  />
55       <field field_ref="sss" />
56     </field_group>
57   </file>
58   
59   <!-- global file with different operations on data   -->
60   <file id="file3" >
61     <field field_ref="toce"   default_value="-10" />    <!-- redefine the missing value -->
62     <field field_ref="sst"    name="sstmooring1" domain_ref="0n180wT"  />   <!-- include a mooring -->
63     <field field_ref="sst"    name="sst_1d_ave"  />                         <!-- mean -->
64     <field field_ref="sst"    name="sst_1d_inst" operation="instant" />     <!-- instant value -->
65     <field field_ref="sst"    name="sst_1d_max"  operation="maximum" />     <!-- max -->
66     <field field_ref="suoce"  />   <!-- include a U-grid variable in the list -->
67   </file>
68   
69      </file_group>
70     
71    </file_definition>
72   
73    <!--
74============================================================================================================
75= grid definition = = DO NOT CHANGE =
76============================================================================================================
77    -->
78   
79   <axis_definition> 
80      <axis id="deptht"  long_name="Vertical T levels"  unit="m" positive="down" />
81      <axis id="deptht_myzoom" zoom_begin="1" zoom_end="10   " axis_ref="deptht" />
82      <axis id="depthu"  long_name="Vertical U levels"  unit="m" positive="down" />
83      <axis id="depthv"  long_name="Vertical V levels"  unit="m" positive="down" />
84      <axis id="depthw"  long_name="Vertical W levels"  unit="m" positive="down" />
85      <axis id="nfloat"  long_name="Float number"       unit="1"                 />
86      <axis id="icbcla"  long_name="Iceberg class"      unit="1"                 />
87      <axis id="ncatice" long_name="Ice category"       unit="1"                 />
88      <axis id="iax_20C" long_name="20 degC isotherm"   unit="degC"              />
89      <axis id="iax_28C" long_name="28 degC isotherm"   unit="degC"              />
90   </axis_definition> 
91   
92   <domain_definition src="./domain_def.xml"/>
93   
94   <grid_definition>   
95     <grid id="grid_T_2D" domain_ref="grid_T"/>
96     <grid id="grid_T_3D" domain_ref="grid_T" axis_ref="deptht"/>
97     <grid id="grid_U_2D" domain_ref="grid_U"/>
98     <grid id="grid_U_3D" domain_ref="grid_U" axis_ref="depthu"/>
99     <grid id="grid_V_2D" domain_ref="grid_V"/>
100     <grid id="grid_V_3D" domain_ref="grid_V" axis_ref="depthv"/>
101     <grid id="grid_W_2D" domain_ref="grid_W"/>
102     <grid id="grid_W_3D" domain_ref="grid_W" axis_ref="depthw"/>
103    </grid_definition>   
104
105  </context>
106 
107
108  <context id="xios">
109
110      <variable_definition>
111   
112     <!--
113        We must have buffer_size > jpi*jpj*jpk*8*3 (with jpi and jpj the subdomain size)
114-->
115     <variable id="buffer_size"               type="integer">25000000</variable>
116     <variable id="buffer_server_factor_size" type="integer">2</variable>
117     <variable id="info_level"                type="integer">0</variable>
118     <variable id="using_server"              type="boolean">false</variable>
119     <variable id="using_oasis"               type="boolean">false</variable>
120     <variable id="oasis_codes_id"            type="string" >oceanx</variable>
121   
122      </variable_definition>
123               
124  </context>
125 
126</simulation>
Note: See TracBrowser for help on using the repository browser.