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.xml in branches/2016/dev_r6409_SIMPLIF_2_usrdef/NEMOGCM/CONFIG/LOCK_EXCHANGE/EXP00 – NEMO

source: branches/2016/dev_r6409_SIMPLIF_2_usrdef/NEMOGCM/CONFIG/LOCK_EXCHANGE/EXP00/iodef.xml @ 6916

Last change on this file since 6916 was 6916, checked in by flavoni, 8 years ago

#1692 and ROBUST-3 : Update and some cleaning

File size: 5.4 KB
Line 
1<?xml version="1.0"?>
2<simulation> 
3
4 <context id="nemo" time_origin="1950-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="10d" min_digits="4">
24      <file_group id="30mi" output_freq="30mi"  output_level="10" enabled=".TRUE." >  <!-- 5d files --> 
25 
26   <file id="file1" name_suffix="_grid_T" description="ocean T grid variables" >
27     <field field_ref="e3t"          name="e3t_inst"     long_name="instantaneous T-cell thickness"                operation="instant" />
28     <field field_ref="toce"         name="thetao_inst"  long_name="instantaneous sea water potential temperature" operation="instant" /> 
29     <field field_ref="ssh"          name="ssh_inst"     long_name="instantaneous sea surface height above geoid"  operation="instant" />
30   </file>
31
32   <file id="file3" name_suffix="_grid_U" description="ocean U grid variables" >
33     <field field_ref="e3u"          name="e3u_inst"     long_name="instantaneous U-cell thickness"        operation="instant" />
34     <field field_ref="uoce"         name="uo_inst"      long_name="instantaneous sea water x velocity"    operation="instant" />
35   </file>
36   
37   <file id="file4" name_suffix="_grid_V" description="ocean V grid variables" >
38     <field field_ref="e3v"          name="e3v_inst"     long_name="instantaneous V-cell thickness"        operation="instant" />
39     <field field_ref="voce"         name="vo_inst"      long_name="instantaneous sea water y velocity"    operation="instant" />
40   </file>
41   
42   <file id="file5" name_suffix="_grid_W" description="ocean W grid variables" >
43     <field field_ref="e3w"          name="e3w_inst"     long_name="instantaneous W-cell thickness"        operation="instant" />
44     <field field_ref="woce"         name="wo_inst"      long_name="instantaneous ocean vertical velocity" operation="instant" />
45   </file>
46
47      </file_group>
48
49   </file_definition>
50   
51    <!--
52============================================================================================================
53= grid definition = = DO NOT CHANGE =
54============================================================================================================
55    -->
56   
57   <axis_definition> 
58      <axis id="deptht"  long_name="Vertical T levels"  unit="m" positive="down" />
59      <axis id="depthu"  long_name="Vertical U levels"  unit="m" positive="down" />
60      <axis id="depthv"  long_name="Vertical V levels"  unit="m" positive="down" />
61      <axis id="depthw"  long_name="Vertical W levels"  unit="m" positive="down" />
62      <axis id="nfloat"  long_name="Float number"       unit="1"                 />
63      <axis id="icbcla"  long_name="Iceberg class"      unit="1"                 />
64      <axis id="ncatice" long_name="Ice category"       unit="1"                 />
65      <axis id="iax_20C" long_name="20 degC isotherm"   unit="degC"              />
66      <axis id="iax_28C" long_name="28 degC isotherm"   unit="degC"              />
67   </axis_definition> 
68   
69   <domain_definition src="./domain_def.xml"/>
70   
71   <grid_definition>   
72     <grid id="grid_T_2D" domain_ref="grid_T"/>
73     <grid id="grid_T_3D" domain_ref="grid_T" axis_ref="deptht"/>
74     <grid id="grid_U_2D" domain_ref="grid_U"/>
75     <grid id="grid_U_3D" domain_ref="grid_U" axis_ref="depthu"/>
76     <grid id="grid_V_2D" domain_ref="grid_V"/>
77     <grid id="grid_V_3D" domain_ref="grid_V" axis_ref="depthv"/>
78     <grid id="grid_W_2D" domain_ref="grid_W"/>
79     <grid id="grid_W_3D" domain_ref="grid_W" axis_ref="depthw"/>
80     <grid id="gznl_T_2D" domain_ref="gznl"/>
81     <grid id="gznl_T_3D" domain_ref="gznl" axis_ref="deptht"/>
82     <grid id="gznl_W_3D" domain_ref="gznl" axis_ref="depthw"/>
83    </grid_definition>   
84  </context>
85 
86
87  <context id="xios">
88
89      <variable_definition>
90   
91     <!--
92        We must have buffer_size > jpi*jpj*jpk*8 (with jpi and jpj the subdomain size)
93-->
94     <variable id="buffer_size"               type="integer">50000000</variable>
95     <variable id="buffer_server_factor_size" type="integer">2</variable>
96     <variable id="info_level"                type="integer">0</variable>
97     <variable id="using_server"              type="boolean">false</variable>
98     <variable id="using_oasis"               type="boolean">false</variable>
99     <variable id="oasis_codes_id"            type="string" >oceanx</variable>
100   
101      </variable_definition>
102               
103  </context>
104 
105</simulation>
Note: See TracBrowser for help on using the repository browser.