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_misc.tex in branches/2017/dev_merge_2017/DOC/tex_sub – NEMO

source: branches/2017/dev_merge_2017/DOC/tex_sub/chap_misc.tex @ 9394

Last change on this file since 9394 was 9394, checked in by nicolasmartin, 6 years ago

Fix several typos, reverse (biblio then index) and shrink the manual backmatter (columns, font size, separator height) #1793

File size: 15.4 KB
Line 
1\documentclass[../tex_main/NEMO_manual]{subfiles}
2\begin{document}
3% ================================================================
4% Chapter ---€” Miscellaneous Topics
5% ================================================================
6\chapter{Miscellaneous Topics}
7\label{MISC}
8\minitoc
9
10\newpage
11$\ $\newline    % force a new ligne
12
13% ================================================================
14% Representation of Unresolved Straits
15% ================================================================
16\section{Representation of unresolved straits}
17\label{MISC_strait}
18
19In climate modeling, it often occurs that a crucial connections between water masses
20is broken as the grid mesh is too coarse to resolve narrow straits. For example, coarse
21grid spacing typically closes off the Mediterranean from the Atlantic at the Strait of
22Gibraltar. In this case, it is important for climate models to include the effects of salty
23water entering the Atlantic from the Mediterranean. Likewise, it is important for the
24Mediterranean to replenish its supply of water from the Atlantic to balance the net
25evaporation occurring over the Mediterranean region. This problem occurs even in
26eddy permitting simulations. For example, in ORCA 1/4\deg several straits of the Indonesian
27archipelago (Ombai, Lombok...) are much narrow than even a single ocean grid-point.
28
29We describe briefly here the three methods that can be used in \NEMO to handle
30such improperly resolved straits. The first two consist of opening the strait by hand
31while ensuring that the mass exchanges through the strait are not too large by
32either artificially reducing the surface of the strait grid-cells or, locally increasing
33the lateral friction. In the third one, the strait is closed but exchanges of mass,
34heat and salt across the land are allowed.
35Note that such modifications are so specific to a given configuration that no attempt
36has been made to set them in a generic way. However, examples of how
37they can be set up is given in the ORCA 2\deg and 0.5\deg configurations. For example,
38for details of implementation in ORCA2, search:
39\texttt{ IF( cp\_cfg == "orca" .AND. jp\_cfg == 2 ) }
40
41% -------------------------------------------------------------------------------------------------------------
42%       Hand made geometry changes
43% -------------------------------------------------------------------------------------------------------------
44\subsection{Hand made geometry changes}
45\label{MISC_strait_hand}
46
47$\bullet$ reduced scale factor in the cross-strait direction to a value in better agreement
48with the true mean width of the strait. (Fig.~\ref{Fig_MISC_strait_hand}).
49This technique is sometime called "partially open face" or "partially closed cells".
50The key issue here is only to reduce the faces of $T$-cell ($i.e.$ change the value
51of the horizontal scale factors at $u$- or $v$-point) but not the volume of the $T$-cell.
52Indeed, reducing the volume of strait $T$-cell can easily produce a numerical
53instability at that grid point that would require a reduction of the model time step.
54The changes associated with strait management are done in \mdl{domhgr},
55just after the definition or reading of the horizontal scale factors.
56
57$\bullet$ increase of the viscous boundary layer thickness by local increase of the
58fmask value at the coast (Fig.~\ref{Fig_MISC_strait_hand}). This is done in
59\mdl{dommsk} together with the setting of the coastal value of fmask
60(see Section \ref{LBC_coast})
61
62%>>>>>>>>>>>>>>>>>>>>>>>>>>>>
63\begin{figure}[!tbp]     \begin{center}
64\includegraphics[width=0.80\textwidth]{Fig_Gibraltar}
65\includegraphics[width=0.80\textwidth]{Fig_Gibraltar2}
66\caption{   \protect\label{Fig_MISC_strait_hand} 
67Example of the Gibraltar strait defined in a $1^{\circ} \times 1^{\circ}$ mesh.
68\textit{Top}: using partially open cells. The meridional scale factor at $v$-point
69is reduced on both sides of the strait to account for the real width of the strait
70(about 20 km). Note that the scale factors of the strait $T$-point remains unchanged.
71\textit{Bottom}: using viscous boundary layers. The four fmask parameters
72along the strait coastlines are set to a value larger than 4, $i.e.$ "strong" no-slip
73case (see Fig.\ref{Fig_LBC_shlat}) creating a large viscous boundary layer
74that allows a reduced transport through the strait.}
75\end{center}   \end{figure}
76%>>>>>>>>>>>>>>>>>>>>>>>>>>>>
77
78
79% ================================================================
80% Closed seas
81% ================================================================
82\section{Closed seas (\protect\mdl{closea})}
83\label{MISC_closea}
84
85\colorbox{yellow}{Add here a short description of the way closed seas are managed}
86
87
88% ================================================================
89% Sub-Domain Functionality
90% ================================================================
91\section{Sub-domain functionality}
92\label{MISC_zoom}
93
94\subsection{Simple subsetting of input files via NetCDF attributes}
95
96The extended grids for use with the under-shelf ice cavities will result in redundant rows
97around Antarctica if the ice cavities are not active. A simple mechanism for subsetting
98input files associated with the extended domains has been implemented to avoid the need to
99maintain different sets of input fields for use with or without active ice cavities. The
100existing 'zoom' options are overly complex for this task and marked for deletion anyway.
101This alternative subsetting operates for the j-direction only and works by optionally
102looking for and using a global file attribute (named: \np{open\_ocean\_jstart}) to
103determine the starting j-row for input. The use of this option is best explained with an
104example: Consider an ORCA1 configuration using the extended grid bathymetry and coordinate
105files:
106\vspace{-10pt}
107\ifile{eORCA1\_bathymetry\_v2}
108\ifile{eORCA1\_coordinates}
109\noindent These files define a horizontal domain of 362x332. Assuming the first row with
110open ocean wet points in the non-isf bathymetry for this set is row 42 (Fortran indexing)
111then the formally correct setting for \np{open\_ocean\_jstart} is 41. Using this value as the
112first row to be read will result in a 362x292 domain which is the same size as the original
113ORCA1 domain. Thus the extended coordinates and bathymetry files can be used with all the
114original input files for ORCA1 if the ice cavities are not active (\np{ln\_isfcav =
115.false.}). Full instructions for achieving this are:
116
117\noindent Add the new attribute to any input files requiring a j-row offset, i.e:
118\vspace{-10pt}
119\begin{cmds}
120ncatted  -a open_ocean_jstart,global,a,d,41 eORCA1_coordinates.nc
121ncatted  -a open_ocean_jstart,global,a,d,41 eORCA1_bathymetry_v2.nc
122\end{cmds}
123 
124\noindent Add the logical switch to \ngn{namcfg} in the configuration namelist and set true:
125%--------------------------------------------namcfg--------------------------------------------------------
126\forfile{../namelists/namcfg}
127%--------------------------------------------------------------------------------------------------------------
128
129\noindent Note the j-size of the global domain is the (extended j-size minus
130\np{open\_ocean\_jstart} + 1 ) and this must match the size of all datasets other than
131bathymetry and coordinates currently. However the option can be extended to any global, 2D
132and 3D, netcdf, input field by adding the:
133\vspace{-10pt}
134\begin{forlines}
135lrowattr=ln_use_jattr
136\end{forlines}
137optional argument to the appropriate \np{iom\_get} call and the \np{open\_ocean\_jstart} attribute to the corresponding input files. It remains the users responsibility to set \np{jpjdta} and \np{jpjglo} values in the \np{namelist\_cfg} file according to their needs.
138
139%>>>>>>>>>>>>>>>>>>>>>>>>>>>>
140\begin{figure}[!ht]    \begin{center}
141\includegraphics[width=0.90\textwidth]{Fig_LBC_zoom}
142\caption{   \protect\label{Fig_LBC_zoom}
143Position of a model domain compared to the data input domain when the zoom functionality is used.}
144\end{center}   \end{figure}
145%>>>>>>>>>>>>>>>>>>>>>>>>>>>>
146
147
148% ================================================================
149% Accuracy and Reproducibility
150% ================================================================
151\section{Accuracy and reproducibility (\protect\mdl{lib\_fortran})}
152\label{MISC_fortran}
153
154\subsection{Issues with intrinsinc SIGN function (\protect\key{nosignedzero})}
155\label{MISC_sign}
156
157The SIGN(A, B) is the \textsc {Fortran} intrinsic function delivers the magnitude
158of A with the sign of B. For example, SIGN(-3.0,2.0) has the value 3.0.
159The problematic case is when the second argument is zero, because, on platforms
160that support IEEE arithmetic, zero is actually a signed number.
161There is a positive zero and a negative zero.
162
163In \textsc{Fortran}~90, the processor was required always to deliver a positive result for SIGN(A, B)
164if B was zero. Nevertheless, in \textsc{Fortran}~95, the processor is allowed to do the correct thing
165and deliver ABS(A) when B is a positive zero and -ABS(A) when B is a negative zero.
166This change in the specification becomes apparent only when B is of type real, and is zero,
167and the processor is capable of distinguishing between positive and negative zero,
168and B is negative real zero. Then SIGN delivers a negative result where, under \textsc{Fortran}~90
169rules,  it used to return a positive result.
170This change may be especially sensitive for the ice model, so we overwrite the intrinsinc
171function with our own function simply performing :   \\
172\verb?   IF( B >= 0.e0 ) THEN   ;   SIGN(A,B) = ABS(A)  ?    \\
173\verb?   ELSE                   ;   SIGN(A,B) =-ABS(A)     ?  \\
174\verb?   ENDIF    ? \\
175This feature can be found in \mdl{lib\_fortran} module and is effective when \key{nosignedzero}
176is defined. We use a CPP key as the overwritting of a intrinsic function can present
177performance issues with some computers/compilers.
178
179
180\subsection{MPP reproducibility}
181\label{MISC_glosum}
182
183The numerical reproducibility of simulations on distributed memory parallel computers
184is a critical issue. In particular, within NEMO global summation of distributed arrays
185is most susceptible to rounding errors, and their propagation and accumulation cause
186uncertainty in final simulation reproducibility on different numbers of processors.
187To avoid so, based on \citet{He_Ding_JSC01} review of different technics,
188we use a so called self-compensated summation method. The idea is to estimate
189the roundoff error, store it in a buffer, and then add it back in the next addition.
190
191Suppose we need to calculate $b = a_1 + a_2 + a_3$. The following algorithm
192will allow to split the sum in two ($sum_1 = a_{1} + a_{2}$ and $b = sum_2 = sum_1 + a_3$)
193with exactly the same rounding errors as the sum performed all at once.
194\begin{align*}
195   sum_1 \ \  &= a_1 + a_2 \\
196   error_1     &= a_2 + ( a_1 - sum_1 ) \\
197   sum_2 \ \  &= sum_1 + a_3 + error_1 \\
198   error_2     &= a_3 + error_1 + ( sum_1 - sum_2 ) \\
199   b \qquad \ &= sum_2 \\
200\end{align*}
201An example of this feature can be found in \mdl{lib\_fortran} module.
202It is systematicallt used in glob\_sum function (summation over the entire basin excluding
203duplicated rows and columns due to cyclic or north fold boundary condition as well as
204overlap MPP areas). The self-compensated summation method should be used in all summation
205in i- and/or j-direction. See \mdl{closea} module for an example.
206Note also that this implementation may be sensitive to the optimization level.
207
208\subsection{MPP scalability}
209\label{MISC_mppsca}
210
211The default method of communicating values across the north-fold in distributed memory applications
212(\key{mpp\_mpi}) uses a \textsc{MPI\_ALLGATHER} function to exchange values from each processing
213region in the northern row with every other processing region in the northern row. This enables a
214global width array containing the top 4 rows to be collated on every northern row processor and then
215folded with a simple algorithm. Although conceptually simple, this "All to All" communication will
216hamper performance scalability for large numbers of northern row processors. From version 3.4
217onwards an alternative method is available which only performs direct "Peer to Peer" communications
218between each processor and its immediate "neighbours" across the fold line. This is achieved by
219using the default \textsc{MPI\_ALLGATHER} method during initialisation to help identify the "active"
220neighbours. Stored lists of these neighbours are then used in all subsequent north-fold exchanges to
221restrict exchanges to those between associated regions. The collated global width array for each
222region is thus only partially filled but is guaranteed to be set at all the locations actually
223required by each individual for the fold operation. This alternative method should give identical
224results to the default \textsc{ALLGATHER} method and is recommended for large values of \np{jpni}.
225The new method is activated by setting \np{ln\_nnogather} to be true ({\bf nammpp}). The
226reproducibility of results using the two methods should be confirmed for each new, non-reference
227configuration.
228
229% ================================================================
230% Model optimisation, Control Print and Benchmark
231% ================================================================
232\section{Model optimisation, control print and benchmark}
233\label{MISC_opt}
234%--------------------------------------------namctl-------------------------------------------------------
235\forfile{../namelists/namctl} 
236%--------------------------------------------------------------------------------------------------------------
237
238 \gmcomment{why not make these bullets into subsections?}
239Options are defined through the  \ngn{namctl} namelist variables.
240
241$\bullet$ Vector optimisation:
242
243\key{vectopt\_loop} enables the internal loops to collapse. This is very
244a very efficient way to increase the length of vector calculations and thus
245to speed up the model on vector computers.
246 
247% Add here also one word on NPROMA technique that has been found useless, since compiler have made significant progress during the last decade.
248 
249% Add also one word on NEC specific optimisation (Novercheck option for example)
250 
251$\bullet$ Control print %: describe here 4 things:
252
2531- \np{ln\_ctl} : compute and print the trends averaged over the interior domain
254in all TRA, DYN, LDF and ZDF modules. This option is very helpful when
255diagnosing the origin of an undesired change in model results.
256
2572- also \np{ln\_ctl} but using the nictl and njctl namelist parameters to check
258the source of differences between mono and multi processor runs.
259
260%%gm   to be removed both here and in the code
2613- last digit comparison (\np{nn\_bit\_cmp}). In an MPP simulation, the computation of
262a sum over the whole domain is performed as the summation over all processors of
263each of their sums over their interior domains. This double sum never gives exactly
264the same result as a single sum over the whole domain, due to truncation differences.
265The "bit comparison" option has been introduced in order to be able to check that
266mono-processor and multi-processor runs give exactly the same results.
267%THIS is to be updated with the mpp_sum_glo  introduced in v3.3
268% nn_bit_cmp  today only check that the nn_cla = 0 (no cross land advection)
269%%gm end
270
271$\bullet$  Benchmark (\np{nn\_bench}). This option defines a benchmark run based on
272a GYRE configuration (see \S\ref{CFG_gyre}) in which the resolution remains the same
273whatever the domain size. This allows a very large model domain to be used, just by
274changing the domain size (\jp{jpiglo}, \jp{jpjglo}) and without adjusting either the time-step
275or the physical parameterisations.
276
277% ================================================================
278\end{document}
279
280
281
282
Note: See TracBrowser for help on using the repository browser.