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 NEMO/branches/2019/ENHANCE-03_domcfg – NEMO

source: NEMO/branches/2019/ENHANCE-03_domcfg/iodef.xml @ 11633

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

merge simplif-2 branches (TOOLS and NEMO); update DOMAINcfg TOOL: create domain_cfg.nc files to be used in new version of NEMO, SIMPLIF-2 branch

File size: 4.0 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   
25      <file_group id="1ts" output_freq="1ts"  output_level="10" enabled=".TRUE."/> <!-- 1 time step files -->
26      <file_group id="5d" output_freq="5d"  output_level="10" enabled=".TRUE." />  <!-- 5d files --> 
27
28   </file_definition>
29   
30    <!--
31============================================================================================================
32= grid definition = = DO NOT CHANGE =
33============================================================================================================
34    -->
35   
36   <axis_definition> 
37      <axis id="deptht"  long_name="Vertical T levels"  unit="m" positive="down" />
38      <axis id="depthu"  long_name="Vertical U levels"  unit="m" positive="down" />
39      <axis id="depthv"  long_name="Vertical V levels"  unit="m" positive="down" />
40      <axis id="depthw"  long_name="Vertical W levels"  unit="m" positive="down" />
41      <axis id="nfloat"  long_name="Float number"       unit="1"                 />
42      <axis id="icbcla"  long_name="Iceberg class"      unit="1"                 />
43      <axis id="ncatice" long_name="Ice category"       unit="1"                 />
44      <axis id="iax_20C" long_name="20 degC isotherm"   unit="degC"              />
45      <axis id="iax_28C" long_name="28 degC isotherm"   unit="degC"              />
46   </axis_definition> 
47   
48   <domain_definition src="./domain_def.xml"/>
49   
50   <grid_definition>   
51     <grid id="grid_T_2D" domain_ref="grid_T"/>
52     <grid id="grid_T_3D" domain_ref="grid_T" axis_ref="deptht"/>
53     <grid id="grid_U_2D" domain_ref="grid_U"/>
54     <grid id="grid_U_3D" domain_ref="grid_U" axis_ref="depthu"/>
55     <grid id="grid_V_2D" domain_ref="grid_V"/>
56     <grid id="grid_V_3D" domain_ref="grid_V" axis_ref="depthv"/>
57     <grid id="grid_W_2D" domain_ref="grid_W"/>
58     <grid id="grid_W_3D" domain_ref="grid_W" axis_ref="depthw"/>
59     <grid id="gznl_T_2D" domain_ref="gznl"/>
60     <grid id="gznl_T_3D" domain_ref="gznl" axis_ref="deptht"/>
61     <grid id="gznl_W_3D" domain_ref="gznl" axis_ref="depthw"/>
62    </grid_definition>   
63  </context>
64 
65
66  <context id="xios">
67
68      <variable_definition>
69   
70     <!--
71        We must have buffer_size > jpi*jpj*jpk*8 (with jpi and jpj the subdomain size)
72-->
73     <variable id="buffer_size"               type="integer">50000000</variable>
74     <variable id="buffer_server_factor_size" type="integer">2</variable>
75     <variable id="info_level"                type="integer">0</variable>
76     <variable id="using_server"              type="boolean">false</variable>
77     <variable id="using_oasis"               type="boolean">false</variable>
78     <variable id="oasis_codes_id"            type="string" >oceanx</variable>
79   
80      </variable_definition>
81               
82  </context>
83 
84</simulation>
Note: See TracBrowser for help on using the repository browser.