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/2012/dev_MERGE_2012/NEMOGCM/CONFIG/ORCA2_LIM/EXP00 – NEMO

source: branches/2012/dev_MERGE_2012/NEMOGCM/CONFIG/ORCA2_LIM/EXP00/iodef_demo.xml @ 3771

Last change on this file since 3771 was 3771, checked in by smasson, 11 years ago

dev_MERGE_2012: activate ln_mskland with XIOS, see #1047

  • Property svn:mime-type set to application/xml
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" 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="1h_grid_T" name="auto" 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   <file_group id="1d_grid_T" name="auto" description="ocean T grid variables" >
36
37     <!-- example of "hand made" zoom  -->
38     <file id="blabla_1" name_suffix="_myzoom" >
39       <!-- group of variables sharing the same zoom. see zoom definition in domain_def.xml -->
40       <field_group id="blabla" domain_ref="myzoom" >   
41         <field field_ref="toce" />
42         <field field_ref="soce" />
43       </field_group>
44     </file>
45
46     <!-- mooring: automatic definition of the file name suffix based on id="0n180wT"  -->
47     <!-- include a group of variables. see field_def.xml for mooring variables definition  -->
48     <file id="0n180wT" name_suffix="auto" >
49         <field_group group_ref="mooring"/> 
50     </file>
51
52     <!-- Equatorial section: automatic definition of the file name suffix based on id="EqT" -->
53     <!-- Zoom over vertical axis. def of axis_ref in the axis_definition bellow -->
54     <file id="EqT" name_suffix="auto" >
55       <field_group id="EqT" domain_ref="EqT" >
56         <field field_ref="toce" name="votemper" axis_ref="deptht_zoom"  />
57       </field_group>
58     </file>
59
60     <!-- global file with different operations on data   -->
61     <file id="blabla_2" >
62       <field field_ref="toce"   default_value="-10" />    <!-- redefine the missing value -->
63       <field field_ref="sst"    name="sstmooring1" domain_ref="0n180wT"  />   <!-- include a mooring -->
64       <field field_ref="sst"    name="sst_1d_ave"  />                         <!-- mean -->
65       <field field_ref="sst"    name="sst_1d_inst" operation="instant" />     <!-- instant value -->
66       <field field_ref="sst"    name="sst_1d_max"  operation="maximum" />     <!-- max -->
67       <field field_ref="suoce"  />   <!-- include a U-grid variable in the list -->
68     </file>
69
70   </file_group>
71      </file_group>
72
73   </file_definition>
74   
75    <!--
76============================================================================================================
77= grid definition = = DO NOT CHANGE =
78============================================================================================================
79    -->
80   
81   <axis_definition> 
82     <axis_group id="deptht" long_name="Vertical T levels" unit="m" positive="down" >
83       <axis id="deptht" />
84       <axis id="deptht_zoom" zoom_begin="1" zoom_end="10" />
85     </axis_group>
86      <axis id="depthu" long_name="Vertical U levels" unit="m" positive="down" />
87      <axis id="depthv" long_name="Vertical V levels" unit="m" positive="down" />
88      <axis id="depthw" long_name="Vertical W levels" unit="m" positive="down" />
89      <axis id="nfloat" long_name="Float number"      unit="-"  />
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.