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/UKMO/dev_r5107_hadgem3_cplfld/trunk/NEMOGCM/CONFIG/ORCA2_LIM/EXP00 – NEMO

source: branches/UKMO/dev_r5107_hadgem3_cplfld/trunk/NEMOGCM/CONFIG/ORCA2_LIM/EXP00/iodef_demo.xml @ 5473

Last change on this file since 5473 was 5473, checked in by cguiavarch, 9 years ago

Clear svn keywords from UKMO/dev_r5107_hadgem3_cplfld

File size: 5.4 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_group id="deptht" long_name="Vertical T levels" unit="m" positive="down" >
81       <axis id="deptht" />
82       <axis id="deptht_myzoom" zoom_begin="1" zoom_end="10" />
83     </axis_group>
84      <axis id="depthu" long_name="Vertical U levels" unit="m" positive="down" />
85      <axis id="depthv" long_name="Vertical V levels" unit="m" positive="down" />
86      <axis id="depthw" long_name="Vertical W levels" unit="m" positive="down" />
87      <axis id="nfloat" long_name="Float number"      unit="-"  />
88      <axis id="icbcla" long_name="Iceberg class"     unit="-"  />
89   </axis_definition> 
90   
91   <domain_definition src="./domain_def.xml"/>
92   
93   <grid_definition>   
94     <grid id="grid_T_2D" domain_ref="grid_T"/>
95     <grid id="grid_T_3D" domain_ref="grid_T" axis_ref="deptht"/>
96     <grid id="grid_U_2D" domain_ref="grid_U"/>
97     <grid id="grid_U_3D" domain_ref="grid_U" axis_ref="depthu"/>
98     <grid id="grid_V_2D" domain_ref="grid_V"/>
99     <grid id="grid_V_3D" domain_ref="grid_V" axis_ref="depthv"/>
100     <grid id="grid_W_2D" domain_ref="grid_W"/>
101     <grid id="grid_W_3D" domain_ref="grid_W" axis_ref="depthw"/>
102    </grid_definition>   
103
104  </context>
105 
106
107  <context id="xios">
108
109      <variable_definition>
110   
111     <!--
112        We must have buffer_size > jpi*jpj*jpk*8*3 (with jpi and jpj the subdomain size)
113-->
114     <variable id="buffer_size"               type="integer">25000000</variable>
115     <variable id="buffer_server_factor_size" type="integer">2</variable>
116     <variable id="info_level"                type="integer">0</variable>
117     <variable id="using_server"              type="boolean">false</variable>
118     <variable id="using_oasis"               type="boolean">false</variable>
119     <variable id="oasis_codes_id"            type="string" >oceanx</variable>
120   
121      </variable_definition>
122               
123  </context>
124 
125</simulation>
Note: See TracBrowser for help on using the repository browser.