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/TexFiles/Chapters – NEMO

source: trunk/DOC/TexFiles/Chapters/Introduction.tex @ 996

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

trunk - DOC update to correct error in previous update

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