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.
Introduction.tex in trunk/DOC/BETA/Chapters – NEMO

source: trunk/DOC/BETA/Chapters/Introduction.tex @ 817

Last change on this file since 817 was 817, checked in by gm, 16 years ago

trunk - update including Steven correction of the first 5 chapters (until DYN) and activation of Appendix A & B

  • Property svn:executable set to *
File size: 9.6 KB
Line 
1
2% ================================================================
3% INTRODUCTION
4% ================================================================
5
6\chapter{Introduction}
7
8The Nucleus for European Modelling of the Ocean (\NEMO) is a framework of ocean
9related engines, namely OPA\footnote{OPA = Oc\'{e}an PArall\'{e}lis\'{e}} for the
10ocean dynamics and thermodynamics, LIM\footnote{LIM= Louvain)la-neuve Ice
11Model} for the sea-ice dynamics and thermodynamics, TOP\footnote{TOP = Tracer
12in the Ocean Paradigm} for the biogeochemistry (both transport (TRP) and sources
13minus sinks (LOBSTER, PISCES)\footnote{Both LOBSTER and PISCES are not
14acronyms just name}. It is intended to be a flexible tool for studying the ocean and
15its interactions with the other components of the earth climate system (atmosphere,
16sea-ice, biogeochemical tracers, ...) over a wide range of space and time scales.
17This documentation provides information about the physics represented by the ocean component of \NEMO and the rationale for the choice of numerical schemes and
18the model design. More specific information about running the model on different
19computers, or how to set up a configuration, are found on the \NEMO web site
20(www.locean-ipsl.upmc.fr/NEMO).
21
22The ocean component of \NEMO has been developed from the OPA model, release 8.2, described in \citet{Madec1998}. This model has been used for a wide range of applications, both regional or global, as a forced ocean model and as a model coupled with the atmosphere. A complete list of references is found on the \NEMO web site.
23
24This manual is organised in as follows. Chapter~\ref{PE} presents the model basics,
25$i.e.$ the equations and their assumptions, the vertical coordinates used, and the
26subgrid scale physics. This part deals with the continuous equations of the model
27(primitive equations, with potential temperature, salinity and an equation of state). The
28equations are written in a curvilinear coordinate system, with a choice of vertical
29coordinates ($z$ or $s$, with the rescaled height coordinate formulation \textit{z*}, or 
30\textit{s*}). Momentum equations are formulated in the vector invariant form or in the
31flux form. Dimensional units in the meter, kilogram, second (MKS) international system
32are used throughout.
33
34The following chapters deal with the discrete equations. Chapter~\ref{DOM} presents the
35space and time domain. The model is discretised on a staggered grid (Arakawa C grid)
36with masking of land areas and uses a Leap-frog environment for time-stepping. Vertical
37discretisation used depends on both how the bottom topography is represented and
38whether the free surface is linear or not. Full step or partial step $z$-coordinate or
39$s$- (terrain-following) coordinate is used with linear free surface (level position are then
40fixed in time). In non-linear free surface, the corresponding rescaled height coordinate
41formulation (\textit{z*} or \textit{s*}) is used (the level position then vary in time as a
42function of the sea surface heigh). The following two chapters (\ref{TRA} and \ref{DYN})
43describe the discretisation of the prognostic equations for the active tracers and the
44momentum. Explicit, split-explicit and implicit free surface formulations are implemented
45as well as rigid-lid case. A number of numerical schemes are available for momentum
46advection, for the computation of the pressure gradients, as well as for the advection of
47tracers (second or higher order advection schemes, including positive ones).
48
49Surface boundary conditions (chapter~\ref{SBC}) can be implemented as prescribed
50fluxes, or bulk formulations for the surface fluxes (wind stress, heat, freshwater). The
51model allows penetration of solar radiation  There is an optional geothermal heating at
52the ocean bottom. Within the \NEMO system the ocean model is interactively coupled
53with a sea ice model (LIM) and with biogeochemistry models (PISCES, LOBSTER).
54Interactive coupling to Atmospheric models is possible via the OASIS coupler
55\citep{OASIS2006}.
56
57Other model characteristics are the lateral boundary conditions (chapter~\ref{LBC}). 
58Global configurations of the model make use of the ORCA tripolar grid, with special north
59fold boundary condition. Free-slip or no-slip boundary conditions are allowed at land
60boundaries. Closed basin geometries as well as periodic domains and open boundary
61conditions are possible.
62
63Physical parameterisations are described in chapters~\ref{LDF} and \ref{ZDF}. The
64model includes an implicit treatment of vertical viscosity and diffusivity. The lateral
65Laplacian and biharmonic viscosity and diffusion can be rotated following a geopotential
66or neutral direction. There is an optional eddy induced velocity \citep{Gent1990} with a
67space and time variable coefficient \citet{Treguier1997}. The model has vertical harmonic
68viscosity and diffusion with a space and time variable coefficient, with options to compute
69the coefficients with \citet{Blanke1993}, \citet{Large1994}, or \citet{PacPhil1981} mixing
70schemes.
71
72Specific online diagnostics (not documented yet) are available in the model: output of all
73the tendencies of the momentum and tracers equations, output of tracers tendencies
74averaged over the time evolving mixed layer.
75
76The model is implemented in \textsc{Fortran 90}, with preprocessing (C-pre-processor).
77It runs under UNIX. It is optimized for vector computers and parallelised by domain 
78decomposition with MPI. All input and output is done in NetCDF (Network Common Data
79Format) with a optional direct access format for output. To ensure the clarity and
80readability of the code it is necessary to follow coding rules. The coding rules for OPA
81include conventions for naming variables, with different starting letters for different types
82of variables (real, integer, parameter\ldots). Those rules are presented in a document
83available on the \NEMO web site.
84
85The model is organized with a high internal modularity based on physics. For example,
86each trend ($i.e.$, a term in the RHS of the prognostic equation) for momentum and
87tracers is computed in a dedicated module.  To make it easier for the user to find his way
88around the code, the module names follow a three-letter rule. For example, \mdl{tradmp} 
89is a module related to the TRAcers equation, computing the DaMPing. The complete list
90of module names is presented in \colorbox{yellow}{annex}. Furthermore, modules are 
91organized in a few directories that correspond to their category, as indicated by the first
92three letters of their name.
93
94The manual mirrors the organization of the model. After the presentation of the
95continuous equations (Chapter \ref{PE}), the following chapters refer to specific terms of
96the equations each associated with a group of modules .
97
98
99\begin{table}[htbp] \label{tab1}
100%\begin{center} \begin{tabular}{|p{143pt}|l|l|} \hline
101\begin{center} \begin{tabular}{|l|l|l|}   \hline
102Chapter \ref{DOM} & DOM    & model DOMain \\    \hline
103Chapter \ref{TRA} & TRA    & TRAcer equations (potential temperature and salinity) \\   \hline
104Chapter \ref{DYN} & DYN    & DYNamic equations (momentum) \\      \hline
105Chapter \ref{SBC}    & SBC    & Surface Boundary Conditions \\       \hline
106Chapter \ref{LBC} & LBC    & Lateral Boundary Conditions  \\      \hline
107Chapter \ref{LDF} & LDF    & Lateral DiFfusion (parameterisations) \\   \hline
108Chapter \ref{ZDF} & ZDF    & Vertical DiFfusion  \\      \hline
109Chapter \ref{MISC}   & ...    & Miscellaneous  topics  \\         \hline
110\end{tabular}  \end{center}
111\end{table}
112
113In the current release (v2.3), LBC directory (see Chap.~\ref{LBC}) does not yet exist.
114When created LBC will contain the OBC directory (Open Boundary Condition), and the
115\mdl{lbclnk}, \mdl{mppini} and \mdl{lib\_mpp} modules.
116
117 \vspace{1cm}   Nota Bene : \vspace{0.25cm}
118
119OPA, like all research tools, is in perpetual evolution. The present document describes
120the OPA version include in the release 2.3 of NEMO. This release differs significantly
121from version 8, documented in \citet{Madec1998}. The main modifications are :\\
122(1) transition to full native \textsc{Fortran} 90, deep code restructuring and drastic reduction of CPP keys; \\
123(2) introduction of partial step representation of bottom topography \citep{Barnier_al_OD06}; \\
124(3) partial reactivation of a terrain-following vertical coordinate ($s$- and hybrid $s$-$z$) with the addition of several options for pressure gradient computation \footnote{Partial support of $s$-coordinate: there is presently no support for neutral physics in $s$-coordinate and for the new options for horizontal pressure gradient computation with a non-linear equation of state.}; \\ 
125(4) more choices for the treatment of the free surface: full explicit, split-explicit , filtered and rigid-lid; \\
126(5) non linear free surface option (associated with the rescaled height coordinate  \textit{z*} or  \textit{s*}); \\
127(6) additional schemes for vector and flux forms of the momentum  advection; \\
128(7) additional advection schemes for tracers; \\
129(8) implementation of the AGRIF package (Adaptative Grid Refinement in \textsc{Fortran}) \citep{Debreu_al_CG2008}; \\
130(9) online diagnostics : tracers trend in the mixed layer and vorticity balance; \\
131(10) rewriting of the I/O management; \\
132(11) OASIS 3 and 4 couplers interfacing with atmospheric global circulation models.
133
134In addition, several minor modifications in the coding have been introduced with the constant concern of improving performance on both scalar and vector computers.
135
136At the time of this writing, the current release is NEMO 2.3. The new surface module described in this document is not yet part of the current distribution.
137
138\vspace{1cm} 
139\colorbox{red}{Red color}: not in the current reference version (v2.3) but expected soon.
140 
141\colorbox{yellow}{Yellow color}: missing references, text to be updated.
142
Note: See TracBrowser for help on using the repository browser.