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/2013/dev_LOCEAN_2013/NEMOGCM/CONFIG/ORCA2_LIM/EXP00 – NEMO

source: branches/2013/dev_LOCEAN_2013/NEMOGCM/CONFIG/ORCA2_LIM/EXP00/iodef_demo.xml @ 4152

Last change on this file since 4152 was 4148, checked in by cetlod, 11 years ago

merge in trunk changes between r3853 and r3940 and commit the changes, see ticket #1169

  • Property svn:mime-type set to application/xml
File size: 5.3 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"/> 
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_group>
56   </file>
57   
58   <!-- global file with different operations on data   -->
59   <file id="file3" >
60     <field field_ref="toce"   default_value="-10" />    <!-- redefine the missing value -->
61     <field field_ref="sst"    name="sstmooring1" domain_ref="0n180wT"  />   <!-- include a mooring -->
62     <field field_ref="sst"    name="sst_1d_ave"  />                         <!-- mean -->
63     <field field_ref="sst"    name="sst_1d_inst" operation="instant" />     <!-- instant value -->
64     <field field_ref="sst"    name="sst_1d_max"  operation="maximum" />     <!-- max -->
65     <field field_ref="suoce"  />   <!-- include a U-grid variable in the list -->
66   </file>
67   
68      </file_group>
69     
70    </file_definition>
71   
72    <!--
73============================================================================================================
74= grid definition = = DO NOT CHANGE =
75============================================================================================================
76    -->
77   
78   <axis_definition> 
79     <axis_group id="deptht" long_name="Vertical T levels" unit="m" positive="down" >
80       <axis id="deptht" />
81       <axis id="deptht_myzoom" zoom_begin="1" zoom_end="10" />
82     </axis_group>
83      <axis id="depthu" long_name="Vertical U levels" unit="m" positive="down" />
84      <axis id="depthv" long_name="Vertical V levels" unit="m" positive="down" />
85      <axis id="depthw" long_name="Vertical W levels" unit="m" positive="down" />
86      <axis id="nfloat" long_name="Float number"      unit="-"  />
87   </axis_definition> 
88   
89   <domain_definition src="./domain_def.xml"/>
90   
91   <grid_definition>   
92     <grid id="grid_T_2D" domain_ref="grid_T"/>
93     <grid id="grid_T_3D" domain_ref="grid_T" axis_ref="deptht"/>
94     <grid id="grid_U_2D" domain_ref="grid_U"/>
95     <grid id="grid_U_3D" domain_ref="grid_U" axis_ref="depthu"/>
96     <grid id="grid_V_2D" domain_ref="grid_V"/>
97     <grid id="grid_V_3D" domain_ref="grid_V" axis_ref="depthv"/>
98     <grid id="grid_W_2D" domain_ref="grid_W"/>
99     <grid id="grid_W_3D" domain_ref="grid_W" axis_ref="depthw"/>
100    </grid_definition>   
101
102  </context>
103 
104
105  <context id="xios">
106
107      <variable_definition>
108   
109     <!--
110        We must have buffer_size > jpi*jpj*jpk*8*3 (with jpi and jpj the subdomain size)
111-->
112     <variable id="buffer_size"               type="integer">25000000</variable>
113     <variable id="buffer_server_factor_size" type="integer">2</variable>
114     <variable id="info_level"                type="integer">0</variable>
115     <variable id="using_server"              type="boolean">false</variable>
116     <variable id="using_oasis"               type="boolean">false</variable>
117     <variable id="oasis_codes_id"            type="string" >oceanx</variable>
118   
119      </variable_definition>
120               
121  </context>
122 
123</simulation>
Note: See TracBrowser for help on using the repository browser.