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.
Chap_DIA.tex in branches/2015/nemo_v3_6_STABLE/DOC/TexFiles/Chapters – NEMO

source: branches/2015/nemo_v3_6_STABLE/DOC/TexFiles/Chapters/Chap_DIA.tex @ 6992

Last change on this file since 6992 was 6992, checked in by nicolasmartin, 8 years ago

Global reorganisation of DOC directory to ensure the export of NEMO Reference Manual both in PDF & HTML

  • Move 'Figures' and 'Namelists' from ./TexFiles? to the root, create 'Styles' directory in ./TexFiles? with corresponding files and generate EPS version of all figures
  • Fix LaTex? typos, add the possibility to compile each chapter separately with 'subfiles' package and clean the main LaTeX file by creating 'Preamble.tex' & 'Top_Matter.tex' in ./TexFiles?
  • Provide LaTeX2HTML.sh script for producing HTML output (LaTeX2HTML tool needed with patch)
  • Remove PDF files from versionned files
File size: 77.5 KB
Line 
1%\documentclass[NEMO_book]{subfiles}
2%\begin{document}
3% ================================================================
4% Chapter I/O & Diagnostics
5% ================================================================
6\chapter{Output and Diagnostics (IOM, DIA, TRD, FLO)}
7\label{DIA}
8\minitoc
9
10\newpage
11$\ $\newline    % force a new line
12
13% ================================================================
14%       Old Model Output
15% ================================================================
16\section{Old Model Output (default or \key{dimgout})}
17\label{DIA_io_old}
18
19The model outputs are of three types: the restart file, the output listing,
20and the diagnostic output file(s). The restart file is used internally by the code when
21the user wants to start the model with initial conditions defined by a
22previous simulation. It contains all the information that is necessary in
23order for there to be no changes in the model results (even at the computer
24precision) between a run performed with several restarts and the same run
25performed in one step. It should be noted that this requires that the restart file
26contain two consecutive time steps for all the prognostic variables, and
27that it is saved in the same binary format as the one used by the computer
28that is to read it (in particular, 32 bits binary IEEE format must not be used for
29this file).
30
31The output listing and file(s) are predefined but should be checked
32and eventually adapted to the user's needs. The output listing is stored in
33the $ocean.output$ file. The information is printed from within the code on the
34logical unit $numout$. To locate these prints, use the UNIX command
35"\textit{grep -i numout}" in the source code directory.
36
37By default, diagnostic output files are written in NetCDF format but an IEEE binary output format, called DIMG, can be choosen by defining \key{dimgout}.
38
39Since version 3.2, when defining \key{iomput}, an I/O server has been added which provides more flexibility in the choice of the fields to be written as well as how the writing work is distributed over the processors in massively parallel computing. The complete description of the use of this I/O server is presented in the next section.
40
41By default, if neither \key{iomput} nor \key{dimgout} are defined, NEMO produces NetCDF with the old IOIPSL library which has been kept for compatibility and its easy installation. However, the IOIPSL library is quite inefficient on parallel machines and, since version 3.2, many diagnostic options have been added presuming the use of \key{iomput}. The usefulness of the default IOIPSL-based option is expected to reduce with each new release. If \key{iomput} is not defined, output files and content are defined in the \mdl{diawri} module and contain mean (or instantaneous if \key{diainstant} is defined) values over a regular period of nn\_write time-steps (namelist parameter).
42
43%\gmcomment{                    % start of gmcomment
44
45% ================================================================
46% Diagnostics
47% ================================================================
48\section{Standard model Output (IOM)}
49\label{DIA_iom}
50
51
52Since version 3.2, iomput is the NEMO output interface of choice.
53It has been designed to be simple to use, flexible and efficient.
54The two main purposes of iomput are:
55\begin{enumerate}
56\item The complete and flexible control of the output files through external XML files adapted by the user from standard templates.
57\item To achieve high performance and scalable output through the optional distribution of all diagnostic output related tasks to dedicated processes.
58\end{enumerate}
59The first functionality allows the user to specify, without code changes or recompilation, aspects of the diagnostic output stream, such as:
60\begin{itemize}
61\item The choice of output frequencies that can be different for each file (including real months and years).
62\item The choice of file contents; includes complete flexibility over which data are written in which files (the same data can be written in different files).
63\item The possibility to split output files at a choosen frequency.
64\item The possibility to extract a vertical or an horizontal subdomain.
65\item The choice of the temporal operation to perform, e.g.: average, accumulate, instantaneous, min, max and once.
66\item Control over metadata via a large XML "database" of possible output fields.
67\end{itemize}
68In addition, iomput allows the user to add the output of any new variable (scalar, 2D or 3D) in the code in a very easy way. All details of iomput functionalities are listed in the following subsections. Examples of the XML files that control the outputs can be found in:
69\begin{alltt}
70\begin{verbatim}
71  NEMOGCM/CONFIG/ORCA2_LIM/EXP00/iodef.xml
72  NEMOGCM/CONFIG/SHARED/field_def.xml
73  and
74  NEMOGCM/CONFIG/SHARED/domain_def.xml.
75\end{verbatim}
76\end{alltt}
77
78The second functionality targets output performance when running in parallel (\key{mpp\_mpi}). Iomput provides the possibility to specify N dedicated I/O processes (in addition to the NEMO processes) to collect and write the outputs. With an appropriate choice of N by the user, the bottleneck associated with the writing of the output files can be greatly reduced.
79
80In version 3.6, the iom\_put interface depends on an external code called \href{https://forge.ipsl.jussieu.fr/ioserver/browser/XIOS/branchs/xios-1.0}{XIOS-1.0} (use of revision 618 or higher is required). This new IO server can take advantage of the parallel I/O functionality of NetCDF4 to create a single output file and therefore to bypass the rebuilding phase. Note that writing in parallel into the same NetCDF files requires that your NetCDF4 library is linked to an HDF5 library that has been correctly compiled (i.e. with the configure option $--$enable-parallel). Note that the files created by iomput through XIOS are incompatible with NetCDF3. All post-processsing and visualization tools must therefore be compatible with NetCDF4 and not only NetCDF3.
81
82Even if not using the parallel I/O functionality of NetCDF4, using N dedicated I/O servers, where N is typically much less than the number of NEMO processors, will reduce the number of output files created. This can greatly reduce the post-processing burden usually associated with using large numbers of NEMO processors. Note that for smaller configurations, the rebuilding phase can be avoided, even without a parallel-enabled NetCDF4 library, simply by employing only one dedicated I/O server.
83
84\subsection{XIOS: the IO\_SERVER}
85
86\subsubsection{Attached or detached mode?}
87
88Iomput is based on \href{http://forge.ipsl.jussieu.fr/ioserver/wiki}{XIOS}, the io\_server developed by Yann Meurdesoif from IPSL. The behaviour of the io subsystem is controlled by settings in the external XML files listed above. Key settings in the iodef.xml file are {\tt using\_server} and the {\tt type} tag associated with each defined file. The {\tt using\_server} setting determines whether or not the server will be used in ''attached mode'' (as a library) [{\tt false}] or in ''detached mode'' (as an external executable on N additional, dedicated cpus) [{\tt true}]. The ''attached mode'' is simpler to use but much less efficient for massively parallel applications. The type of each file can be either ''multiple\_file'' or ''one\_file''.
89
90In attached mode and if the type of file is ''multiple\_file'', then each NEMO process will also act as an IO server and produce its own set of output files. Superficially, this emulates the standard behaviour in previous versions, However, the subdomain written out by each process does not correspond to the {\tt jpi x jpj x jpk} domain actually computed by the process (although it may if {\tt jpni=1}). Instead each process will have collected and written out a number of complete longitudinal strips. If the ''one\_file'' option is chosen then all processes will collect their longitudinal strips and write (in parallel) to a single output file.
91
92In detached mode and if the type of file is ''multiple\_file'', then each stand-alone XIOS process will collect data for a range of complete longitudinal strips and write to its own set of output files. If the ''one\_file'' option is chosen then all XIOS processes will collect their longitudinal strips and write (in parallel) to a single output file. Note running in detached mode requires launching a Multiple Process Multiple Data (MPMD) parallel job. The following subsection provides a typical example but the syntax will vary in different MPP environments.
93
94\subsubsection{Number of cpu used by XIOS in detached mode}
95
96The number of cores used by the XIOS is specified when launching the model. The number of cores dedicated to XIOS should be from ~1/10 to ~1/50 of the number or cores dedicated to NEMO. Some manufacturers suggest using O($\sqrt{N}$) dedicated IO processors for N processors but this is a general recommendation and not specific to NEMO. It is difficult to provide precise recommendations because the optimal choice will depend on the particular hardware properties of the target system (parallel filesystem performance, available memory, memory bandwidth etc.) and the volume and frequency of data to be created. Here is an example of 2 cpus for the io\_server and 62 cpu for nemo using mpirun:
97
98\texttt{ mpirun -np 62 ./nemo.exe : -np 2 ./xios\_server.exe }
99
100\subsubsection{Control of XIOS: the XIOS context in iodef.xml}
101
102As well as the {\tt using\_server} flag, other controls on the use of XIOS are set in the XIOS context in iodef.xml. See the XML basics section below for more details on XML syntax and rules.
103
104\begin{tabular}{|p{4cm}|p{6.0cm}|p{2.0cm}|}
105   \hline
106   variable name & 
107   description & 
108   example \\ 
109   \hline   
110   \hline
111   buffer\_size & 
112   buffer size used by XIOS to send data from NEMO to XIOS. Larger is more efficient. Note that needed/used buffer sizes are summarized at the end of the job & 
113   25000000 \\ 
114   \hline   
115   buffer\_server\_factor\_size & 
116   ratio between NEMO and XIOS buffer size. Should be 2. & 
117   2 \\ 
118   \hline
119   info\_level & 
120   verbosity level (0 to 100) & 
121   0 \\ 
122   \hline
123   using\_server & 
124   activate attached(false) or detached(true) mode & 
125   true \\ 
126   \hline
127   using\_oasis & 
128   XIOS is used with OASIS(true) or not (false) & 
129   false \\ 
130   \hline
131   oasis\_codes\_id & 
132   when using oasis, define the identifier of NEMO in the namcouple. Note that the identifier of XIOS is xios.x & 
133   oceanx \\ 
134   \hline   
135\end{tabular}
136
137
138\subsection{Practical issues}
139
140\subsubsection{Installation}
141
142As mentioned, XIOS is supported separately and must be downloaded and compiled before it can be used with NEMO. See the installation guide on the \href{http://forge.ipsl.jussieu.fr/ioserver/wiki}{XIOS} wiki for help and guidance. NEMO will need to link to the compiled XIOS library. The
143\href{http://www.nemo-ocean.eu/Using-NEMO/User-Guides/Basics/XIOS-IO-server-installation-and-use}{XIOS with NEMO} guide provides an example illustration of how this can be achieved.
144
145\subsubsection{Add your own outputs}
146
147It is very easy to add your own outputs with iomput. Many standard fields and diagnostics are already prepared (i.e., steps 1 to 3 below have been done) and simply need to be activated by including the required output in a file definition in iodef.xml (step 4). To add new output variables, all 4 of the following steps must be taken.
148\begin{description}
149\item[1.] in NEMO code, add a \\
150\texttt{      CALL iom\_put( 'identifier', array ) } \\
151where you want to output a 2D or 3D array.
152
153\item[2.] If necessary, add \\
154\texttt{   USE iom\ \ \ \ \ \ \ \ \ \ \ \ ! I/O manager library }  \\
155to the list of used modules in the upper part of your module.
156
157\item[3.] in the field\_def.xml file, add the definition of your variable using the same identifier you used in the f90 code (see subsequent sections for a details of the XML syntax and rules). For example:
158\vspace{-20pt}
159\begin{alltt}  {{\scriptsize
160\begin{verbatim}
161   <field_definition>
162      <!-- T grid -->
163
164     <field_group id="grid_T" grid_ref="grid_T_3D">
165      ...
166      <field id="identifier" long_name="blabla" ... />   
167      ...
168   </field_definition>
169\end{verbatim}
170}}\end{alltt} 
171Note your definition must be added to the field\_group whose reference grid is consistent with the size of the array passed to iomput. The grid\_ref attribute refers to definitions set in iodef.xml which, in turn, reference grids and axes either defined in the code (iom\_set\_domain\_attr and iom\_set\_axis\_attr in iom.F90) or defined in the domain\_def.xml file. E.g.:
172\vspace{-20pt}
173\begin{alltt}  {{\scriptsize
174\begin{verbatim}
175     <grid id="grid_T_3D" domain_ref="grid_T" axis_ref="deptht"/>
176\end{verbatim}
177}}\end{alltt} 
178Note, if your array is computed within the surface module each nn\_fsbc time\_step,
179add the field definition within the field\_group defined with the id ''SBC'': $<$field\_group id=''SBC''...$>$ which has been defined with the correct frequency of operations (iom\_set\_field\_attr in iom.F90)
180
181\item[4.] add your field in one of the output files defined in iodef.xml (again see subsequent sections for syntax and rules)   \\
182\vspace{-20pt}
183\begin{alltt}  {{\scriptsize
184\begin{verbatim}
185   <file id="file1" .../>   
186      ...
187      <field field_ref="identifier" />   
188      ...
189   </file>   
190\end{verbatim}
191}}\end{alltt} 
192
193\end{description}
194\subsection{XML fundamentals}
195
196\subsubsection{ XML basic rules}
197
198XML tags begin with the less-than character ("$<$") and end with the greater-than character (''$>$'').
199You use tags to mark the start and end of elements, which are the logical units of information
200in an XML document. In addition to marking the beginning of an element, XML start tags also
201provide a place to specify attributes. An attribute specifies a single property for an element,
202using a name/value pair, for example: $<$a b="x" c="y" b="z"$>$ ... $<$/a$>$.
203See \href{http://www.xmlnews.org/docs/xml-basics.html}{here} for more details.
204
205\subsubsection{Structure of the xml file used in NEMO}
206
207The XML file used in XIOS is structured by 7 families of tags: context, axis, domain, grid, field, file and variable. Each tag family has hierarchy of three flavors (except for context):
208\\
209\begin{tabular}{|p{3.0cm}|p{4.5cm}|p{4.5cm}|}
210   \hline
211   flavor &
212   description &
213   example \\
214   \hline
215   \hline
216   root &
217   declaration of the root element that can contain element groups or elements &
218   {\scriptsize \verb? < file_definition ... >?} \\
219   \hline
220   group &
221   declaration of a group element that can contain element groups or elements &
222   {\scriptsize \verb? < file_group ... >?} \\
223   \hline
224   element &
225   declaration of an element that can contain elements &
226   {\scriptsize \verb? < file ... >?} \\
227   \hline
228\end{tabular}
229\\
230
231Each element may have several attributes. Some attributes are mandatory, other are optional but have a default value and other are are completely optional. Id is a special attribute used to identify an element or a group of elements. It must be unique for a kind of element. It is optional, but no reference to the corresponding element can be done if it is not defined.
232
233The XML file is split into context tags that are used to isolate IO definition from different codes or different parts of a code. No interference is possible between 2 different contexts. Each context has its own calendar and an associated timestep. In NEMO, we used the following contexts (that can be defined in any order):\\
234\\
235\begin{tabular}{|p{3.0cm}|p{4.5cm}|p{4.5cm}|}
236   \hline
237   context &
238   description &
239   example \\
240   \hline
241   \hline
242   context xios &
243   context containing information for XIOS &
244   {\scriptsize \verb? <context id="xios" ...  ?} \\
245   \hline
246   context nemo &
247   context containing IO information for NEMO (mother grid when using AGRIF) &
248   {\scriptsize \verb? <context id="nemo" ... ?} \\
249   \hline
250   context 1\_nemo &
251   context containing IO information for NEMO child grid 1 (when using AGRIF) &
252   {\scriptsize \verb? <context id="1_nemo" ...  ?} \\
253   \hline
254   context n\_nemo &
255   context containing IO information for NEMO child grid n (when using AGRIF) &
256   {\scriptsize \verb? <context id="n_nemo" ...  ?} \\
257   \hline
258\end{tabular}
259\\
260
261\noindent The xios context contains only 1 tag:
262\\
263\begin{tabular}{|p{3.0cm}|p{4.5cm}|p{4.5cm}|}
264   \hline
265   context tag &
266   description &
267   example \\
268   \hline
269   \hline
270   variable\_definition &
271   define variables needed by XIOS. This can be seen as a kind of namelist for XIOS. &
272   {\scriptsize \verb? <variable_definition ... ?} \\
273   \hline
274\end{tabular}
275\\
276
277\noindent Each context tag related to NEMO (mother or child grids) is divided into 5 parts (that can be defined in any order):\\
278\\
279\begin{tabular}{|p{3.0cm}|p{4.5cm}|p{4.5cm}|}
280   \hline
281   context tag &
282   description &
283   example \\
284   \hline
285   \hline
286   field\_definition &
287   define all variables that can potentially be outputted &
288   {\scriptsize \verb? <field_definition ... ?} \\
289   \hline
290   file\_definition &
291   define the netcdf files to be created and the variables they will contain &
292   {\scriptsize \verb? <file_definition ... ?} \\
293   \hline
294   axis\_definition &
295   define vertical axis &
296   {\scriptsize \verb? <axis_definition ... ?} \\
297   \hline
298   domain\_definition &
299   define the horizontal grids &
300   {\scriptsize \verb? <domain_definition ... ?} \\
301   \hline
302   grid\_definition &
303   define the 2D and 3D grids (association of an axis and a domain) &
304   {\scriptsize \verb? <grid_definition ... ?} \\
305   \hline
306\end{tabular}
307\\
308
309\subsubsection{Nesting XML files}
310
311The XML file can be split in different parts to improve its readability and facilitate its use. The inclusion of XML files into the main XML file can be done through the attribute src: \\
312{\scriptsize \verb? <context src="./nemo_def.xml" /> ?}\\
313 
314\noindent In NEMO, by default, the field and domain definition is done in 2 separate files:
315{\scriptsize \tt
316\begin{verbatim}
317NEMOGCM/CONFIG/SHARED/field_def.xml
318and
319NEMOGCM/CONFIG/SHARED/domain_def.xml
320\end{verbatim}
321}
322\noindent that are included in the main iodef.xml file through the following commands: \\
323{\scriptsize \verb? <field_definition src="./field_def.xml" /> ? \\
324\verb? <domain_definition src="./domain_def.xml" /> ? }
325
326
327\subsubsection{Use of inheritance}
328
329XML extensively uses the concept of inheritance. XML has a tree based structure with a parent-child oriented relation: all children inherit attributes from parent, but an attribute defined in a child replace the inherited attribute value. Note that the special attribute ''id'' is never inherited.  \\
330\\
331example 1: Direct inheritance.
332\vspace{-20pt}
333\begin{alltt}  {{\scriptsize   
334\begin{verbatim}
335   <field_definition operation="average" >
336     <field id="sst"                    />   <!-- averaged      sst -->
337     <field id="sss" operation="instant"/>   <!-- instantaneous sss -->
338   </field_definition>
339\end{verbatim}
340}}\end{alltt} 
341
342The field ''sst'' which is part (or a child) of the field\_definition will inherit the value ''average''
343of the attribute ''operation'' from its parent. Note that a child can overwrite
344the attribute definition inherited from its parents. In the example above, the field ''sss'' will
345for example output instantaneous values instead of average values. \\
346\\
347example 2: Inheritance by reference.
348\vspace{-20pt}
349\begin{alltt}  {{\scriptsize
350\begin{verbatim}
351   <field_definition>
352     <field id="sst" long_name="sea surface temperature" />   
353     <field id="sss" long_name="sea surface salinity"    /> 
354   </field_definition>     
355
356   <file_definition>
357     <file id="myfile" output_freq="1d" />   
358       <field field_ref="sst"                            />  <!-- default def -->
359       <field field_ref="sss" long_name="my description" />  <!-- overwrite   -->
360     </file>   
361   </file_definition>
362\end{verbatim}
363}}\end{alltt} 
364Inherit (and overwrite, if needed) the attributes of a tag you are refering to.
365
366\subsubsection{Use of Groups}
367
368Groups can be used for 2 purposes. Firstly, the group can be used to define common attributes to be shared by the elements of the group through inheritance. In the following example, we define a group of field that will share a common grid ''grid\_T\_2D''. Note that for the field ''toce'', we overwrite the grid definition inherited from the group by ''grid\_T\_3D''.
369\vspace{-20pt}
370\begin{alltt}  {{\scriptsize
371\begin{verbatim}
372   <field_group id="grid_T" grid_ref="grid_T_2D">
373    <field id="toce" long_name="temperature"             unit="degC" grid_ref="grid_T_3D"/>
374    <field id="sst"  long_name="sea surface temperature" unit="degC"                     />
375    <field id="sss"  long_name="sea surface salinity"    unit="psu"                      />
376    <field id="ssh"  long_name="sea surface height"      unit="m"                        />
377         ...
378\end{verbatim}
379}}\end{alltt} 
380
381Secondly, the group can be used to replace a list of elements. Several examples of groups of fields are proposed at the end of the file {\tt CONFIG/SHARED/field\_def.xml}. For example, a short list of the usual variables related to the U grid:
382\vspace{-20pt}
383\begin{alltt}  {{\scriptsize
384\begin{verbatim}
385   <field_group id="groupU" >
386    <field field_ref="uoce"  />
387    <field field_ref="suoce" />
388    <field field_ref="utau"  />
389   </field_group>
390\end{verbatim}
391}}\end{alltt} 
392that can be directly included in a file through the following syntax:
393\vspace{-20pt}
394\begin{alltt}  {{\scriptsize
395\begin{verbatim}
396   <file id="myfile_U" output_freq="1d" />   
397    <field_group group_ref="groupU"/> 
398    <field field_ref="uocetr_eff"  />  <!-- add another field -->
399   </file>   
400\end{verbatim}
401}}\end{alltt} 
402
403\subsection{Detailed functionalities }
404
405The file {\tt NEMOGCM/CONFIG/ORCA2\_LIM/iodef\_demo.xml} provides several examples of the use of the new functionalities offered by the XML interface of XIOS.
406
407\subsubsection{Define horizontal subdomains}
408Horizontal subdomains are defined through the attributs zoom\_ibegin, zoom\_jbegin, zoom\_ni, zoom\_nj of the tag family domain. It must therefore be done in the domain part of the XML file. For example, in {\tt CONFIG/SHARED/domain\_def.xml}, we provide the following example of a definition of a 5 by 5 box with the bottom left corner at point (10,10).
409\vspace{-20pt}
410\begin{alltt}  {{\scriptsize
411\begin{verbatim}
412   <domain_group id="grid_T">
413    <domain id="myzoom" zoom_ibegin="10" zoom_jbegin="10" zoom_ni="5" zoom_nj="5" />
414\end{verbatim}
415}}\end{alltt} 
416The use of this subdomain is done through the redefinition of the attribute domain\_ref of the tag family field. For example:
417\vspace{-20pt}
418\begin{alltt}  {{\scriptsize
419\begin{verbatim}
420   <file id="myfile_vzoom" output_freq="1d" >
421      <field field_ref="toce" domain_ref="myzoom"/>
422   </file>
423\end{verbatim}
424}}\end{alltt} 
425Moorings are seen as an extrem case corresponding to a 1 by 1 subdomain. The Equatorial section, the TAO, RAMA and PIRATA moorings are alredy registered in the code and can therefore be outputted without taking care of their (i,j) position in the grid. These predefined domains can be activated by the use of specific domain\_ref: ''EqT'', ''EqU'' or ''EqW'' for the equatorial sections and the mooring position for TAO, RAMA and PIRATA followed by ''T'' (for example: ''8s137eT'', ''1.5s80.5eT'' ...)
426\vspace{-20pt}
427\begin{alltt}  {{\scriptsize
428\begin{verbatim}
429   <file id="myfile_vzoom" output_freq="1d" >
430      <field field_ref="toce" domain_ref="0n180wT"/>
431   </file>
432\end{verbatim}
433}}\end{alltt} 
434Note that if the domain decomposition used in XIOS cuts the subdomain in several parts and if you use the ''multiple\_file'' type for your output files, you will endup with several files you will need to rebuild using unprovided tools (like ncpdq and ncrcat, \href{http://nco.sourceforge.net/nco.html#Concatenation}{see nco manual}). We are therefore advising to use the ''one\_file'' type in this case.
435
436\subsubsection{Define vertical zooms}
437Vertical zooms are defined through the attributs zoom\_begin and zoom\_end of the tag family axis. It must therefore be done in the axis part of the XML file. For example, in NEMOGCM/CONFIG/ORCA2\_LIM/iodef\_demo.xml, we provide the following example:
438\vspace{-20pt}
439\begin{alltt}  {{\scriptsize
440\begin{verbatim}
441   <axis_group id="deptht" long_name="Vertical T levels" unit="m" positive="down" >
442      <axis id="deptht" />
443      <axis id="deptht_myzoom" zoom_begin="1" zoom_end="10" />
444\end{verbatim}
445}}\end{alltt} 
446The use of this vertical zoom is done through the redefinition of the attribute axis\_ref of the tag family field. For example:
447\vspace{-20pt}
448\begin{alltt}  {{\scriptsize
449\begin{verbatim}
450   <file id="myfile_hzoom" output_freq="1d" >
451      <field field_ref="toce" axis_ref="deptht_myzoom"/>
452   </file>
453\end{verbatim}
454}}\end{alltt} 
455
456\subsubsection{Control of the output file names}
457
458The output file names are defined by the attributs ''name'' and ''name\_suffix'' of the tag family file. for example:
459\vspace{-20pt}
460\begin{alltt}  {{\scriptsize
461\begin{verbatim}
462   <file_group id="1d" output_freq="1d" name="myfile_1d" >
463      <file id="myfileA" name_suffix="_AAA" > <!-- will create file "myfile_1d_AAA"  -->
464         ...
465      </file>
466      <file id="myfileB" name_suffix="_BBB" > <!-- will create file "myfile_1d_BBB" -->
467         ...
468      </file>
469   </file_group>
470\end{verbatim}
471}}\end{alltt} 
472However it is often very convienent to define the file name with the name of the experiment, the output file frequency and the date of the beginning and the end of the simulation (which are informations stored either in the namelist or in the XML file). To do so, we added the following rule: if the id of the tag file is ''fileN''(where N = 1 to 999 on 1 to 3 digits) or one of the predefined sections or moorings (see next subsection), the following part of the name and the name\_suffix (that can be inherited) will be automatically replaced by:\\
473\\
474\begin{tabular}{|p{4cm}|p{8cm}|}
475   \hline
476   \centering placeholder string & automatically  replaced by \\
477   \hline
478   \hline
479   \centering @expname@ &
480   the experiment name (from cn\_exp in the namelist) \\
481   \hline
482   \centering @freq@ &
483   output frequency (from attribute output\_freq) \\
484   \hline
485   \centering @startdate@  &
486   starting date of the simulation (from nn\_date0 in the restart or the namelist). \verb?yyyymmdd? format \\
487   \hline
488   \centering @startdatefull@  & 
489   starting date of the simulation (from nn\_date0 in the restart or the namelist). \verb?yyyymmdd_hh:mm:ss? format \\
490   \hline
491   \centering @enddate@  &
492   ending date of the simulation (from nn\_date0 and nn\_itend in the namelist). \verb?yyyymmdd? format \\
493   \hline
494   \centering @enddatefull@  & 
495   ending date of the simulation (from nn\_date0 and nn\_itend in the namelist). \verb?yyyymmdd_hh:mm:ss? format \\
496   \hline
497\end{tabular}\\
498\\
499
500\noindent For example,
501{{\scriptsize
502\begin{verbatim}
503   <file id="myfile_hzoom" name="myfile_@expname@_@startdate@_freq@freq@" output_freq="1d" >
504\end{verbatim}
505}}
506\noindent with the namelist:
507{{\scriptsize
508\begin{verbatim}
509   cn_exp      =  "ORCA2"
510   nn_date0    =  19891231
511   ln_rstart   = .false.
512\end{verbatim}
513}}
514\noindent will give the following file name radical:
515{{\scriptsize
516\begin{verbatim}
517   myfile_ORCA2_19891231_freq1d
518\end{verbatim}
519}}
520
521\subsubsection{Other controls of the xml attributes from NEMO}
522
523The values of some attributes are defined by subroutine calls within NEMO (calls to iom\_set\_domain\_attr, iom\_set\_axis\_attr and iom\_set\_field\_attr in iom.F90). Any definition given in the xml file will be overwritten. By convention, these attributes are defined to ''auto'' (for string) or ''0000'' (for integer) in the xml file (but this is not necessary).
524
525Here is the list of these attributes:\\
526\\
527\begin{tabular}{|l|c|c|c|}
528   \hline
529 \multicolumn{2}{|c|}{tag ids affected by automatic           }  & name      & attribute value \\
530  \multicolumn{2}{|c|}{definition of some of their attributes }  & attribute  &        \\
531   \hline
532   \hline
533    \multicolumn{2}{|c|}{field\_definition} & freq\_op & \np{rn\_rdt} \\
534   \hline
535    \multicolumn{2}{|c|}{SBC}               & freq\_op & \np{rn\_rdt} $\times$ \np{nn\_fsbc}  \\
536   \hline
537    \multicolumn{2}{|c|}{ptrc\_T}           & freq\_op & \np{rn\_rdt} $\times$ \np{nn\_dttrc} \\
538   \hline
539    \multicolumn{2}{|c|}{diad\_T}           & freq\_op & \np{rn\_rdt} $\times$ \np{nn\_dttrc} \\
540   \hline
541    \multicolumn{2}{|c|}{EqT, EqU, EqW} & jbegin, ni,      & according to the grid    \\
542    \multicolumn{2}{|c|}{                         } & name\_suffix &                                      \\
543   \hline
544   \multicolumn{2}{|c|}{TAO, RAMA and PIRATA moorings} & zoom\_ibegin, zoom\_jbegin, & according to the grid    \\
545    \multicolumn{2}{|c|}{                                                       } & name\_suffix &                                      \\
546   \hline
547\end{tabular}
548
549\subsubsection{Advanced use of XIOS functionalities}
550
551\subsection{XML reference tables}
552\label{IOM_xmlref}
553
554(1) Simple computation: directly define the computation when refering to the variable in the file definition.
555
556\vspace{-20pt}
557\begin{alltt}  {{\scriptsize   
558\begin{verbatim}
559 <field field\_ref="sst"  name="tosK"  unit="degK" > sst + 273.15 </field>
560 <field field\_ref="taum" name="taum2" unit="N2/m4" long\_name="square of wind stress module" > taum * taum </field>
561 <field field\_ref="qt"   name="stupid\_check" > qt - qsr - qns </field>
562\end{verbatim}
563}}\end{alltt} 
564
565(2) Simple computation: define a new variable and use it in the file definition.
566
567in field\_definition:
568\vspace{-20pt}
569\begin{alltt}  {{\scriptsize   
570\begin{verbatim}
571 <field id="sst2" long\_name="square of sea surface temperature" unit="degC2" >  sst * sst </field >
572\end{verbatim}
573}}\end{alltt} 
574in file\_definition:
575\vspace{-20pt}
576\begin{alltt}  {{\scriptsize   
577\begin{verbatim}
578 <field field\_ref="sst2" > sst2 </field>
579\end{verbatim}
580}}\end{alltt} 
581Note that in this case, the following syntaxe $<$field field\_ref="sst2" /$>$ is not working as sst2 won't be evaluated.
582
583(3) Change of variable precision:
584
585\vspace{-20pt}
586\begin{alltt}  {{\scriptsize   
587\begin{verbatim}
588     <!-- force to keep real 8 -->
589 <field field\_ref="sst" name="tos\_r8" prec="8" />
590      <!-- integer 2  with add\_offset and scale\_factor attributes -->
591 <field field\_ref="sss" name="sos\_i2" prec="2" add\_offset="20." scale\_factor="1.e-3" />
592\end{verbatim}
593}}\end{alltt} 
594Note that, then the code is crashing, writting real4 variables forces a numerical convection from real8 to real4 which will create an internal error in NetCDF and will avoid the creation of the output files. Forcing double precision outputs with prec="8" (for example in the field\_definition) will avoid this problem.
595
596(4) add user defined attributes:
597
598\vspace{-20pt}
599\begin{alltt}  {{\scriptsize   
600\begin{verbatim}
601      <file\_group id="1d" output\_freq="1d" output\_level="10" enabled=".TRUE."> <!-- 1d files -->
602   <file id="file1" name\_suffix="\_grid\_T" description="ocean T grid variables" >
603     <field field\_ref="sst" name="tos" >
604       <variable id="my\_attribute1" type="string"  > blabla </variable>
605       <variable id="my\_attribute2" type="integer" > 3      </variable>
606       <variable id="my\_attribute3" type="float"   > 5.0    </variable>
607     </field>
608     <variable id="my\_global\_attribute" type="string" > blabla\_global </variable>
609       </file>
610     </file\_group>
611\end{verbatim}
612}}\end{alltt} 
613
614(5) use of the ``@'' function: example 1, weighted temporal average
615
616 - define a new variable in field\_definition
617\vspace{-20pt}
618\begin{alltt}  {{\scriptsize   
619\begin{verbatim}
620 <field id="toce\_e3t" long\_name="temperature * e3t" unit="degC*m" grid\_ref="grid\_T\_3D" > toce * e3t </field >
621\end{verbatim}
622}}\end{alltt}
623 - use it when defining your file. 
624\vspace{-20pt}
625\begin{alltt}  {{\scriptsize   
626\begin{verbatim}
627<file\_group id="5d" output\_freq="5d"  output\_level="10" enabled=".TRUE." >  <!-- 5d files --> 
628 <file id="file1" name\_suffix="\_grid\_T" description="ocean T grid variables" >
629  <field field\_ref="toce" operation="instant" freq\_op="5d" > @toce\_e3t / @e3t </field>
630 </file>
631</file\_group>
632\end{verbatim}
633}}\end{alltt}
634The freq\_op="5d" attribute is used to define the operation frequency of the ``@'' function: here 5 day. The temporal operation done by the ``@'' is the one defined in the field definition: here we use the default, average. So, in the above case, @toce\_e3t will do the 5-day mean of toce*e3t. Operation="instant" refers to the temporal operation to be performed on the field''@toce\_e3t / @e3t'': here the temporal average is alreday done by the ``@'' function so we just use instant to do the ratio of the 2 mean values. field\_ref="toce" means that attributes not explicitely defined, are inherited from toce field. Note that in this case, freq\_op must be equal to the file output\_freq.
635
636(6) use of the ``@'' function: example 2, monthly SSH standard deviation
637
638 - define a new variable in field\_definition
639\vspace{-20pt}
640\begin{alltt}  {{\scriptsize   
641\begin{verbatim}
642 <field id="ssh2" long\_name="square of sea surface temperature" unit="degC2" >  ssh * ssh </field >
643\end{verbatim}
644}}\end{alltt} 
645 - use it when defining your file. 
646\vspace{-20pt}
647\begin{alltt}  {{\scriptsize   
648\begin{verbatim}
649<file\_group id="1m" output\_freq="1m"  output\_level="10" enabled=".TRUE." >  <!-- 1m files --> 
650 <file id="file1" name\_suffix="\_grid\_T" description="ocean T grid variables" >
651  <field field\_ref="ssh" name="sshstd" long\_name="sea\_surface\_temperature\_standard\_deviation" operation="instant" freq\_op="1m" > sqrt( @ssh2 - @ssh * @ssh ) </field>
652 </file>
653</file\_group>
654\end{verbatim}
655}}\end{alltt}
656The freq\_op="1m" attribute is used to define the operation frequency of the ``@'' function: here 1 month. The temporal operation done by the ``@'' is the one defined in the field definition: here we use the default, average. So, in the above case, @ssh2 will do the monthly mean of ssh*ssh. Operation="instant" refers to the temporal operation to be performed on the field ''sqrt( @ssh2 - @ssh * @ssh )'': here the temporal average is alreday done by the ``@'' function so we just use instant. field\_ref="ssh" means that attributes not explicitely defined, are inherited from ssh field. Note that in this case, freq\_op must be equal to the file output\_freq.
657
658(7) use of the ``@'' function: example 3, monthly average of SST diurnal cycle
659
660 - define 2 new variables in field\_definition
661\vspace{-20pt}
662\begin{alltt}  {{\scriptsize   
663\begin{verbatim}
664 <field id="sstmax" field\_ref="sst" long\_name="max of sea surface temperature" operation="maximum" />
665 <field id="sstmin" field\_ref="sst" long\_name="min of sea surface temperature" operation="minimum" />
666\end{verbatim}
667}}\end{alltt} 
668 - use these 2 new variables when defining your file. 
669\vspace{-20pt}
670\begin{alltt}  {{\scriptsize   
671\begin{verbatim}
672<file\_group id="1m" output\_freq="1m"  output\_level="10" enabled=".TRUE." >  <!-- 1m files --> 
673 <file id="file1" name\_suffix="\_grid\_T" description="ocean T grid variables" >
674  <field field\_ref="sst" name="sstdcy" long\_name="amplitude of sst diurnal cycle" operation="average" freq\_op="1d" > @sstmax - @sstmin </field>
675 </file>
676</file\_group>
677\end{verbatim}
678}}\end{alltt}
679The freq\_op="1d" attribute is used to define the operation frequency of the ``@'' function: here 1 day. The temporal operation done by the ``@'' is the one defined in the field definition: here maximum for sstmax and minimum for sstmin. So, in the above case, @sstmax will do the daily max and @sstmin the daily min. Operation="average" refers to the temporal operation to be performed on the field ``@sstmax - @sstmin'': here monthly mean (of daily max - daily min of the sst). field\_ref="sst" means that attributes not explicitely defined, are inherited from sst field.
680
681
682
683\subsubsection{Tag list}
684
685\begin{longtable}{|p{2.2cm}|p{2.5cm}|p{3.5cm}|p{2.2cm}|p{1.6cm}|}
686   \hline
687   tag name & 
688   description & 
689   accepted attribute & 
690   child of &
691   parent of \endhead
692   \hline   
693   simulation & 
694   this tag is the root tag which encapsulates all the content of the xml file &
695   none &
696   none &
697   context \\
698   \hline   
699   context &
700   encapsulates parts of the xml file dedicated to different codes or different parts of a code &
701   id (''xios'', ''nemo'' or ''n\_nemo'' for the nth AGRIF zoom), src, time\_origin &
702   simulation &
703   all root tags: ... \_definition \\
704   \hline   
705   \hline   
706   field\_definition &
707   encapsulates the definition of all the fields that can potentially be outputted &
708   axis\_ref, default\_value, domain\_ref, enabled, grid\_ref, level, operation, prec, src &
709   context &
710   field or field\_group \\
711   \hline   
712   field\_group &
713   encapsulates a group of fields &
714   axis\_ref, default\_value, domain\_ref, enabled, group\_ref, grid\_ref, id, level, operation, prec, src &
715   field\_definition, field\_group, file &
716   field or field\_group \\
717   \hline   
718   field &
719   define a specific field &
720   axis\_ref, default\_value, domain\_ref, enabled, field\_ref, grid\_ref, id, level, long\_name, name, operation, prec, standard\_name, unit &
721   field\_definition, field\_group, file &
722   none \\
723   \hline   
724   \hline   
725   file\_definition & 
726   encapsulates the definition of all the files that will be outputted &
727   enabled, min\_digits, name, name\_suffix, output\_level, split\_freq\_format, split\_freq, sync\_freq, type, src &
728   context & 
729   file or file\_group \\
730   \hline   
731   file\_group & 
732   encapsulates a group of files that will be outputted &
733   enabled, description, id, min\_digits, name, name\_suffix, output\_freq, output\_level, split\_freq\_format, split\_freq, sync\_freq, type, src &
734   file\_definition, file\_group & 
735   file or file\_group \\
736   \hline   
737   file & 
738   define the contents of a file to be outputted &
739   enabled, description, id, min\_digits, name, name\_suffix, output\_freq, output\_level, split\_freq\_format, split\_freq, sync\_freq, type, src &
740   file\_definition, file\_group & 
741   field \\
742   \hline   
743   axis\_definition & 
744   define all the vertical axis potentially used by the variables &
745   src &
746   context & 
747   axis\_group, axis \\
748   \hline   
749   axis\_group & 
750   encapsulates a group of vertical axis &
751   id, lon\_name, positive, src, standard\_name, unit, zoom\_begin, zoom\_end, zoom\_size &
752   axis\_definition, axis\_group & 
753   axis\_group, axis \\
754   \hline   
755   axis & 
756   define a vertical axis &
757   id, lon\_name, positive, src, standard\_name, unit, zoom\_begin, zoom\_end, zoom\_size &
758   axis\_definition, axis\_group  & 
759   none \\
760   \hline   
761   \hline   
762   domain\_\-definition & 
763   define all the horizontal domains potentially used by the variables &
764   src &
765   context & 
766   domain\_\-group, domain \\
767   \hline   
768   domain\_group & 
769   encapsulates a group of horizontal domains &
770   id, lon\_name, src, zoom\_ibegin, zoom\_jbegin, zoom\_ni, zoom\_nj &
771   domain\_\-definition, domain\_group & 
772   domain\_\-group, domain \\
773   \hline   
774   domain & 
775   define an horizontal domain &
776   id, lon\_name, src, zoom\_ibegin, zoom\_jbegin, zoom\_ni, zoom\_nj &
777   domain\_\-definition, domain\_group & 
778   none \\
779   \hline   
780   \hline   
781   grid\_definition & 
782   define all the grid (association of a domain and/or an axis) potentially used by the variables &
783   src &
784   context & 
785   grid\_group, grid \\
786   \hline   
787   grid\_group & 
788   encapsulates a group of grids &
789   id, domain\_ref, axis\_ref &
790   grid\_definition, grid\_group & 
791   grid\_group, grid \\
792   \hline   
793   grid & 
794   define a grid &
795   id, domain\_ref, axis\_ref &
796   grid\_definition, grid\_group & 
797   none \\
798   \hline   
799\end{longtable}
800
801
802\subsubsection{Attributes list}
803
804\begin{longtable}{|p{2.2cm}|p{4cm}|p{3.8cm}|p{2cm}|}
805   \hline
806   attribute name & 
807   description & 
808   example & 
809   accepted by \endhead
810   \hline   
811   axis\_ref & 
812   refers to the id of a vertical axis & 
813   axis\_ref="deptht" & 
814   field, grid families \\ 
815   \hline   
816   enabled & 
817   switch on/off the output of a field or a file & 
818   enabled=".TRUE." & 
819   field, file families \\ 
820   \hline   
821   default\_value & 
822   missing\_value definition & 
823   default\_value="1.e20" & 
824   field family \\ 
825   \hline   
826   description & 
827   just for information, not used & 
828   description="ocean T grid variables" & 
829   all tags \\ 
830   \hline   
831   domain\_ref & 
832   refers to the id of a domain & 
833   domain\_ref="grid\_T" & 
834   field or grid families \\ 
835   \hline   
836   field\_ref & 
837   id of the field we want to add in a file & 
838   field\_ref="toce" & 
839   field \\ 
840   \hline   
841   grid\_ref & 
842   refers to the id of a grid & 
843   grid\_ref="grid\_T\_2D" & 
844   field family \\ 
845   \hline   
846   group\_ref & 
847   refer to a group of variables & 
848   group\_ref="mooring" & 
849   field\_group \\ 
850   \hline   
851   id & 
852   allow to identify a tag & 
853   id="nemo" &
854   accepted by all tags except simulation \\ 
855   \hline   
856   level & 
857   output priority of a field: 0 (high) to 10 (low)& 
858   level="1" & 
859   field family \\ 
860   \hline   
861   long\_name & 
862   define the long\_name attribute in the NetCDF file & 
863   long\_name="Vertical T levels" & 
864   field \\ 
865   \hline   
866   min\_digits & 
867   specify the minimum of digits used in the core number in the name of the NetCDF file & 
868   min\_digits="4" & 
869   file family \\ 
870   \hline   
871   name & 
872   name of a variable or a file. If the name of a file is undefined, its id is used as a name & 
873   name="tos" & 
874   field or file families \\ 
875   \hline   
876   name\_suffix & 
877   suffix to be inserted after the name and before the cpu number and the ''.nc'' termination of a file & 
878   name\_suffix="\_myzoom" & 
879   file family \\ 
880   \hline   
881   attribute name & 
882   description & 
883   example & 
884   accepted by \\ 
885   \hline   
886   \hline   
887   operation & 
888   type of temporal operation: average, accumulate, instantaneous, min, max and once & 
889   operation="average" & 
890   field family \\ 
891   \hline   
892   output\_freq & 
893   operation frequency. units can be ts (timestep), y, mo, d, h, mi, s. & 
894   output\_freq="1d12h" & 
895   field family \\ 
896   \hline   
897   output\_level & 
898   output priority of variables in a file: 0 (high) to 10 (low). All variables listed in the file with a level smaller or equal to output\_level will be output. Other variables won't be output even if they are listed in the file. & 
899   output\_level="10"& 
900   file family \\ 
901   \hline   
902   positive & 
903   convention used for the orientation of vertival axis (positive downward in \NEMO). & 
904   positive="down" & 
905   axis family \\ 
906   \hline   
907   prec & 
908   output precision: real 4 or real 8 & 
909   prec="4" & 
910   field family \\ 
911   \hline   
912   split\_freq & 
913   frequency at which to temporally split output files. Units can be ts (timestep), y, mo, d, h, mi, s. Useful for long runs to prevent over-sized output files.& 
914   split\_freq="1mo" & 
915   file family \\ 
916   \hline   
917   split\_freq\-\_format & 
918   date format used in the name of temporally split output files. Can be specified
919   using the following syntaxes: \%y, \%mo, \%d, \%h \%mi and \%s & 
920   split\_freq\_format= "\%y\%mo\%d" & 
921   file family \\ 
922   \hline   
923   src & 
924   allow to include a file & 
925   src="./field\_def.xml" & 
926   accepted by all tags except simulation \\ 
927   \hline   
928   standard\_name & 
929   define the standard\_name attribute in the NetCDF file & 
930   standard\_name= "Eastward\_Sea\_Ice\_Transport" & 
931   field \\ 
932   \hline   
933   sync\_freq & 
934   NetCDF file synchronization frequency (update of the time\_counter). units can be ts (timestep), y, mo, d, h, mi, s. & 
935   sync\_freq="10d" & 
936   file family \\ 
937   \hline   
938   attribute name & 
939   description & 
940   example & 
941   accepted by \\ 
942   \hline   
943   \hline   
944   time\_origin & 
945   specify the origin of the time counter & 
946   time\_origin="1900-01-01 00:00:00"& 
947   context \\ 
948   \hline   
949   type (1)& 
950   specify if the output files are to be split spatially (multiple\_file) or not (one\_file) & 
951   type="multiple\_file" & 
952   file familly \\ 
953   \hline   
954   type (2)& 
955   define the type of a variable tag & 
956   type="boolean" & 
957   variable \\ 
958   \hline   
959   unit & 
960   unit of a variable or the vertical axis & 
961   unit="m" & 
962   field and axis families \\ 
963   \hline   
964   zoom\_ibegin & 
965   starting point along x direction of the zoom. Automatically defined for TAO/RAMA/PIRATA moorings & 
966   zoom\_ibegin="1" & 
967   domain family \\ 
968   \hline   
969   zoom\_jbegin & 
970   starting point along y direction of the zoom. Automatically defined for TAO/RAMA/PIRATA moorings & 
971   zoom\_jbegin="1" & 
972   domain family \\ 
973   \hline   
974   zoom\_ni & 
975   zoom extent along x direction & 
976   zoom\_ni="1" & 
977   domain family \\ 
978   \hline   
979   zoom\_nj & 
980   zoom extent along y direction & 
981   zoom\_nj="1" & 
982   domain family \\ 
983   \hline   
984\end{longtable}
985
986\subsection{CF metadata standard compliance}
987
988Output from the XIOS-1.0 IO server is compliant with \href{http://cfconventions.org/Data/cf-conventions/cf-conventions-1.5/build/cf-conventions.html}{version 1.5} of the CF metadata standard. Therefore while a user may wish to add their own metadata to the output files (as demonstrated in example 4 of section \ref{IOM_xmlref}) the metadata should, for the most part, comply with the CF-1.5 standard.
989
990Some metadata that may significantly increase the file size (horizontal cell areas and vertices) are controlled by the namelist parameter \np{ln\_cfmeta} in the \ngn{namrun} namelist. This must be set to true if these metadata are to be included in the output files.
991
992
993% ================================================================
994%       NetCDF4 support
995% ================================================================
996\section{NetCDF4 Support (\key{netcdf4})}
997\label{DIA_iom}
998
999Since version 3.3, support for NetCDF4 chunking and (loss-less) compression has
1000been included.  These options build on the standard NetCDF output and allow
1001the user control over the size of the chunks via namelist settings. Chunking
1002and compression can lead to significant reductions in file sizes for a small
1003runtime overhead. For a fuller discussion on chunking and other performance
1004issues the reader is referred to the NetCDF4 documentation found
1005\href{http://www.unidata.ucar.edu/software/netcdf/docs/netcdf.html#Chunking}{here}.
1006
1007The new features are only available when the code has been linked with a
1008NetCDF4 library (version 4.1 onwards, recommended) which has been built
1009with HDF5 support (version 1.8.4 onwards, recommended). Datasets created
1010with chunking and compression are not backwards compatible with NetCDF3
1011"classic" format but most analysis codes can be relinked simply with the
1012new libraries and will then read both NetCDF3 and NetCDF4 files. NEMO
1013executables linked with NetCDF4 libraries can be made to produce NetCDF3
1014files by setting the \np{ln\_nc4zip} logical to false in the \textit{namnc4} 
1015namelist:
1016
1017%------------------------------------------namnc4----------------------------------------------------
1018\namdisplay{namnc4}
1019%-------------------------------------------------------------------------------------------------------------
1020
1021If \key{netcdf4} has not been defined, these namelist parameters are not read.
1022In this case, \np{ln\_nc4zip} is set false and dummy routines for a few
1023NetCDF4-specific functions are defined. These functions will not be used but
1024need to be included so that compilation is possible with NetCDF3 libraries.
1025
1026When using NetCDF4 libraries, \key{netcdf4} should be defined even if the
1027intention is to create only NetCDF3-compatible files. This is necessary to
1028avoid duplication between the dummy routines and the actual routines present
1029in the library. Most compilers will fail at compile time when faced with
1030such duplication. Thus when linking with NetCDF4 libraries the user must
1031define \key{netcdf4} and control the type of NetCDF file produced via the
1032namelist parameter.
1033
1034Chunking and compression is applied only to 4D fields and there is no
1035advantage in chunking across more than one time dimension since previously
1036written chunks would have to be read back and decompressed before being
1037added to. Therefore, user control over chunk sizes is provided only for the
1038three space dimensions. The user sets an approximate number of chunks along
1039each spatial axis. The actual size of the chunks will depend on global domain
1040size for mono-processors or, more likely, the local processor domain size for
1041distributed processing. The derived values are subject to practical minimum
1042values (to avoid wastefully small chunk sizes) and cannot be greater than the
1043domain size in any dimension. The algorithm used is:
1044
1045\vspace{-20pt}
1046\begin{alltt}  {{\scriptsize 
1047\begin{verbatim}
1048     ichunksz(1) = MIN( idomain_size,MAX( (idomain_size-1)/nn_nchunks_i + 1 ,16 ) )
1049     ichunksz(2) = MIN( jdomain_size,MAX( (jdomain_size-1)/nn_nchunks_j + 1 ,16 ) )
1050     ichunksz(3) = MIN( kdomain_size,MAX( (kdomain_size-1)/nn_nchunks_k + 1 , 1 ) )
1051     ichunksz(4) = 1
1052\end{verbatim}
1053}}\end{alltt} 
1054
1055\noindent As an example, setting:
1056\vspace{-20pt}
1057\begin{alltt}  {{\scriptsize
1058\begin{verbatim}
1059     nn_nchunks_i=4, nn_nchunks_j=4 and nn_nchunks_k=31
1060\end{verbatim}
1061}}\end{alltt} \vspace{-10pt}
1062
1063\noindent for a standard ORCA2\_LIM configuration gives chunksizes of {\small\tt 46x38x1}
1064respectively in the mono-processor case (i.e. global domain of {\small\tt 182x149x31}).
1065An illustration of the potential space savings that NetCDF4 chunking and compression
1066provides is given in table \ref{Tab_NC4} which compares the results of two short
1067runs of the ORCA2\_LIM reference configuration with a 4x2 mpi partitioning. Note
1068the variation in the compression ratio achieved which reflects chiefly the dry to wet
1069volume ratio of each processing region.
1070
1071%------------------------------------------TABLE----------------------------------------------------
1072\begin{table}  \begin{tabular}{lrrr}
1073Filename & NetCDF3 & NetCDF4 & Reduction\\
1074         &filesize & filesize & \% \\
1075         &(KB)     & (KB)     & \\
1076ORCA2\_restart\_0000.nc & 16420 & 8860 & 47\%\\
1077ORCA2\_restart\_0001.nc & 16064 & 11456 & 29\%\\
1078ORCA2\_restart\_0002.nc & 16064 & 9744 & 40\%\\
1079ORCA2\_restart\_0003.nc & 16420 & 9404 & 43\%\\
1080ORCA2\_restart\_0004.nc & 16200 & 5844 & 64\%\\
1081ORCA2\_restart\_0005.nc & 15848 & 8172 & 49\%\\
1082ORCA2\_restart\_0006.nc & 15848 & 8012 & 50\%\\
1083ORCA2\_restart\_0007.nc & 16200 & 5148 & 69\%\\
1084ORCA2\_2d\_grid\_T\_0000.nc & 2200 & 1504 & 32\%\\
1085ORCA2\_2d\_grid\_T\_0001.nc & 2200 & 1748 & 21\%\\
1086ORCA2\_2d\_grid\_T\_0002.nc & 2200 & 1592 & 28\%\\
1087ORCA2\_2d\_grid\_T\_0003.nc & 2200 & 1540 & 30\%\\
1088ORCA2\_2d\_grid\_T\_0004.nc & 2200 & 1204 & 46\%\\
1089ORCA2\_2d\_grid\_T\_0005.nc & 2200 & 1444 & 35\%\\
1090ORCA2\_2d\_grid\_T\_0006.nc & 2200 & 1428 & 36\%\\
1091ORCA2\_2d\_grid\_T\_0007.nc & 2200 & 1148 & 48\%\\
1092             ...            &  ... &  ... & ..  \\
1093ORCA2\_2d\_grid\_W\_0000.nc & 4416 & 2240 & 50\%\\
1094ORCA2\_2d\_grid\_W\_0001.nc & 4416 & 2924 & 34\%\\
1095ORCA2\_2d\_grid\_W\_0002.nc & 4416 & 2512 & 44\%\\
1096ORCA2\_2d\_grid\_W\_0003.nc & 4416 & 2368 & 47\%\\
1097ORCA2\_2d\_grid\_W\_0004.nc & 4416 & 1432 & 68\%\\
1098ORCA2\_2d\_grid\_W\_0005.nc & 4416 & 1972 & 56\%\\
1099ORCA2\_2d\_grid\_W\_0006.nc & 4416 & 2028 & 55\%\\
1100ORCA2\_2d\_grid\_W\_0007.nc & 4416 & 1368 & 70\%\\
1101\end{tabular}
1102\caption{   \label{Tab_NC4} 
1103Filesize comparison between NetCDF3 and NetCDF4 with chunking and compression}
1104\end{table}
1105%----------------------------------------------------------------------------------------------------
1106
1107When \key{iomput} is activated with \key{netcdf4} chunking and
1108compression parameters for fields produced via \np{iom\_put} calls are
1109set via an equivalent and identically named namelist to \textit{namnc4} 
1110in \np{xmlio\_server.def}. Typically this namelist serves the mean files
1111whilst the \ngn{ namnc4} in the main namelist file continues to serve the
1112restart files. This duplication is unfortunate but appropriate since, if
1113using io\_servers, the domain sizes of the individual files produced by the
1114io\_server processes may be different to those produced by the invidual
1115processing regions and different chunking choices may be desired.
1116 
1117
1118% -------------------------------------------------------------------------------------------------------------
1119%       Tracer/Dynamics Trends
1120% -------------------------------------------------------------------------------------------------------------
1121\section[Tracer/Dynamics Trends (TRD)]
1122                  {Tracer/Dynamics Trends  (\ngn{namtrd})}
1123\label{DIA_trd}
1124
1125%------------------------------------------namtrd----------------------------------------------------
1126\namdisplay{namtrd} 
1127%-------------------------------------------------------------------------------------------------------------
1128
1129Each trend of the dynamics and/or temperature and salinity time evolution equations
1130can be send to \mdl{trddyn} and/or \mdl{trdtra} modules (see TRD directory) just after their computation
1131($i.e.$ at the end of each $dyn\cdots.F90$ and/or $tra\cdots.F90$ routines).
1132This capability is controlled by options offered in \ngn{namtrd} namelist.
1133Note that the output are done with xIOS, and therefore the \key{IOM} is required.
1134
1135What is done depends on the \ngn{namtrd} logical set to \textit{true}:
1136\begin{description}
1137\item[\np{ln\_glo\_trd}] : at each \np{nn\_trd} time-step a check of the basin averaged properties
1138of the momentum and tracer equations is performed. This also includes a check of $T^2$, $S^2$,
1139$\tfrac{1}{2} (u^2+v2)$, and potential energy time evolution equations properties ;
1140\item[\np{ln\_dyn\_trd}] : each 3D trend of the evolution of the two momentum components is output ;
1141\item[\np{ln\_dyn\_mxl}] : each 3D trend of the evolution of the two momentum components averaged
1142                           over the mixed layer is output  ;
1143\item[\np{ln\_vor\_trd}] : a vertical summation of the moment tendencies is performed,
1144                           then the curl is computed to obtain the barotropic vorticity tendencies which are output ;
1145\item[\np{ln\_KE\_trd}]  : each 3D trend of the Kinetic Energy equation is output ;
1146\item[\np{ln\_tra\_trd}] : each 3D trend of the evolution of temperature and salinity is output ;
1147\item[\np{ln\_tra\_mxl}] : each 2D trend of the evolution of temperature and salinity averaged
1148                           over the mixed layer is output ;
1149\end{description}
1150
1151Note that the mixed layer tendency diagnostic can also be used on biogeochemical models
1152via the \key{trdtrc} and \key{trdmld\_trc} CPP keys.
1153
1154\textbf{Note that} in the current version (v3.6), many changes has been introduced but not fully tested.
1155In particular, options associated with \np{ln\_dyn\_mxl}, \np{ln\_vor\_trd}, and \np{ln\_tra\_mxl} 
1156are not working, and none of the option have been tested with variable volume ($i.e.$ \key{vvl} defined).
1157
1158
1159% -------------------------------------------------------------------------------------------------------------
1160%       On-line Floats trajectories
1161% -------------------------------------------------------------------------------------------------------------
1162\section{On-line Floats trajectories (FLO) (\key{floats})}
1163\label{FLO}
1164%--------------------------------------------namflo-------------------------------------------------------
1165\namdisplay{namflo} 
1166%--------------------------------------------------------------------------------------------------------------
1167
1168The on-line computation of floats advected either by the three dimensional velocity
1169field or constraint to remain at a given depth ($w = 0$ in the computation) have been
1170introduced in the system during the CLIPPER project. Options are defined by \ngn{namflo}
1171namelis variables. The algorithm used is based
1172either on the work of \cite{Blanke_Raynaud_JPO97} (default option), or on a $4^th$
1173Runge-Hutta algorithm (\np{ln\_flork4}=true). Note that the \cite{Blanke_Raynaud_JPO97} 
1174algorithm have the advantage of providing trajectories which are consistent with the
1175numeric of the code, so that the trajectories never intercept the bathymetry.
1176
1177\subsubsection{ Input data: initial coordinates }
1178
1179Initial coordinates can be given with Ariane Tools convention ( IJK coordinates ,(\np{ln\_ariane}=true) )
1180or with longitude and latitude.
1181
1182
1183In case of Ariane convention, input filename is \np{init\_float\_ariane}. Its format is:
1184
1185\texttt{ I J K nisobfl itrash itrash }
1186
1187\noindent with:
1188
1189 - I,J,K  : indexes of initial position
1190
1191 - nisobfl: 0 for an isobar float, 1 for a float following the w velocity 
1192
1193 - itrash : set to zero; it is a dummy variable to respect Ariane Tools convention
1194
1195 - itrash :set to zero; it is a dummy variable to respect Ariane Tools convention
1196
1197\noindent Example:\\
1198\noindent \texttt{ 100.00000  90.00000  -1.50000 1.00000   0.00000}\\
1199\texttt{ 102.00000  90.00000  -1.50000 1.00000   0.00000}\\
1200\texttt{ 104.00000  90.00000  -1.50000 1.00000   0.00000}\\
1201\texttt{ 106.00000  90.00000  -1.50000 1.00000   0.00000}\\
1202\texttt{ 108.00000  90.00000  -1.50000 1.00000   0.00000}\\
1203
1204
1205In the other case ( longitude and latitude ), input filename is init\_float. Its format is:
1206
1207\texttt{ Long Lat depth nisobfl ngrpfl itrash}
1208
1209\noindent with:
1210
1211 - Long, Lat, depth  : Longitude, latitude, depth
1212
1213 - nisobfl: 0 for an isobar float, 1 for a float following the w velocity
1214
1215 - ngrpfl : number to identify searcher group
1216
1217 - itrash :set to 1; it is a dummy variable.
1218
1219\noindent Example:
1220
1221\noindent\texttt{  20.0 0.0 0.0 0 1 1 }\\
1222\texttt{ -21.0 0.0 0.0 0 1 1 }\\
1223\texttt{ -22.0 0.0 0.0 0 1 1 }\\
1224\texttt{ -23.0 0.0 0.0 0 1 1 }\\
1225\texttt{ -24.0 0.0 0.0 0 1 1 }\\
1226
1227\np{jpnfl} is the total number of floats during the run.
1228When initial positions are read in a restart file ( \np{ln\_rstflo}= .TRUE. ),  \np{jpnflnewflo}
1229can be added in the initialization file.
1230
1231\subsubsection{ Output data }
1232
1233\np{nn\_writefl} is the frequency of writing in float output file and \np{nn\_stockfl} 
1234is the frequency of creation of the float restart file.
1235
1236Output data can be written in ascii files (\np{ln\_flo\_ascii} = .TRUE. ). In that case,
1237output filename is trajec\_float.
1238
1239Another possiblity of writing format is Netcdf (\np{ln\_flo\_ascii} = .FALSE. ). There are 2 possibilities:
1240
1241 - if (\key{iomput}) is used, outputs are selected in  iodef.xml. Here it is an example of specification
1242   to put in files description section:
1243
1244\vspace{-30pt}
1245\begin{alltt}  {{\scriptsize
1246\begin{verbatim}
1247
1248     <group id="1d\_grid\_T" name="auto" description="ocean T grid variables" >   }
1249       <file id="floats"  description="floats variables"> }\\
1250           <field ref="traj\_lon"   name="floats\_longitude"   freq\_op="86400" />}
1251           <field ref="traj\_lat"   name="floats\_latitude"    freq\_op="86400" />}
1252           <field ref="traj\_dep"   name="floats\_depth"       freq\_op="86400" />}
1253           <field ref="traj\_temp"  name="floats\_temperature" freq\_op="86400" />}
1254           <field ref="traj\_salt"  name="floats\_salinity"    freq\_op="86400" />}
1255           <field ref="traj\_dens"  name="floats\_density"     freq\_op="86400" />}
1256           <field ref="traj\_group" name="floats\_group"       freq\_op="86400" />}
1257       </file>}
1258  </group>}
1259
1260\end{verbatim}
1261}}\end{alltt}
1262
1263
1264 -  if (\key{iomput}) is not used, a file called trajec\_float.nc will be created by IOIPSL library.
1265
1266
1267
1268See also \href{http://stockage.univ-brest.fr/~grima/Ariane/}{here} the web site describing
1269the off-line use of this marvellous diagnostic tool.
1270
1271
1272% -------------------------------------------------------------------------------------------------------------
1273%       Harmonic analysis of tidal constituents
1274% -------------------------------------------------------------------------------------------------------------
1275\section{Harmonic analysis of tidal constituents (\key{diaharm}) }
1276\label{DIA_diag_harm}
1277
1278%------------------------------------------namdia_harm----------------------------------------------------
1279\namdisplay{namdia_harm}
1280%----------------------------------------------------------------------------------------------------------
1281
1282A module is available to compute the amplitude and phase of tidal waves.
1283This on-line Harmonic analysis is actived with \key{diaharm}.
1284Some parameters are available in namelist \ngn{namdia\_harm} :
1285
1286- \np{nit000\_han} is the first time step used for harmonic analysis
1287
1288- \np{nitend\_han} is the last time step used for harmonic analysis
1289
1290- \np{nstep\_han} is the time step frequency for harmonic analysis
1291
1292- \np{nb\_ana} is the number of harmonics to analyse
1293
1294- \np{tname} is an array with names of tidal constituents to analyse
1295
1296\np{nit000\_han} and \np{nitend\_han} must be between \np{nit000} and \np{nitend} of the simulation.
1297The restart capability is not implemented.
1298
1299The Harmonic analysis solve the following equation:
1300\begin{equation}
1301h_{i} - A_{0} + \sum^{nb\_ana}_{j=1}[A_{j}cos(\nu_{j}t_{j}-\phi_{j})] = e_{i}
1302\end{equation}
1303
1304With $A_{j}$,$\nu_{j}$,$\phi_{j}$, the amplitude, frequency and phase for each wave and $e_{i}$ the error.
1305$h_{i}$ is the sea level for the time $t_{i}$ and $A_{0}$ is the mean sea level. \\
1306We can rewrite this equation:
1307\begin{equation}
1308h_{i} - A_{0} + \sum^{nb\_ana}_{j=1}[C_{j}cos(\nu_{j}t_{j})+S_{j}sin(\nu_{j}t_{j})] = e_{i}
1309\end{equation}
1310with $A_{j}=\sqrt{C^{2}_{j}+S^{2}_{j}}$ et $\phi_{j}=arctan(S_{j}/C_{j})$.
1311
1312We obtain in output $C_{j}$ and $S_{j}$ for each tidal wave.
1313
1314% -------------------------------------------------------------------------------------------------------------
1315%       Sections transports
1316% -------------------------------------------------------------------------------------------------------------
1317\section{Transports across sections (\key{diadct}) }
1318\label{DIA_diag_dct}
1319
1320A module is available to compute the transport of volume, heat and salt through sections.
1321This diagnostic is actived with \key{diadct}.
1322
1323Each section is defined by the coordinates of its 2 extremities. The pathways between them are contructed
1324using tools which can be found in  \texttt{NEMOGCM/TOOLS/SECTIONS\_DIADCT} and are written in a binary file
1325 \texttt{section\_ijglobal.diadct\_ORCA2\_LIM} which is later read in by NEMO to compute on-line transports.
1326
1327The on-line transports module creates three output ascii files:
1328
1329- \texttt{volume\_transport} for volume transports (  unit: $10^{6} m^{3} s^{-1}$ )
1330
1331- \texttt{heat\_transport}   for heat transports   (  unit: $10^{15} W $ )
1332
1333- \texttt{salt\_transport}   for salt transports   (  unit: $10^{9}Kg s^{-1}$ )\\
1334
1335
1336Namelist variables in \ngn{namdct} control how frequently the flows are summed
1337and the time scales over which they are averaged, as well as the level of output for debugging:
1338
1339%------------------------------------------namdct----------------------------------------------------
1340\namdisplay{namdct}
1341%-------------------------------------------------------------------------------------------------------------
1342
1343\np{nn\_dct}: frequency of instantaneous transports computing
1344
1345\np{nn\_dctwri}: frequency of writing ( mean of instantaneous transports )
1346
1347\np{nn\_debug}: debugging of the section
1348
1349\subsubsection{ To create a binary file containing the pathway of each section }
1350
1351In \texttt{NEMOGCM/TOOLS/SECTIONS\_DIADCT/run}, the file \texttt{ {list\_sections.ascii\_global}}
1352contains a list of all the sections that are to be computed (this list of sections is based on MERSEA project metrics).
1353
1354Another file is available for the GYRE configuration (\texttt{ {list\_sections.ascii\_GYRE}}).
1355
1356Each section is defined by:
1357
1358\noindent \texttt{ long1 lat1 long2 lat2 nclass (ok/no)strpond (no)ice section\_name }\\
1359with:
1360
1361- \texttt{long1 lat1} , coordinates of the first extremity of the section;
1362
1363- \texttt{long2 lat2} , coordinates of the second extremity of the section;
1364
1365- \texttt{nclass} the number of bounds of your classes (e.g. 3 bounds for 2 classes);
1366
1367- \texttt{okstrpond} to compute heat and salt transport, \texttt{nostrpond} if no;
1368
1369- \texttt{ice}  to compute surface and volume ice transports, \texttt{noice} if no. \\
1370
1371
1372\noindent The results of the computing of transports, and the directions of positive
1373 and negative flow do not depend on the order of the 2 extremities in this file.\\ 
1374
1375
1376\noindent If nclass =/ 0,the next lines contain the class type and the nclass bounds:
1377
1378\texttt{long1 lat1 long2 lat2 nclass (ok/no)strpond (no)ice section\_name}
1379
1380\texttt{classtype}
1381
1382\texttt{zbound1}
1383
1384\texttt{zbound2}
1385
1386\texttt{.}
1387
1388\texttt{.}
1389
1390\texttt{nclass-1}
1391
1392\texttt{nclass}
1393
1394\noindent where \texttt{classtype} can be:
1395
1396- \texttt{zsal} for salinity classes
1397
1398- \texttt{ztem} for temperature classes
1399
1400- \texttt{zlay} for depth classes
1401
1402- \texttt{zsigi} for insitu density classes
1403
1404- \texttt{zsigp} for potential density classes \\
1405
1406 
1407The script \texttt{job.ksh} computes the pathway for each section and creates a binary file
1408\texttt{section\_ijglobal.diadct\_ORCA2\_LIM} which is read by NEMO. \\
1409
1410It is possible to use this tools for new configuations: \texttt{job.ksh} has to be updated
1411with the coordinates file name and path. \\
1412
1413
1414Examples of two sections, the ACC\_Drake\_Passage with no classes, and the
1415 ATL\_Cuba\_Florida with 4 temperature clases (5 class bounds), are shown:
1416
1417\noindent \texttt{ -68.    -54.5   -60.    -64.7  00 okstrpond noice ACC\_Drake\_Passage}
1418
1419\noindent \texttt{ -80.5    22.5   -80.5    25.5  05 nostrpond noice ATL\_Cuba\_Florida}
1420
1421\noindent \texttt{ztem}
1422
1423\noindent \texttt{-2.0}
1424
1425\noindent \texttt{ 4.5}
1426
1427\noindent \texttt{ 7.0}
1428
1429\noindent \texttt{12.0}
1430
1431\noindent \texttt{40.0}
1432
1433
1434\subsubsection{ To read the output files }
1435
1436The output format is :
1437 
1438{\small\texttt{date, time-step number, section number, section name, section slope coefficient, class number,
1439class name, class bound 1 , classe bound2, transport\_direction1 ,  transport\_direction2, transport\_total}}\\
1440
1441
1442For sections with classes, the first \texttt{nclass-1} lines correspond to the transport for each class
1443and the last line corresponds to the total transport summed over all classes. For sections with no classes, class number
1444\texttt{ 1 } corresponds to \texttt{ total class } and this class is called  \texttt{N}, meaning \texttt{none}.\\
1445
1446
1447\noindent \texttt{ transport\_direction1 } is the positive part of the transport ( \texttt{ > = 0 } ).
1448
1449\noindent \texttt{ transport\_direction2 } is the negative part of the transport ( \texttt{ < = 0 } ).\\
1450
1451
1452\noindent The \texttt{section slope coefficient} gives information about the significance of transports signs and direction:\\
1453
1454
1455
1456\begin{tabular}{|c|c|c|c|p{4cm}|}
1457\hline
1458section slope coefficient & section type & direction 1 & direction 2 & total transport \\ \hline
14590.    &  horizontal & northward & southward & postive: northward  \\ \hline
14601000. &  vertical   & eastward  & westward  & postive: eastward  \\ \hline               
1461\texttt{=/0, =/ 1000.}   &  diagonal   & eastward  & westward  & postive: eastward  \\ \hline               
1462\end{tabular}
1463
1464
1465
1466% -------------------------------------------------------------------------------------------------------------
1467%       Other Diagnostics
1468% -------------------------------------------------------------------------------------------------------------
1469\section{Other Diagnostics (\key{diahth}, \key{diaar5})}
1470\label{DIA_diag_others}
1471
1472
1473Aside from the standard model variables, other diagnostics can be computed
1474on-line. The available ready-to-add diagnostics routines can be found in directory DIA.
1475Among the available diagnostics the following ones are obtained when defining
1476the \key{diahth} CPP key:
1477
1478- the mixed layer depth (based on a density criterion \citep{de_Boyer_Montegut_al_JGR04}) (\mdl{diahth})
1479
1480- the turbocline depth (based on a turbulent mixing coefficient criterion) (\mdl{diahth})
1481
1482- the depth of the 20\degC isotherm (\mdl{diahth})
1483
1484- the depth of the thermocline (maximum of the vertical temperature gradient) (\mdl{diahth})
1485
1486The poleward heat and salt transports, their advective and diffusive component, and
1487the meriodional stream function can be computed on-line in \mdl{diaptr} 
1488\np{ln\_diaptr} to true (see the \textit{\ngn{namptr} } namelist below). 
1489When \np{ln\_subbas}~=~true, transports and stream function are computed
1490for the Atlantic, Indian, Pacific and Indo-Pacific Oceans (defined north of 30\degS)
1491as well as for the World Ocean. The sub-basin decomposition requires an input file
1492(\ifile{subbasins}) which contains three 2D mask arrays, the Indo-Pacific mask
1493been deduced from the sum of the Indian and Pacific mask (Fig~\ref{Fig_mask_subasins}).
1494
1495%------------------------------------------namptr----------------------------------------------------
1496\namdisplay{namptr} 
1497%-------------------------------------------------------------------------------------------------------------
1498%>>>>>>>>>>>>>>>>>>>>>>>>>>>>
1499\begin{figure}[!t]     \begin{center}
1500\includegraphics[width=1.0\textwidth]{Fig_mask_subasins}
1501\caption{   \label{Fig_mask_subasins}
1502Decomposition of the World Ocean (here ORCA2) into sub-basin used in to compute
1503the heat and salt transports as well as the meridional stream-function: Atlantic basin (red),
1504Pacific basin (green), Indian basin (bleue), Indo-Pacific basin (bleue+green).
1505Note that semi-enclosed seas (Red, Med and Baltic seas) as well as Hudson Bay
1506are removed from the sub-basins. Note also that the Arctic Ocean has been split
1507into Atlantic and Pacific basins along the North fold line.  }
1508\end{center}   \end{figure} 
1509%>>>>>>>>>>>>>>>>>>>>>>>>>>>>
1510
1511In addition, a series of diagnostics has been added in the \mdl{diaar5}.
1512They corresponds to outputs that are required for AR5 simulations
1513(see Section \ref{DIA_steric} below for one of them).
1514Activating those outputs requires to define the \key{diaar5} CPP key.
1515\\
1516\\
1517
1518
1519
1520% ================================================================
1521% Steric effect in sea surface height
1522% ================================================================
1523\section{Diagnosing the Steric effect in sea surface height}
1524\label{DIA_steric}
1525
1526
1527Changes in steric sea level are caused when changes in the density of the water
1528column imply an expansion or contraction of the column. It is essentially produced
1529through surface heating/cooling and to a lesser extent through non-linear effects of
1530the equation of state (cabbeling, thermobaricity...).
1531Non-Boussinesq models contain all ocean effects within the ocean acting
1532on the sea level. In particular, they include the steric effect. In contrast,
1533Boussinesq models, such as \NEMO, conserve volume, rather than mass,
1534and so do not properly represent expansion or contraction. The steric effect is
1535therefore not explicitely represented.
1536This approximation does not represent a serious error with respect to the flow field
1537calculated by the model \citep{Greatbatch_JGR94}, but extra attention is required
1538when investigating sea level, as steric changes are an important
1539contribution to local changes in sea level on seasonal and climatic time scales.
1540This is especially true for investigation into sea level rise due to global warming.
1541
1542Fortunately, the steric contribution to the sea level consists of a spatially uniform
1543component that can be diagnosed by considering the mass budget of the world
1544ocean \citep{Greatbatch_JGR94}.
1545In order to better understand how global mean sea level evolves and thus how
1546the steric sea level can be diagnosed, we compare, in the following, the
1547non-Boussinesq and Boussinesq cases.
1548
1549Let denote
1550$\mathcal{M}$ the total mass of liquid seawater ($\mathcal{M}=\int_D \rho dv$),
1551$\mathcal{V}$ the total volume of seawater ($\mathcal{V}=\int_D dv$),
1552$\mathcal{A}$ the total surface of the ocean ($\mathcal{A}=\int_S ds$),
1553$\bar{\rho}$ the global mean seawater (\textit{in situ}) density ($\bar{\rho}= 1/\mathcal{V} \int_D \rho \,dv$), and
1554$\bar{\eta}$ the global mean sea level ($\bar{\eta}=1/\mathcal{A}\int_S \eta \,ds$).
1555
1556A non-Boussinesq fluid conserves mass. It satisfies the following relations:
1557\begin{equation} \label{Eq_MV_nBq} 
1558\begin{split} 
1559\mathcal{M} &\mathcal{V}  \;\bar{\rho}       \\
1560\mathcal{V} &\mathcal{A}  \;\bar{\eta} 
1561\end{split}
1562\end{equation}
1563Temporal changes in total mass is obtained from the density conservation equation :
1564\begin{equation}  \label{Eq_Co_nBq}
1565\frac{1}{e_3} \partial_t ( e_3\,\rho) + \nabla( \rho \, \textbf{U} ) = \left. \frac{\textit{emp}}{e_3}\right|_\textit{surface}
1566\end{equation}
1567where $\rho$ is the \textit{in situ} density, and \textit{emp} the surface mass
1568exchanges with the other media of the Earth system (atmosphere, sea-ice, land).
1569Its global averaged leads to the total mass change
1570\begin{equation}  \label{Eq_Mass_nBq}
1571\partial_t \mathcal{M} = \mathcal{A} \;\overline{\textit{emp}}
1572\end{equation}
1573where $\overline{\textit{emp}}=\int_S \textit{emp}\,ds$ is the net mass flux
1574through the ocean surface.
1575Bringing \eqref{Eq_Mass_nBq} and the time derivative of \eqref{Eq_MV_nBq} 
1576together leads to the evolution equation of the mean sea level
1577\begin{equation} \label{Eq_ssh_nBq}
1578  \partial_t \bar{\eta} =  \frac{\overline{\textit{emp}}}{ \bar{\rho}} 
1579               - \frac{\mathcal{V}}{\mathcal{A}}  \;\frac{\partial_t \bar{\rho} }{\bar{\rho}}
1580\end{equation}
1581The first term in equation \eqref{Eq_ssh_nBq} alters sea level by adding or
1582subtracting mass from the ocean.
1583The second term arises from temporal changes in the global mean
1584density; $i.e.$ from steric effects.
1585
1586In a Boussinesq fluid, $\rho$ is replaced by $\rho_o$ in all the equation except when $\rho$ 
1587appears multiplied by the gravity ($i.e.$ in the hydrostatic balance of the primitive Equations).
1588In particular, the mass conservation equation, \eqref{Eq_Co_nBq}, degenerates into
1589the incompressibility equation:
1590\begin{equation}  \label{Eq_Co_Bq}
1591\frac{1}{e_3} \partial_t ( e_3 ) + \nabla( \textbf{U} ) =  \left. \frac{\textit{emp}}{\rho_o \,e_3}\right|_ \textit{surface}
1592\end{equation}
1593and the global average of this equation now gives the temporal change of the total volume,
1594\begin{equation}  \label{Eq_V_Bq}
1595  \partial_t \mathcal{V} =   \mathcal{A} \;\frac{\overline{\textit{emp}}}{\rho_o} 
1596\end{equation}
1597Only the volume is conserved, not mass, or, more precisely, the mass which is conserved is the
1598Boussinesq mass, $\mathcal{M}_o = \rho_o \mathcal{V}$. The total volume (or equivalently 
1599the global mean sea level) is altered only by net volume fluxes across the ocean surface, 
1600not by changes in mean mass of the ocean: the steric effect is missing in a Boussinesq fluid.
1601 
1602Nevertheless, following \citep{Greatbatch_JGR94}, the steric effect on the volume can be
1603diagnosed by considering the mass budget of the ocean.
1604The apparent changes in $\mathcal{M}$, mass of the ocean, which are not induced by surface
1605mass flux must be compensated by a spatially uniform change in the mean sea level due to
1606expansion/contraction of the ocean \citep{Greatbatch_JGR94}. In others words, the Boussinesq
1607mass, $\mathcal{M}_o$, can be related to $\mathcal{M}$, the  total mass of the ocean seen
1608by the Boussinesq model, via the steric contribution to the sea level, $\eta_s$, a spatially
1609uniform variable, as follows:
1610\begin{equation}  \label{Eq_M_Bq}
1611   \mathcal{M}_o  =  \mathcal{M} + \rho_o \,\eta_s \,\mathcal{A} 
1612\end{equation}
1613Any change in $\mathcal{M}$ which cannot be explained by the net mass flux through
1614the ocean surface is converted into a mean change in sea level. Introducing the total density
1615anomaly, $\mathcal{D}= \int_D d_a \,dv$, where $d_a= (\rho -\rho_o ) / \rho_o$ 
1616is the density anomaly used in \NEMO (cf. \S\ref{TRA_eos}) in \eqref{Eq_M_Bq}
1617leads to a very simple form for the steric height:
1618\begin{equation}  \label{Eq_steric_Bq}
1619   \eta_s = - \frac{1}{\mathcal{A}} \mathcal{D} 
1620\end{equation}
1621
1622The above formulation of the steric height of a Boussinesq ocean requires four remarks.
1623First, one can be tempted to define $\rho_o$ as the initial value of $\mathcal{M}/\mathcal{V}$,
1624$i.e.$ set $\mathcal{D}_{t=0}=0$, so that the initial steric height is zero. We do not
1625recommend that. Indeed, in this case $\rho_o$ depends on the initial state of the ocean.
1626Since $\rho_o$ has a direct effect on the dynamics of the ocean (it appears in the pressure
1627gradient term of the momentum equation) it is definitively not a good idea when
1628inter-comparing experiments.
1629We better recommend to fixe once for all $\rho_o$ to $1035\;Kg\,m^{-3}$. This value is a
1630sensible choice for the reference density used in a Boussinesq ocean climate model since,
1631with the exception of only a small percentage of the ocean, density in the World Ocean
1632varies by no more than 2$\%$ from this value (\cite{Gill1982}, page 47).
1633
1634Second, we have assumed here that the total ocean surface, $\mathcal{A}$, does not
1635change when the sea level is changing as it is the case in all global ocean GCMs
1636(wetting and drying of grid point is not allowed).
1637 
1638Third, the discretisation of \eqref{Eq_steric_Bq} depends on the type of free surface
1639which is considered. In the non linear free surface case, $i.e.$ \key{vvl} defined, it is
1640given by
1641\begin{equation}  \label{Eq_discrete_steric_Bq}
1642   \eta_s =  - \frac{ \sum_{i,\,j,\,k} d_a\; e_{1t} e_{2t} e_{3t} }
1643                  { \sum_{i,\,j,\,k}         e_{1t} e_{2t} e_{3t} } 
1644\end{equation}
1645whereas in the linear free surface, the volume above the \textit{z=0} surface must be explicitly taken
1646into account to better approximate the total ocean mass and thus the steric sea level:
1647\begin{equation}  \label{Eq_discrete_steric_Bq}
1648   \eta_s =  - \frac{ \sum_{i,\,j,\,k} d_a\; e_{1t}e_{2t}e_{3t} + \sum_{i,\,j} d_a\; e_{1t}e_{2t} \eta }
1649                     {\sum_{i,\,j,\,k} e_{1t}e_{2t}e_{3t} + \sum_{i,\,j}           e_{1t}e_{2t} \eta } 
1650\end{equation}
1651
1652The fourth and last remark concerns the effective sea level and the presence of sea-ice.
1653In the real ocean, sea ice (and snow above it)  depresses the liquid seawater through
1654its mass loading. This depression is a result of the mass of sea ice/snow system acting
1655on the liquid ocean. There is, however, no dynamical effect associated with these depressions
1656in the liquid ocean sea level, so that there are no associated ocean currents. Hence, the
1657dynamically relevant sea level is the effective sea level, $i.e.$ the sea level as if sea ice
1658(and snow) were converted to liquid seawater \citep{Campin_al_OM08}. However,
1659in the current version of \NEMO the sea-ice is levitating above the ocean without
1660mass exchanges between ice and ocean. Therefore the model effective sea level
1661is always given by $\eta + \eta_s$, whether or not there is sea ice present.
1662
1663In AR5 outputs, the thermosteric sea level is demanded. It is steric sea level due to
1664changes in ocean density arising just from changes in temperature. It is given by:
1665\begin{equation}  \label{Eq_thermosteric_Bq}
1666   \eta_s = - \frac{1}{\mathcal{A}} \int_D d_a(T,S_o,p_o) \,dv
1667\end{equation}
1668where $S_o$ and $p_o$ are the initial salinity and pressure, respectively.
1669
1670Both steric and thermosteric sea level are computed in \mdl{diaar5} which needs
1671the \key{diaar5} defined to be called.
1672
1673% ================================================================
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686%\end{document}
Note: See TracBrowser for help on using the repository browser.