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.
Changeset 10495 for NEMO – NEMO

Changeset 10495 for NEMO


Ignore:
Timestamp:
2019-01-10T12:17:42+01:00 (5 years ago)
Author:
nicolasmartin
Message:

Few editions on main files for the manual and global review of LaTeX file for the coding conventions

Location:
NEMO/trunk/doc/latex/NEMO/main
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • NEMO/trunk/doc/latex/NEMO/main/NEMO_coding_conv.tex

    r9388 r10495  
    1 \documentclass[a4paper]{article} 
    2 \usepackage{type1cm}  
    3 \usepackage{times}  
    4 \usepackage{color}  
    5 \usepackage{rotating}  
    6 \usepackage{color}  
    7 \usepackage{framed}  
    8 \usepackage{makeidx}  
    9 \graphicspath{{figures/}} 
    10  
    11 %%%%%%% 
    12 \pagestyle{empty}  
    13 \setlength{\leftmargin}{1 cm}  
    14 \setlength{\rightmargin}{1 cm}  
    15 \setlength{\oddsidemargin}{0 cm}  
    16 \setlength{\evensidemargin}{0 cm}  
    17 \setlength{\topmargin}{-1cm}  
    18 \setlength{\textwidth}{16 cm}  
    19 \setlength{\textheight}{25cm}  
    20  
    21 %%%%%%%%%essai plus jolis from NEMO book 
     1\documentclass{article} 
     2 
    223\usepackage{fancyhdr} 
    23  
     4\usepackage{times} 
     5\usepackage{graphicx} 
     6\usepackage{hyperref} 
     7\usepackage{minted} 
     8%\usepackage[normalem]{ulem}   % striketrough style with \sout{...} 
     9 
     10\hypersetup{pdftitle={NEMO coding conventions}, pdfauthor={NEMO System Team}, colorlinks} 
     11\setminted{style=emacs, breaklines, frame=leftline} 
     12\newmintinline[forcode]{fortran}{fontsize=auto, frame=lines}   % \forcode{...} 
     13\newminted[forlines]{fortran}{}                                % \begin{forlines} 
     14 
     15\pagestyle{empty} 
     16\setlength{\leftmargin}{1 cm} 
     17\setlength{\rightmargin}{1 cm} 
     18\setlength{\oddsidemargin}{0 cm} 
     19\setlength{\evensidemargin}{0 cm} 
     20\setlength{\topmargin}{-1cm} 
     21\setlength{\textwidth}{16 cm} 
     22\setlength{\textheight}{25cm} 
    2423\pagestyle{fancy} 
    25 %\usepackage[colorlinks=true]{hyperref} %%create link 
    26   
    27 \makeindex %% run first makeindex NEMO_coding.conv.idx NEMO_coding.conv.ist 
    28        
     24 
     25\title{ 
     26  \includegraphics[width=0.3\textwidth]{../../../figures/NEMO_grey} \\ 
     27  \vspace{1.0cm} \rule{345pt}{1.5pt} \\ 
     28  \vspace{0.45cm} {\Huge NEMO coding conventions} \rule{345pt}{1.5pt} \\ 
     29} 
     30%\title{NEMO coding conventions} 
     31\author{\Large NEMO System Team 
     32  \thanks{ 
     33    To be completed 
     34  } 
     35} 
     36\date{version X.X -- month year} 
     37 
    2938\begin{document} 
    3039 
    31  
    32 \title{  
    33 \includegraphics[width=0.3\textwidth]{NEMO_logo_Black} \\ 
    34 \vspace{1.0cm} 
    35 \rule{345pt}{1.5pt} \\ 
    36 \vspace{0.45cm} 
    37  {\Huge NEMO coding conventions}  
    38 \rule{345pt}{1.5pt} \\  
    39 {\small  -- version 3 --}   } 
    40 %\title{NEMO coding conventions} 
    41 \author{NEMO System Team } 
    42 \date{March 2011} 
    43  
    44  
    4540\maketitle 
    4641 
    4742\newpage 
    4843 
    49 \tableofcontents    
    50           
     44\tableofcontents 
     45 
    5146\newpage 
     47 
    5248%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 
    5349\section{Introduction} 
    54 This document describes conventions\index{conventions} used in NEMO coding and suggested for its development. The objectives are to offer a guide to all readers of the NEMO code, and to facilitate the work of all the developers, including the validation of their developments, and eventually the implementation of these developments within the NEMO platform. \\ 
    55 A first approach of these rules can be found in the code in $NEMO/OPA\_SRC/module\_example$ where all the basics coding conventions are illustrated. More details can be found below.\\ 
    56 This work is based on the coding conventions in use for the Community Climate System Model, \footnote { http://www.cesm.ucar.edu/working\_groups/Software/dev\_guide/dev\_guide/node7.html } 
    57  the previous version of this document (``FORTRAN coding standard in the OPA System'') and the expertise of the NEMO System Team which can be contacted for further information ($nemo\_st@locean-ipsl.upmc.fr$) 
    58 After a general overview below, this document will describe : 
    59 \begin{itemize}  
    60 \item The style rules, i.e. the syntax, appearance and naming conventions chosen to improve readability of the code; 
    61 \item The content rules, i.e. the conventions to improve the reliability of the different parts of the code; 
    62 \item The package rules to go a step further by improving the reliability of the whole and interfaces between routines and modules. 
     50 
     51This document describes conventions\index{conventions} used in NEMO coding and suggested for its development. 
     52The objectives are to offer a guide to all readers of the NEMO code, and to facilitate the work of 
     53all the developers, including the validation of their developments, and 
     54eventually the implementation of these developments within the NEMO platform. 
     55 
     56A first approach of these rules can be found in the code in \path{./src/OCE/module_example} where 
     57all the basics coding conventions are illustrated. 
     58More details can be found below. 
     59 
     60This work is based on the coding conventions in use for the Community Climate System Model 
     61\footnote {\href{http://www.cesm.ucar.edu/working_groups/Software/dev_guide/dev_guide/node7.html}{UCAR conventions}},  
     62the previous version of this document (``FORTRAN coding standard in the OPA System'') and 
     63the expertise of the NEMO System Team. 
     64After a general overview below, this document will describe: 
     65 
     66\begin{itemize} 
     67\item 
     68  The style rules, $i.e.$ the syntax, appearance and naming conventions chosen to improve readability of the code; 
     69\item 
     70  The content rules, $i.e.$ the conventions to improve the reliability of the different parts of the code; 
     71\item 
     72  The package rules to go a step further by improving the reliability of the whole and 
     73  interfaces between routines and modules. 
    6374\end{itemize} 
    6475 
    6576%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 
    6677\section{Overview and general conventions} 
    67 NEMO has several different components: ocean dynamics ($OPA\_SRC$), sea-ice ($LIM\_SRC$), ocean biogeochemistry\- ($TOP\_SRC$), linear-tangent and adjoint of the dynamics ($TAM$)É each of them corresponding to a directory. 
    68 In each directory, one will find some FORTRAN files and/or subdirectories, one per functionality of the code: $BDY$ (boundaries), $DIA$ (diagnostics), $DOM$ (domain), $DYN$ (dynamics), $LDF$ (lateral diffusion), etc...\\ 
    69 All name are chosen to be as self-explanatory as possible, in English, all prefixes are 3 digits.\\ 
     78 
     79NEMO has 3 major components: ocean dynamics (\path{./src/OCE}), sea-ice (\path{./src/ICE}) and 
     80marine biogeochemistry (\path{./src/MBG}). 
     81%, linear-tangent and adjoint of the dynamics ($TAM$) each of them corresponding to a directory. 
     82In each directory, one will find some FORTRAN files and/or subdirectories, one per functionality of the code: 
     83\path{./src/OCE/BDY} (boundaries), \path{./src/OCE/DIA} (diagnostics), \path{./src/OCE/DOM} (domain), 
     84\path{./src/OCE/DYN} (dynamics), \path{./src/OCE/LDF} (lateral diffusion), etc... \\ 
     85All name are chosen to be as self-explanatory as possible, in English, all prefixes are 3 digits. \\ 
    7086English is used for all variables names, comments, and documentation. \\ 
    71 Physical units are MKS. The only exception to this is the temperature, which is expressed in degrees Celsius, except in bulk formulae and part of LIM sea-ice model where it is in Kelvin. See $DOM/phycst.F90$ files for conversions. 
     87Physical units are MKS. The only exception to this is the temperature, which is expressed in degrees Celsius, 
     88except in bulk formulae and part of SI$^3$ sea-ice model where it is in Kelvin. 
     89See \path{.src/OCE/DOM/phycst.F90} files for conversions. 
     90 
    7291%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 
    7392\section{Architecture} 
    74 Within each directory, organisation of files is driven by ÒorthogonalityÓ\index{orthogonality}, i.e. one functionality of the code is intended to be in one and only one directory, and one module and all its related routines are in one file. 
     93 
     94Within each directory, organisation of files is driven by orthogonality\index{orthogonality}, 
     95$i.e.$ one functionality of the code is intended to be in one and only one directory, and 
     96one module and all its related routines are in one file. 
    7597The functional modules\index{module} are: 
    76 \begin{itemize}  
    77 \item SBC      surface module  
    78 \item IOM      management of the I/O  
    79 \item NST      interface to AGRIF (nesting model) for dynamics and biogeochemistry  
    80 \item OBC, BDY management of structured and unstructured open boundaries  
    81 \item C1D      1D (vertical) configuration for dynamics, sea-ice and biogeochemistry  
    82 \item OFF      off-line module: passive tracer or biogeochemistry alone  
    83 \item CFG      tutorial and reference configurations  
    84 \item DOC      documentation  
     98 
     99\begin{itemize} 
     100\item \path{SBC}             surface module 
     101\item \path{IOM}             management of the I/O 
     102\item \path{NST}             interface to AGRIF (nesting model) for dynamics and biogeochemistry 
     103\item \path{OBC}, \path{BDY} management of structured and unstructured open boundaries  
     104\item \path{C1D}             1D (vertical) configuration for dynamics, sea-ice and biogeochemistry 
     105\item \path{OFF}             off-line module: passive tracer or biogeochemistry alone 
     106\item \path{...} 
    85107\end{itemize} 
    86108 
    87 For example, the file $domain.F90$ contains the module $domain$ and all the subroutines related to this module ($ dom\_init, dom\_nam, dom\_ctl$). 
     109For example, the file \textit{domain.F90} contains the module \texttt{domain} and all the subroutines related to 
     110this module (\texttt{dom\_init, dom\_nam, dom\_ctl}). 
     111 
    88112%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 
    89113\section{Style rules} 
     114 
    90115%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 
    91116\subsection{Argument list format} 
    92 Routine argument lists will contain a maximum 5 variables\index{variable} per line, whilst continuation lines can be used.  
    93 This applies both to the calling routine and the dummy argument list in the routine being called. The purpose is to simplify matching up the arguments between caller and callee.  
    94  
    95 \begin{verbatim} 
     117 
     118Routine argument lists will contain a maximum 5 variables\index{variable} per line, 
     119whilst continuation lines can be used. 
     120This applies both to the calling routine and the dummy argument list in the routine being called. 
     121The purpose is to simplify matching up the arguments between caller and callee. 
     122 
     123\begin{forlines} 
    96124SUBROUTINE tra_adv_eiv( kt, pun, pvn, pwn ) 
    97125 
    98126      CALL tra_adv_eiv( kt, zun, zvn, zwn ) 
    99 \end{verbatim} 
     127\end{forlines} 
    100128 
    101129%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 
    102130\subsection{Array syntax} 
    103 Except for long loops (see below), array notation should be used if possible. To improve readability the array shape must be shown in brackets, e.g.:  
    104 \begin{verbatim} 
    105 onedarraya(:) = onedarrayb(:) + onedarrayc(:)  
    106 twodarray (:,:) = scalar * anothertwodarray(:,:)  
    107 \end{verbatim} 
    108 When accessing sections of arrays, for example in finite difference equations, do so by using the triplet notation on the full array, e.g.: 
    109 \begin{verbatim} 
    110 twodarray(:,2:len2) = scalar                      &  
    111    &                * ( twodarray2(:,1:len2-1 )   &  
    112    &                -   twodarray2(:,2:len2 ) )  
    113 \end{verbatim}    
    114 For long, complicated loops, explicitly indexed loops should be preferred. In general when using this syntax, the order of the loops indices should reflect the following scheme (for best usage of data locality): 
    115 \begin{verbatim} 
    116 DO jk = 1, jpk  
    117    DO jj = 1, jpj  
    118       DO ji = 1, jpi  
    119          array(ji,jj,jk) = ...  
    120       END DO  
    121    END DO  
    122 END DO  
    123 \end{verbatim} 
     131 
     132Except for long loops (see below), array notation should be used if possible. 
     133To improve readability the array shape must be shown in brackets, $e.g.$: 
     134 
     135\begin{forlines} 
     136onedarraya(:)   = onedarrayb(:) + onedarrayc(:) 
     137twodarray (:,:) = scalar * anothertwodarray(:,:) 
     138\end{forlines} 
     139 
     140When accessing sections of arrays, for example in finite difference equations, 
     141do so by using the triplet notation on the full array, $e.g.$: 
     142 
     143\begin{forlines} 
     144twodarray(:,2:len2) =   scalar                      & 
     145   &                  * ( twodarray2(:,1:len2-1 )   & 
     146   &                  -   twodarray2(:,2:len2 ) ) 
     147\end{forlines} 
     148 
     149For long, complicated loops, explicitly indexed loops should be preferred. 
     150In general when using this syntax, the order of the loops indices should reflect the following scheme 
     151(for best usage of data locality): 
     152 
     153\begin{forlines} 
     154DO jk = 1, jpk 
     155   DO jj = 1, jpj 
     156      DO ji = 1, jpi 
     157         threedarray(ji,jj,jk) = ... 
     158      END DO 
     159   END DO 
     160END DO 
     161\end{forlines} 
     162 
    124163%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 
    125164\subsection{Case} 
    126 All FORTRAN keywords are in capital : \begin {verbatim} DIMENSION, WRITE, DO, END DO, NAMELIST \end{verbatim}  
    127 All other parts of the NEMO code will be written in lower case.    
     165 
     166All FORTRAN keywords are in capital: \forcode{DIMENSION}, \forcode{WRITE}, \forcode{DO}, \forcode{END DO}, 
     167\forcode{NAMELIST}, ... All other parts of the NEMO code will be written in lower case. 
    128168 
    129169%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 
    130170\subsection{Comments} 
     171 
    131172Comments in the code are useful when reading the code and changing or developing it. \\ 
    132 The full documentation and detailed explanations are to be added in the reference manual (TeX files, aside from the code itself). \\ 
    133 In the code, the comments should explain variable content and describe each computational step.\\ 
    134 Comments in the header start with ``!!''. For more details on the content of the headers, see ÒContent rules/HeadersÓ in this document.\\ 
    135 Comments in the code start with ``!''.\\ 
    136 All comments are indented (3, 6, or 9 É blank spaces).\\ 
    137 Short comments may be included on the same line as executable code, and an additional line can be used with proper alignment. For example:  
    138 \begin{verbatim} 
    139       zx = zx *zzy   ! Describe what is going on and if it is  
    140       !              ! too long use another Ô!Õ for proper  
    141       !              ! alignment with automatic indentation  
    142 \end{verbatim}       
    143 More in-depth comments should be written in the form:  
    144 \begin{verbatim} 
    145 !   Check of some namelist values 
    146 \end{verbatim}          
    147 or  
    148 \begin{verbatim}     
     173The full documentation and detailed explanations are to be added in the reference manual 
     174(TeX files, aside from the code itself). \\ 
     175In the code, the comments should explain variable content and describe each computational step. \\ 
     176Comments in the header start with ``!!''. 
     177For more details on the content of the headers, see Content rules/Headers in this document. \\ 
     178Comments in the code start with ``!''. \\ 
     179All comments are indented (3, 6, or 9 blank spaces). \\ 
     180Short comments may be included on the same line as executable code, and an additional line can be used with 
     181proper alignment. 
     182For example: 
     183 
     184\begin{forlines} 
     185zx = zx *zzy   ! Describe what is going on and if it is 
     186!              ! too long use another ! for proper 
     187!              ! alignment with automatic indentation 
     188\end{forlines} 
     189 
     190More in-depth comments should be written in the form: 
     191 
     192\begin{forlines} 
     193   !  Check of some namelist values 
     194\end{forlines} 
     195 
     196or 
     197 
     198\begin{forlines} 
    149199! 
    150 !         !<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< 
    151 !         !  Bottom boundary condition on tke 
    152 !         !<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< 
     200!     !<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< 
     201!     !  Bottom boundary condition on tke 
     202!     !<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< 
    153203! 
    154 \end{verbatim}     
    155 Key features of this style are 1) it starts with a "!" in the column required for proper indentation, 2) the text is offset above and below by a blank line or a content line built for underlying.  
     204\end{forlines} 
     205 
     206Key features of this style are 
     207 
     208\begin{enumerate} 
     209\item it starts with a "!" in the column required for proper indentation, 
     210\item the text is offset above and below by a blank line or a content line built for underlying. 
     211\end{enumerate} 
     212 
    156213%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 
    157214\subsection{Continuation lines} 
    158 Continuation lines can be used with precise alignment for readability. For example:  
    159 \begin{verbatim}    
    160 avmu(ji,jj,jk) = avmu(ji,jj,jk) * ( un(ji,jj,jk-1) - un(ji,jj,jk) )   & 
    161    &                            * ( ub(ji,jj,jk-1) - ub(ji,jj,jk) )   & 
    162    &           / (  fse3uw_n(ji,jj,jk)         & 
    163    &              * fse3uw_b(ji,jj,jk) ) 
    164 \end{verbatim}     
    165 Code lines, which are continuation lines of assignment statements, must begin to the right of the column of the assignment operator. Due to the possibility of automatic indentation in some editor (emacs for example), use a ``\&'' as first character of the continuing lines to maintain the alignment.  
     215 
     216Continuation lines can be used with precise alignment for readability. For example: 
     217 
     218\begin{forlines} 
     219avmu(ji,jj,jk) =   avmu(ji,jj,jk) * ( un(ji,jj,jk-1) - un(ji,jj,jk) )   & 
     220   &                              * ( ub(ji,jj,jk-1) - ub(ji,jj,jk) )   & 
     221   &             / (   fse3uw_n(ji,jj,jk)                               & 
     222   &                 * fse3uw_b(ji,jj,jk) ) 
     223\end{forlines} 
     224 
     225Code lines, which are continuation lines of assignment statements, must begin to the right of the column of 
     226the assignment operator. 
     227Due to the possibility of automatic indentation in some editor (emacs for example), 
     228use a ``\&'' as first character of the continuing lines to maintain the alignment. 
     229 
    166230%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 
    167231\subsection{Declaration of arguments and local variables} 
    168232 
    169 In a routine, input arguments and local variables are declared 1 per line, with a comment field on the same line as the declaration. Multiple comment lines describing a single variable are acceptable if needed. For example:  
    170 \begin{verbatim}   
     233In a routine, input arguments and local variables are declared 1 per line, 
     234with a comment field on the same line as the declaration. 
     235Multiple comment lines describing a single variable are acceptable if needed. 
     236For example: 
     237 
     238\begin{forlines} 
    171239INTEGER             ::   kstp   ! ocean time-step index 
    172 \end{verbatim} 
     240\end{forlines} 
     241 
    173242%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 
    174243\subsection{F90 Standard} 
    175 NEMO software adheres to the FORTRAN 95 language standard and does not rely on any specific language or vendor extensions. 
     244 
     245NEMO software adheres to the FORTRAN 95 language standard and does not rely on any specific language or 
     246vendor extensions. 
    176247 
    177248 
    178249%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 
    179250\subsection{Free-Form Source} 
    180 Free-form source will be used. The F90/95 standard allows lines of up to 132 characters, but a self-imposed limit of 80 should enhance readability, or print source files with two columns per page. Multi-line comments that extend to column 100 are unacceptable. 
     251 
     252Free-form source will be used. 
     253The F90/95 standard allows lines of up to 132 characters, but a self-imposed limit of 80 should enhance readability, 
     254or print source files with two columns per page. 
     255Multi-line comments that extend to column 100 are unacceptable. 
    181256 
    182257%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 
    183258\subsection{Indentation} 
    184 Code as well as comment lines within loops, if-blocks, continuation lines, MODULE or SUBROUTINE statements will be indented 3 characters for readability. (except for CONTAINS that remains at first column)  
    185 \begin{verbatim}   
    186 MODULE mod1  
    187    REAL(wp) xx  
    188 CONTAINS  
    189    SUBROUTINE sub76( px, py, pz, pw, pa,   &  
    190       &              pb, pc, pd, pe      )  
    191       <instruction>  
    192    END SUBROUTINE sub76  
    193 END MODULE mod1  
    194 \end{verbatim} 
     259 
     260Code as well as comment lines within loops, if-blocks, continuation lines, \forcode{MODULE} or 
     261\forcode{SUBROUTINE} statements will be indented 3 characters for readability 
     262(except for \forcode{CONTAINS} that remains at first column). 
     263 
     264\begin{forlines} 
     265MODULE mod1 
     266   REAL(wp) xx 
     267CONTAINS 
     268   SUBROUTINE sub76( px, py, pz, pw, pa,   & 
     269      &              pb, pc, pd, pe          ) 
     270      <instruction> 
     271   END SUBROUTINE sub76 
     272END MODULE mod1 
     273\end{forlines} 
     274 
    195275%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 
    196276\subsection{Loops} 
    197 Loops, if explicit, should be structured with the do-end do construct as opposed to numbered loops. Nevertheless non-numeric labels can be used for a big iterative loop of a recursive algorithm. In the case of a long loop, a self-descriptive label can be used (i.e. not just a number). 
     277 
     278Loops, if explicit, should be structured with the do-end do construct as opposed to numbered loops. 
     279Nevertheless non-numeric labels can be used for a big iterative loop of a recursive algorithm. 
     280In the case of a long loop, a self-descriptive label can be used ($i.e.$ not just a number). 
    198281 
    199282%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 
    200283\subsection{Naming Conventions: files} 
    201 A file containing a module will have the same name as the module it contains (because dependency rules used by "make" programs are based on file names). 
    202 \footnote{For example, if routine A "USE"s module B, then "make" must be told of the dependency relation which requires B to be compiled before A. If one can assume that module B resides in file B.o, building a tool to generate this dependency rule (e.g. A.o: B.o) is quite simple. Put another way, it is difficult (to say nothing of CPU-intensive) to search an entire source tree to find the file in which module B resides for each routine or module which "USE"s B.} 
     284 
     285A file containing a module will have the same name as the module it contains 
     286(because dependency rules used by "make" programs are based on file names). 
     287\footnote{ 
     288  For example, if routine A "\forcode{USE}"s module B, then "make" must be told of the dependency relation which 
     289  requires B to be compiled before A. 
     290  If one can assume that module B resides in file B.o, 
     291  building a tool to generate this dependency rule ($e.g.$ A.o: B.o) is quite simple. 
     292  Put another way, it is difficult (to say nothing of CPU-intensive) to search an entire source tree to 
     293  find the file in which module B resides for each routine or module which "\forcode{USE}"s B. 
     294} 
    203295 
    204296%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 
    205297\subsection{Naming Conventions: modules} 
    206 Use a meaningful English name and the ``3 letters'' naming convention: first 3 letters for the code section, and last 3 to describe the module. For example, zdftke, where ``zdf'' stands for vertical diffusion, and ``tke'' for turbulent kinetic energy.  
    207 \\ 
    208 Note that by implication multiple modules are not allowed in a single file.  
    209 The use of common blocks is deprecated in Fortran 90 and their use in NEMO is strongly discouraged. Modules are a better way to declare static data. Among the advantages of modules is the ability to freely mix data of various types, and to limit access to contained variables through the use of the ONLY and PRIVATE attributes.  
     298 
     299Use a meaningful English name and the ``3 letters'' naming convention: 
     300first 3 letters for the code section, and last 3 to describe the module. 
     301For example, zdftke, where ``zdf'' stands for vertical diffusion, and ``tke'' for turbulent kinetic energy. \\ 
     302Note that by implication multiple modules are not allowed in a single file. 
     303The use of common blocks is deprecated in Fortran 90 and their use in NEMO is strongly discouraged. 
     304Modules are a better way to declare static data. 
     305Among the advantages of modules is the ability to freely mix data of various types, and 
     306to limit access to contained variables through the use of the \forcode{ONLY} and \forcode{PRIVATE} attributes. 
    210307 
    211308%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 
    212309\subsection{Naming Conventions: variables} 
    213 All variable should be named as explicitly as possible in English. The naming convention concerns prefix letters of these name, in  order to identify the variable type and status.\\ 
     310 
     311All variable should be named as explicitly as possible in English. 
     312The naming convention concerns prefix letters of these name, in order to identify the variable type and status. \\ 
    214313Never use a FORTRAN keyword as a routine or variable name. \\ 
    215314The table below lists the starting letter(s) to be used for variable naming, depending on their type and status: 
    216315%--------------------------------------------------TABLE-------------------------------------------------- 
    217316\begin{table}[htbp] 
    218 \begin{center} 
    219 \begin{tabular}{|p{50pt}|p{50pt}|p{50pt}|p{50pt}|p{50pt}|p{50pt}|p{50pt}|} 
    220 \hline  Type \par / Status &   integer&   real&   logical &   character&   double \par precision&   complex \\   
    221 \hline 
    222 public  \par or  \par module variable&  
    223 \textbf{m n} \par \textit{but not } \par \textbf{nn\_}&  
    224 \textbf{a b e f g h o} \textbf{q} \textit{to} \textbf{x} \par but not \par \textbf{fs rn\_}&  
    225 \textbf{l} \par \textit{but not} \par \textbf{lp ld ll ln\_}&  
    226 \textbf{c} \par \textit{but not} \par \textbf{cp cd cl cn\_}&  
    227 \textbf{d} \par \textit{but not} \par \textbf{dp dd dl dn\_}&  
    228 \textbf{y} \par \textit{but not} \par \textbf{yp yd yl} \\ 
    229 \hline 
    230 dummy \par argument&  
    231 \textbf{k} \par \textit{but not} \par \textbf{kf}&  
    232 \textbf{p} \par \textit{but not}  \par \textbf{pp pf}&  
    233 \textbf{ld}&  
    234 \textbf{cd}&  
    235 \textbf{dd}&  
    236 \textbf{yd} \\ 
    237 \hline 
    238 local \par variable&  
    239 \textbf{i}&  
    240 \textbf{z}&  
    241 \textbf{ll}&  
    242 \textbf{cl}&  
    243 \textbf{cd}&  
    244 \textbf{yl} \\ 
    245 \hline 
    246 loop \par control&  
    247 \textbf{j} \par \textit{but not } \par \textbf{jp}&  
    248 &  
    249 &  
    250 &  
    251 &  
    252  \\ 
    253 \hline 
    254 parameter&  
    255 \textbf{jp}&  
    256 \textbf{pp}&  
    257 \textbf{lp}&  
    258 \textbf{cp}&  
    259 \textbf{dp}&  
    260 \textbf{yp} \\ 
    261 \hline 
    262  
    263 namelist& 
    264 \textbf{nn\_}&  
    265 \textbf{rn\_}&  
    266 \textbf{ln\_}&  
    267 \textbf{cn\_}&  
    268 \textbf{dn\_}&  
    269 \\ 
    270 \hline 
    271 CPP \par macro&  
    272 \textbf{kf}&  
    273 \textbf{sf} \par &  
    274 &  
    275 &  
    276 &  
    277  \\ 
    278 \hline 
    279 \end{tabular} 
    280 \label{tab1} 
    281 \end{center} 
     317  \begin{center} 
     318    \begin{tabular}{|p{50pt}|p{50pt}|p{50pt}|p{50pt}|p{50pt}|p{50pt}|p{50pt}|} 
     319      \hline 
     320      Type \par / Status &   integer&   real&   logical &   character&   double \par precision&   complex \\ 
     321      \hline 
     322      public  \par or  \par module variable& \textbf{m n} \par \textit{but not } \par \textbf{nn\_}& \textbf{a b e f g h o} \textbf{q} \textit{to} \textbf{x} \par but not \par \textbf{fs rn\_}& \textbf{l} \par \textit{but not} \par \textbf{lp ld ll ln\_}& \textbf{c} \par \textit{but not} \par \textbf{cp cd cl cn\_}& \textbf{d} \par \textit{but not} \par \textbf{dp dd dl dn\_}& \textbf{y} \par \textit{but not} \par \textbf{yp yd yl} \\ 
     323      \hline 
     324      dummy \par argument& \textbf{k} \par \textit{but not} \par \textbf{kf}& \textbf{p} \par \textit{but not}  \par \textbf{pp pf}& \textbf{ld}& \textbf{cd}& \textbf{dd}& \textbf{yd} \\ 
     325      \hline 
     326      local \par variable& \textbf{i}& \textbf{z}& \textbf{ll}& \textbf{cl}& \textbf{cd}& \textbf{yl} \\ 
     327      \hline 
     328      loop \par control& \textbf{j} \par \textit{but not } \par \textbf{jp}& & & & &  \\ 
     329      \hline 
     330      parameter& \textbf{jp}& \textbf{pp}& \textbf{lp}& \textbf{cp}& \textbf{dp}& \textbf{yp} \\ 
     331      \hline 
     332      namelist& \textbf{nn\_}& \textbf{rn\_}& \textbf{ln\_}& \textbf{cn\_}& \textbf{dn\_}& \\ 
     333      \hline 
     334      CPP \par macro& \textbf{kf}& \textbf{sf} \par & & & & \\ 
     335      \hline 
     336    \end{tabular} 
     337    \label{tab1} 
     338  \end{center} 
    282339\end{table} 
    283340%-------------------------------------------------------------------------------------------------------------- 
     
    285342%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 
    286343\subsection{Operators} 
    287 Use of the operators $<, >, <=, >=, ==, /= $ is strongly recommended instead of their deprecated counterparts, $lt., .gt., .le., .ge., .eq., and .ne. $ The motivation is readability. In general use the notation: \\ 
     344 
     345Use of the operators \texttt{<, >, <=, >=, ==, /=} is strongly recommended instead of their deprecated counterparts 
     346(\texttt{.lt., .gt., .le., .ge., .eq., .ne.}). 
     347The motivation is readability. 
     348In general use the notation: \\ 
    288349$<Blank><Operator><Blank>$ 
    289350%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 
    290351\subsection{Pre processor} 
    291 Where the use of a language pre-processor is required, it will be the C pre-processor (cpp).\\ 
     352 
     353Where the use of a language pre-processor is required, it will be the C pre-processor (cpp). \\ 
    292354The cpp key is the main feature used, allowing to ignore some useless parts of the code at compilation step. \\ 
    293355The advantage is to reduce the memory use; the drawback is that compilation of this part of the code isn't checked. \\ 
    294 The cpp key feature should only be used for a few limited options, if it reduces the memory usage. In all cases, a logical variable and a FORTRAN $IF$ should be preferred. 
    295 When using a cpp key $key\_optionname$, a corresponding logical variable $lk\_optionname$ should be declared to allow FORTRAN $IF$ tests in the code and  a FORTRAN module with the same name (i.e. $optionname.F90$) should 
    296  be defined. This module is the only place where a ``\#if defined'' command appears, selecting either the whole FORTRAN code or a dummy module. For example, the TKE vertical physics, the module name is $zdftke.F90$, the CPP key is $key\_zdftke$ and the associated logical is $lk\_zdftke$.  
     356The cpp key feature should only be used for a few limited options, if it reduces the memory usage. 
     357In all cases, a logical variable and a FORTRAN \forcode{IF} should be preferred. 
     358When using a cpp key \textit{key\_optionname}, 
     359a corresponding logical variable \textit{lk\_optionname} should be declared to 
     360allow FORTRAN \forcode{IF} tests in the code and 
     361a FORTRAN module with the same name ($i.e.$ \textit{optionname.F90}) should be defined. 
     362This module is the only place where a \``\#if defined'' command appears, selecting either the whole FORTRAN code or 
     363a dummy module. 
     364For example, the TKE vertical physics, the module name is \textit{zdftke.F90}, 
     365the CPP key is \textit{key\_zdftke} and the associated logical is \textit{lk\_zdftke}. 
    297366 
    298367The following syntax: 
    299 \begin{verbatim}  
    300 #if defined key_optionname  
     368 
     369\begin{forlines} 
     370#if defined key_optionname 
    301371!! Part of code conditionally compiled if cpp key key_optionname is active 
    302372#endif 
    303 \end{verbatim}  
     373\end{forlines} 
     374 
    304375Is to be used rather than the \#ifdef abbreviate form since it may have conflicts with some Unix scripts. 
    305376 
    306377Tests on cpp keys included in NEMO at compilation step: 
     378 
    307379\begin{itemize} 
    308 \item The CPP keys used are compared to the previous list of cpp keys (the compilation will stop if trying to specify a Ònon-existing keyÓ) 
    309 \item If a change occurs in the CPP keys used for a given experiment, the whole compilation phase is done again. 
     380\item 
     381  The CPP keys used are compared to the previous list of cpp keys 
     382  (the compilation will stop if trying to specify a non-existing key) 
     383\item 
     384  If a change occurs in the CPP keys used for a given experiment, the whole compilation phase is done again. 
    310385\end{itemize} 
    311386%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 
     
    314389%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 
    315390\subsection{Configurations} 
    316 The configuration defines the domain and the grid on which NEMO is running. It may be useful to associate a cpp key and some variables to a given configuration, although the part of the code changed under each of those keys should be minimized. As an example, the "ORCA2" configuration (global ocean, 2 degrees grid size) is associated with the cpp key $key\_orca2$ for which  
    317 \begin{verbatim}  
     391 
     392The configuration defines the domain and the grid on which NEMO is running. 
     393It may be useful to associate a cpp key and some variables to a given configuration, although 
     394the part of the code changed under each of those keys should be minimized. 
     395As an example, the "ORCA2" configuration (global ocean, 2 degrees grid size) is associated with 
     396the cpp key \texttt{key\_orca2} for which 
     397 
     398\begin{forlines} 
    318399cp_cfg = "orca" 
    319400jp_cfg = 2 
    320 \end{verbatim}  
     401\end{forlines} 
     402 
    321403%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 
    322404\subsection{Constants} 
    323 Physical constants (e.g. pi, gas constants) must never be hardwired into the executable portion of a code. Instead, a mnemonically named variable or parameter should be set to the appropriate value, in the setup routine for the package\index{package}. We realize than many parameterizations rely on empirically derived constants or fudge factors, which are not easy to name. In these cases it is not forbidden to leave such factors coded as "magic numbers" buried in executable code, but comments should be included referring to the source of the empirical formula. Hard-coded numbers should never be passed through argument lists.  
     405 
     406Physical constants ($e.g.$ $\pi$, gas constants) must never be hardwired into the executable portion of a code. 
     407Instead, a mnemonically named variable or parameter should be set to the appropriate value, 
     408in the setup routine for the package\index{package}. 
     409We realize than many parameterizations rely on empirically derived constants or fudge factors, 
     410which are not easy to name. 
     411In these cases it is not forbidden to leave such factors coded as "magic numbers" buried in executable code, but 
     412comments should be included referring to the source of the empirical formula. 
     413Hard-coded numbers should never be passed through argument lists. 
    324414 
    325415%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 
    326416\subsection{Declaration for variables and constants} 
    327417 
    328 \subsubsection{Rules :} 
    329 Variables used as constants should be declared with attribute PARAMETER and used always without copying to local variables, inorder to prevent from using different values for the same constant or changing it accidentally.  
     418\subsubsection{Rules} 
     419 
     420Variables used as constants should be declared with attribute \forcode{PARAMETER} and 
     421used always without copying to local variables, in order to 
     422prevent from using different values for the same constant or changing it accidentally. 
     423 
    330424\begin{itemize} 
    331 \item Usage of the DIMENSION statement or attribute is required in declaration statements 
    332 \item The ``::'' notation is quite useful to show that this program unit declaration part is  written in standard FORTRAN syntax, even if there are no attributes to clarify the  declaration section. Always use the notation $<$blank$>$::$<$three blanks$>$ to improve readability.  
    333 \item Declare the length of a character variable using the CHARACTER (len=xxx) syntax 
    334 \footnote { The len specifier is important because it is possible to have several kinds for characters  (e.g. Unicode using two bytes per character, or there might be a different kind for Japanese e.g. NEC). } 
    335  
    336 \item For all global data (in contrast to module data, that is all data that can be access by other module) must be accompanied with a comment field  on the same line.  
    337 \footnote {This allows a easy research of where and how a variable is declared using the unix command: ``grep var *90 |grep !:''. } 
    338 \\ 
     425\item 
     426  Usage of the \forcode{DIMENSION} statement or attribute is required in declaration statements 
     427\item 
     428  The ``::'' notation is quite useful to show that this program unit declaration part is written in 
     429  standard FORTRAN syntax, even if there are no attributes to clarify the declaration section. 
     430  Always use the notation $<$blank$>$::$<$three blanks$>$ to improve readability. 
     431\item 
     432  Declare the length of a character variable using the \forcode{CHARACTER} (len=xxx) syntax 
     433  \footnote { 
     434    The len specifier is important because it is possible to have several kinds for characters 
     435    ($e.g.$ Unicode using two bytes per character, or there might be a different kind for Japanese $e.g.$ NEC). 
     436  } 
     437\item 
     438  For all global data (in contrast to module data, that is all data that can be access by other module) 
     439  must be accompanied with a comment field on the same line 
     440  \footnote { 
     441    This allows a easy research of where and how a variable is declared using the unix command: 
     442    ``grep var *90 | grep !:''. 
     443  }. 
     444  For example: 
     445  \begin{forlines} 
     446  REAL(wp), DIMENSION(jpi,jpj,jpk) ::  ua   ! i-horizontal velocity (m/s) 
     447  \end{forlines} 
     448\end{itemize} 
     449 
     450\subsubsection{Implicit None} 
     451 
     452All subroutines and functions will include an \forcode{IMPLICIT NONE} statement. 
     453Thus all variables must be explicitly typed. 
     454It also allows the compiler to detect typographical errors in variable names. 
     455For modules, one \forcode{IMPLICIT NONE} statement in the modules definition section is needed. 
     456This also removes the need to have \forcode{IMPLICIT NONE} statements in 
     457any routines that are \forcode{CONTAINS}'ed in the module. 
     458Improper data initialisation is another common source of errors 
     459\footnote{ 
     460  A variable could contain an initial value you did not expect. 
     461  This can happen for several reasons, $e.g.$ the variable has never been assigned a value, its value is outdated, 
     462  memory has been allocated for a pointer but you have forgotten to initialise the variable pointed to. 
     463}. 
     464To avoid problems, initialise variables as close as possible to where they are first used. 
     465 
     466\subsubsection{Attributes} 
     467 
     468\forcode{PRIVATE} / \forcode{PUBLIC}: 
     469All resources of a module are \forcode{PUBLIC} by default. 
     470A reason to store multiple routines and their data in a single module is that 
     471the scope of the data defined in the module can be limited to the routines which are in the same module. 
     472This is accomplished with the \forcode{PRIVATE} attribute. \\ 
     473\forcode{INTENT}: 
     474All dummy arguments of a routine must include the \forcode{INTENT} clause in their declaration in order to 
     475improve control of variables in routine calls. 
     476 
     477%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 
     478\subsection{Headers} 
     479 
     480Prologues are not used in NEMO for now, although it may become an interesting tool in combination with 
     481ProTeX auto documentation script in the future. 
     482Rules to code the headers and layout of a module or a routine are illustrated in the example module available with 
     483the code: \path{./src/OCE/module_example} 
     484 
     485%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 
     486\subsection{Interface blocks} 
     487 
     488Explicit interface blocks are required between routines if optional or keyword arguments are to be used. 
     489They also allow the compiler to check that the type, shape and number of arguments specified in the \forcode{CALL} 
     490are the same as those specified in the subprogram itself. 
     491FORTRAN 95 compilers can automatically provide explicit interface blocks for routines contained in a module. 
     492 
     493%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 
     494\subsection{I/O Error Conditions} 
     495 
     496I/O statements which need to check an error condition will use the \texttt{iostat=<integer variable>} construct 
     497instead of the outmoded \texttt{end=} and \forcode{err=}. \\ 
     498Note that a 0 value means success, a positive value means an error has occurred, and 
     499a negative value means the end of record or end of file was encountered. 
     500 
     501%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 
     502\subsection{PRINT - ASCII output files} 
     503 
     504Output listing and errors are directed to \texttt{numout} logical unit =6 and 
     505produces a file called \textit{ocean.output} (use \texttt{ln\_prt} to have one output per process in MPP). 
     506Logical \texttt{lwp} variable allows for less verbose outputs. 
     507To output an error from a routine, one can use the following template: 
     508 
     509\begin{forlines} 
     510IF( nstop /= 0 .AND. lwp ) THEN   ! error print 
     511   WRITE(numout,cform_err) 
     512   WRITE(numout,*) nstop, ' error have been found' 
     513ENDIF 
     514\end{forlines} 
     515 
     516%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 
     517\subsection{Precision} 
     518 
     519Parameterizations should not rely on vendor-supplied flags to supply a default floating point precision or 
     520integer size. 
     521The F95 \forcode{KIND} feature should be used instead. 
     522In order to improve portability between 32 and 64 bit platforms, 
     523it is necessary to make use of kinds by using a specific module \path{./src/OCE/par_kind.F90} 
     524declaring the "kind definitions" to obtain the required numerical precision and range as well as 
     525the size of \forcode{INTEGER}. 
     526It should be noted that numerical constants need to have a suffix of \texttt{\_kindvalue} to 
     527have the according size. \\ 
     528Thus \forcode{wp} being the "working precision" as declared in \path{./src/OCE/par_kind.F90}, 
     529declaring real array \forcode{zpc} will take the form: 
     530 
     531\begin{forlines} 
     532REAL(wp), DIMENSION(jpi,jpj,jpk) ::  zpc      ! power consumption 
     533\end{forlines} 
     534 
     535%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 
     536\subsection{Structures} 
     537 
     538The \forcode{TYPE} structure allowing to declare some variables is more often used in NEMO, 
     539especially in the modules dealing with reading fields, or interfaces. 
    339540For example: 
    340 \begin{verbatim} 
    341 REAL(wp), DIMENSION(jpi,jpj,jpk) ::  ua  &  !: i-horizontal velocity (m/s)  
    342 \end{verbatim} 
    343 \end{itemize} 
    344  
    345 \subsubsection{Implicit None:} 
    346  All subroutines and functions will include an IMPLICIT NONE statement.  
    347 Thus all variables must be explicitly typed. It also allows the compiler to detect typographical errors in variable names.  
    348 For modules, one IMPLICIT NONE statement in the modules definition section is needed. This also removes the need to have IMPLICIT NONE statements in any routines that are CONTAIN'd in the module. 
    349 Improper data initialisation is another common source of errors.  
    350 \footnote{A variable could contain an initial value you did not expect. This can happen for several reasons, e.g. the variable has never been assigned a value, its value is outdated, memory has been allocated for a pointer but you have forgotten to initialise the variable pointed to.}  
    351 To avoid problems, initialise variables as close as possible to where they are first used.  
    352  
    353 \subsubsection{Attributes:} 
    354 $PRIVATE / PUBLIC$ :  
    355 All resources of a module are $PUBLIC$ by default. 
    356 A reason to store multiple routines and their data in a single module is that the scope of the data defined in the module can be limited to the routines which are in the same module. This is accomplished with the $PRIVATE$ attribute.\\ 
    357 $INTENT$ : 
    358 All dummy arguments of a routine must include the $INTENT$ clause in their declaration in order to improve control of variables in routine calls.  
    359  
    360 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 
    361 \subsection{Headers} 
    362 Prologues are not used in NEMO for now, although it may become an interesting tool in combination with ProTeX auto documentation script in the future.  
    363 Rules to code the headers and layout of a module or a routine are illustrated in the example module available with the code : {\it NEMO/OPA\_SRC/module\_example} 
    364 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 
    365 \subsection{Interface blocks} 
    366 Explicit interface blocks are required between routines if optional or keyword arguments are to be used. They also allow the compiler to check that the type, shape and number of arguments specified in the CALL are the same as those specified in the subprogram itself. FORTRAN 95 compilers can automatically provide explicit interface blocks  for routines contained in a module.  
    367 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 
    368 \subsection{I/O Error Conditions} 
    369 I/O statements which need to check an error condition will use the $iostat=<integer variable>$ construct instead of the outmoded end= and err=. \\ 
    370 Note that a 0 value means success, a positive value means an error has occurred, and a negative value means the end of record or end of file was encountered.  
    371  %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 
    372 \subsection{PRINT - ASCII output files} 
    373 Output listing and errors are directed to $numout$ logical unit =6 and produces a file called $ocean.output$  (use ln\_prt to have one output per process in  MPP). Logical $lwp$ variable allows for less verbose outputs. 
    374 To output an error from a routine, one can use the following template: 
    375 \begin{verbatim} 
    376       IF( nstop /= 0 .AND. lwp ) THEN   ! error print 
    377          WRITE(numout,cform_err) 
    378          WRITE(numout,*) nstop, ' error have been found' 
    379       ENDIF 
    380 \end{verbatim} 
    381  
    382 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 
    383 \subsection{Precision} 
    384 Parameterizations should not rely on vendor-supplied flags to supply a default floating point precision or integer size. The F95$ KIND$ feature should be used instead. In order to improve portability between 32 and 64 bit platforms, it is necessary to make use of kinds by using a specific module ($OPA\_SRC/par\_kind.F90$)  declaring the "kind definitions" to obtain the required numerical precision and range as well as the size of INTEGER. It should be noted that numerical constants need to have a suffix of \_$kindvalue$ to have the according size. \\ 
    385 Thus $wp$ being the "working precision" as declared in $OPA\_SRC/par\_kind.F90$, declaring real array $zpc$ will take the form: 
    386 \begin{verbatim} 
    387       REAL(wp), DIMENSION(jpi,jpj,jpk) ::  zpc      ! power consumption 
    388 \end{verbatim} 
    389 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 
    390 \subsection{Structures} 
    391 The TYPE structure allowing to declare some variables is more often used in NEMO, especially in the modules dealing with reading fields, or interfaces.For example 
    392 \begin{verbatim} 
    393  ! Definition of a tracer as a structure 
    394       TYPE PTRACER 
    395          CHARACTER(len = 20)  :: sname  !: short name 
    396          CHARACTER(len = 80 ) :: lname  !: long name 
    397          CHARACTER(len = 20 ) :: unit   !: unit 
    398          LOGICAL              :: lini   !: read in a file or not 
    399          LOGICAL              :: lsav   !: ouput the tracer or not 
    400       END TYPE PTRACER 
    401  
    402       TYPE(PTRACER) , DIMENSION(jptra) :: tracer 
    403 \end{verbatim} 
    404   
    405  Missing rule on structure name?? 
    406  %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 
     541 
     542\begin{forlines} 
     543! Definition of a tracer as a structure 
     544TYPE PTRACER 
     545   CHARACTER(len = 20)  :: sname  ! short name 
     546   CHARACTER(len = 80 ) :: lname  ! long name 
     547   CHARACTER(len = 20 ) :: unit   ! unit 
     548   LOGICAL              :: lini   ! read in a file or not 
     549   LOGICAL              :: lsav   ! ouput the tracer or not 
     550END TYPE PTRACER 
     551 
     552TYPE(PTRACER) , DIMENSION(jptra) :: tracer 
     553\end{forlines} 
     554 
     555Missing rule on structure name?? 
     556 
     557%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 
    407558\section{Packages coding rules} 
    408   
     559 
    409560%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 
    410561\subsection{Bounds checking} 
    411 NEMO is able to run when an array bounds checking option is enabled (provided the cpp key $key\_vectopt\_loop$ is not defined). \\ 
    412 Thus, constructs of the  following form are disallowed:  
    413 \begin{verbatim} 
    414 REAL(wp) :: arr(1)  
    415 \end{verbatim} 
    416 where "arr" is an input argument into which the user wishes to index beyond 1. Use of the (*) construct in array dimensioning  is forbidden also because it effectively disables array bounds checking. 
     562 
     563NEMO is able to run when an array bounds checking option is enabled 
     564(provided the cpp key \texttt{key\_vectopt\_loop} is not defined). \\ 
     565Thus, constructs of the following form are disallowed: 
     566 
     567\begin{forlines} 
     568REAL(wp) :: arr(1) 
     569\end{forlines} 
     570 
     571where "arr" is an input argument into which the user wishes to index beyond 1. 
     572Use of the (*) construct in array dimensioning is forbidden also because 
     573it effectively disables array bounds checking. 
     574 
    417575%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 
    418576\subsection{Communication} 
    419 A package should refer only to its own modules and subprograms and to those intrinsic functions included in the Fortran standard.\\ 
     577 
     578A package should refer only to its own modules and subprograms and to those intrinsic functions included in 
     579the Fortran standard. \\ 
    420580All communication with the package will be through the argument list or namelist input. 
    421 \footnote { The point behind this rule is that packages should not have to know details of the surrounding model data structures, or the names of variables outside of the package. A notable exception to this rule is model resolution parameters. The reason for the exception is to allow compile-time array sizing inside the package. This is often important for efficiency.} 
     581\footnote{ 
     582  The point behind this rule is that packages should not have to know details of 
     583  the surrounding model data structures, or the names of variables outside of the package. 
     584  A notable exception to this rule is model resolution parameters. 
     585  The reason for the exception is to allow compile-time array sizing inside the package. 
     586  This is often important for efficiency. 
     587} 
     588 
    422589%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 
    423590\subsection{Error conditions} 
    424 When an error condition occurs inside a package, a message describing what went wrong will be printed (see PRINT - ASCII output files). The name of the routine in which the error occurred must be included. It is acceptable to terminate execution within a package, but the developer may instead wish to return an error flag through the argument list, see $stpctl.F90$. 
     591 
     592When an error condition occurs inside a package, a message describing what went wrong will be printed 
     593(see PRINT - ASCII output files). 
     594The name of the routine in which the error occurred must be included. 
     595It is acceptable to terminate execution within a package, but 
     596the developer may instead wish to return an error flag through the argument list, 
     597see \textit{stpctl.F90}. 
     598 
    425599%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 
    426600\subsection{Memory management} 
    427601 
    428 The main action is to identify and declare which arrays are PUBLIC and 
    429 which are PRIVATE.\\ As of version 3.3.1 of NEMO, the use of static 
    430 arrays (size fixed at compile time) has been deprecated.  All module 
    431 arrays are now declared ALLOCATABLE and allocated in either the 
    432 $<$module\_name$>$\_alloc() or $<$module\_name$>$\_init() 
    433 routines. The success or otherwise of each ALLOCATE must be checked 
    434 using the $Stat=<integer\ variable>$ optional argument.\\ 
    435  
    436 In addition to arrays contained within modules, many routines in NEMO 
    437 require local, ``workspace'' arrays to hold the intermediate results 
    438 of calculations. In previous versions of NEMO, these arrays were 
    439 declared in such a way as to be automatically allocated on the stack 
    440 when the routine was called.  An example of an automatic array is: 
    441 \begin{verbatim} 
    442 SUBROUTINE sub(n)  
    443    REAL :: a(n)  
    444    ...  
    445 END SUBROUTINE sub  
    446 \end{verbatim} 
    447 The downside of this approach is that the program will crash if it 
    448 runs out of stack space and the reason for the crash might not be 
    449 obvious to the user. 
    450  
    451 Therefore, as of version 3.3.1, the use of automatic arrays is 
    452 deprecated. Instead, a new module, ``wrk\_nemo,'' has been introduced 
    453 which contains 1-,2-,3- and 4-dimensional workspace arrays for use in 
    454 subroutines. These workspace arrays should be used in preference to 
    455 declaring new, local (allocatable) arrays whenever possible. The only 
    456 exceptions to this are when workspace arrays with lower bounds other 
    457 than 1 and/or with extent(s) greater than those in the {\it wrk\_nemo} 
    458 module are required.\\ 
    459  
    460 The 2D, 3D and 4D workspace arrays in {\it wrk\_nemo} have extents 
    461 $jpi$, $jpj$, $jpk$ and $jpts$ ($x$, $y$, $z$ and tracers) in the first, 
    462 second, third and fourth dimensions, respectively. The 1D arrays are 
    463 allocated with extent MAX($jpi\times jpj, jpk\times jpj, jpi\times 
    464 jpk$).\\ 
    465  
    466 The REAL (KIND=$wp$) workspace arrays in {\it wrk\_nemo} are named 
    467 e.g. $wrk\_1d\_1$, $wrk\_4d\_2$ etc. and should be accessed by USE'ing 
    468 the {\it wrk\_nemo} module. Since these arrays are available to any 
    469 routine, some care must be taken that a given workspace array is not 
    470 already being used somewhere up the call stack. To help with this, 
    471 {\it wrk\_nemo} also contains some utility routines; {\it 
    472   wrk\_in\_use()} and {\it wrk\_not\_released()}. The former first 
    473 checks that the requested arrays are not already in use and then sets 
    474 internal flags to show that they are now in use. The {\it 
    475   wrk\_not\_released()} routine un-sets those internal flags. A 
    476 subroutine using this functionality for two, 3D workspace arrays named 
    477 $zwrk1$ and $zwrk2$ will look something like: 
    478 \begin{verbatim} 
     602The main action is to identify and declare which arrays are \forcode{PUBLIC} and which are \forcode{PRIVATE}. \\ 
     603As of version 3.3.1 of NEMO, the use of static arrays (size fixed at compile time) has been deprecated. 
     604All module arrays are now declared \forcode{ALLOCATABLE} and 
     605allocated in either the \texttt{<module\_name>\_alloc()} or \texttt{<module\_name>\_init()} routines. 
     606The success or otherwise of each \forcode{ALLOCATE} must be checked using 
     607the \texttt{stat=<integer\ variable>} optional argument. \\ 
     608 
     609In addition to arrays contained within modules, many routines in NEMO require local, ``workspace'' arrays to 
     610hold the intermediate results of calculations. 
     611In previous versions of NEMO, these arrays were declared in such a way as to be automatically allocated on 
     612the stack when the routine was called. 
     613An example of an automatic array is: 
     614 
     615\begin{forlines} 
     616SUBROUTINE sub(n) 
     617   REAL :: a(n) 
     618   ... 
     619END SUBROUTINE sub 
     620\end{forlines} 
     621 
     622The downside of this approach is that the program will crash if it runs out of stack space and 
     623the reason for the crash might not be obvious to the user. 
     624 
     625Therefore, as of version 3.3.1, the use of automatic arrays is deprecated. 
     626Instead, a new module, \textit{wrk\_nemo.F90}, has been introduced which 
     627contains 1-,2-,3- and 4-dimensional workspace arrays for use in subroutines. 
     628These workspace arrays should be used in preference to declaring new, local (allocatable) arrays whenever possible. 
     629The only exceptions to this are when workspace arrays with lower bounds other than 1 and/or 
     630with extent(s) greater than those in the \textit{wrk\_nemo.F90} module are required. \\ 
     631 
     632The 2D, 3D and 4D workspace arrays in \textit{wrk\_nemo.F90} have extents \texttt{jpi}, \texttt{jpj}, 
     633\texttt{jpk} and \texttt{jpts} ($x$, $y$, $z$ and tracers) in the first, second, third and fourth dimensions, 
     634respectively. 
     635The 1D arrays are allocated with extent MAX($jpi \times jpj, jpk \times jpj, jpi \times jpk$). \\ 
     636 
     637The \forcode{REAL (KIND = wp)} workspace arrays in \textit{wrk\_nemo.F90} 
     638are named $e.g.$ \texttt{wrk\_1d\_1, wrk\_4d\_2} etc. and 
     639should be accessed by USE'ing the \textit{wrk\_nemo.F90} module. 
     640Since these arrays are available to any routine, 
     641some care must be taken that a given workspace array is not already being used somewhere up the call stack. 
     642To help with this, \textit{wrk\_nemo.F90} also contains some utility routines; 
     643\texttt{wrk\_in\_use()} and \texttt{wrk\_not\_released()}. 
     644The former first checks that the requested arrays are not already in use and then sets internal flags to show that 
     645they are now in use. 
     646The \texttt{wrk\_not\_released()} routine un-sets those internal flags. 
     647A subroutine using this functionality for two, 3D workspace arrays named \texttt{zwrk1} and 
     648\texttt{zwrk2} will look something like: 
     649 
     650\begin{forlines} 
    479651SUBROUTINE sub() 
    480    USE wrk_nemo, ONLY: wrk_in_use, wrk_not_released  
     652   USE wrk_nemo, ONLY: wrk_in_use, wrk_not_released 
    481653   USE wrk_nemo, ONLY: zwrk1 => wrk_3d_5, zwrk2 => wrk_3d_6 
    482654   ! 
     
    485657      RETURN 
    486658   END IF 
    487    ...  
     659   ... 
    488660   ... 
    489661   IF(wrk_not_released(3, 5,6)THEN 
     
    491663   END IF 
    492664   ! 
    493 END SUBROUTINE sub  
    494 \end{verbatim} 
    495 The first argument to each of the utility routines is the 
    496 dimensionality of the required workspace (1--4). Following this there 
    497 must be one or more integers identifying which workspaces are to be 
    498 used/released. 
     665END SUBROUTINE sub 
     666\end{forlines} 
     667 
     668The first argument to each of the utility routines is the dimensionality of the required workspace (1--4). 
     669Following this there must be one or more integers identifying which workspaces are to be used/released. 
    499670Note that, in the interests of keeping the code as simple as possible, 
    500 there is no use of POINTERs etc. in the {\it wrk\_nemo} 
    501 module. Therefore it is the responsibility of the developer to ensure 
    502 that the arguments to {\it wrk\_in\_use()} and {\it 
    503   wrk\_not\_released()} match the workspace arrays actually being used 
    504 by the subroutine.\\ 
    505  
    506 If a workspace array is required that has extent(s) less than those of 
    507 the arrays in the {\it wrk\_nemo} module then the advantages of 
    508 implicit loops and bounds checking may be retained by defining a 
    509 pointer to a sub-array as follows: 
    510 \begin{verbatim} 
     671there is no use of \forcode{POINTER}s etc. in the \textit{wrk\_nemo.F90} module. 
     672Therefore it is the responsibility of the developer to ensure that the arguments to \texttt{wrk\_in\_use()} and 
     673\texttt{wrk\_not\_released()} match the workspace arrays actually being used by the subroutine. \\ 
     674 
     675If a workspace array is required that has extent(s) less than those of the arrays in 
     676the \textit{wrk\_nemo.F90} module then the advantages of implicit loops and bounds checking may be retained by 
     677defining a pointer to a sub-array as follows: 
     678 
     679\begin{forlines} 
    511680SUBROUTINE sub() 
    512    USE wrk_nemo, ONLY: wrk_in_use, wrk_not_released  
     681   USE wrk_nemo, ONLY: wrk_in_use, wrk_not_released 
    513682   USE wrk_nemo, ONLY: wrk_3d_5 
    514683   ! 
     
    521690   ! 
    522691   zwrk1 => wrk_3d_5(1:10,1:10,1:10) 
    523    ...  
    524 END SUBROUTINE sub  
    525 \end{verbatim} 
    526 Here, instead of ``use associating'' the variable $zwrk1$ with the 
    527 array $wrk\_3d\_5$ (as in the first example), it is explicitly 
    528 declared as a pointer to a 3D array. It is then associated with a 
    529 sub-array of $wrk\_3d\_5$ once the call to {\it wrk\_in\_use()} has 
    530 completed successfully. Note that in F95 (to which NEMO conforms) it 
    531 is not possible for either the upper or lower array bounds of the 
    532 pointer object to differ from those of the target array.\\ 
    533  
    534 In addition to the REAL (KIND=$wp$) workspace arrays, {\it wrk\_nemo} 
    535 also contains 2D integer arrays and 2D REAL arrays with extent ($jpi$, 
    536 $jpk$), {\it i.e.} $xz$. The utility routines for the integer 
    537 workspaces are {\it iwrk\_in\_use()} and {\it iwrk\_not\_released()} 
    538 while those for the $xz$ workspaces are {\it wrk\_in\_use\_xz()} 
    539 and {\it wrk\_not\_released\_xz()}. 
    540  
    541 Should a call to one of the {\it wrk\_in\_use()} family of utilities 
    542 fail, an error message is printed along with a table showing which of 
    543 the workspace arrays are currently in use. This should enable the 
    544 developer to choose alternatives for use in the subroutine being 
    545 worked on.\\ 
    546  
    547 When compiling NEMO for production runs, the calls to {\it 
    548   wrk\_in\_use()}/{\it wrk\_not\_released()} can be reduced to stubs 
    549 that just return $.$FALSE$.$ by setting the cpp key 
    550 {\it key\_no\_workspace\_check}. These stubs may then be inlined (and 
    551 thus effectively removed altogether) by setting appropriate compiler 
    552 flags (e.g. ``-finline'' for the Intel compiler or ``-Q'' for the IBM 
    553 compiler). 
    554  
    555  %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 
     692   ... 
     693END SUBROUTINE sub 
     694\end{forlines} 
     695 
     696Here, instead of ``use associating'' the variable \texttt{zwrk1} with the array \texttt{wrk\_3d\_5} 
     697(as in the first example), it is explicitly declared as a pointer to a 3D array. 
     698It is then associated with a sub-array of \texttt{wrk\_3d\_5} once the call to 
     699\texttt{wrk\_in\_use()} has completed successfully. 
     700Note that in F95 (to which NEMO conforms) it is not possible for either the upper or lower array bounds of 
     701the pointer object to differ from those of the target array. \\ 
     702 
     703In addition to the \forcode{REAL (KIND = wp)} workspace arrays, 
     704\textit{wrk\_nemo.F90} also contains 2D integer arrays and 2D REAL arrays with extent (\texttt{jpi}, \texttt{jpk}), 
     705$i.e.$ $xz$. 
     706The utility routines for the integer workspaces are \texttt{iwrk\_in\_use()} and \texttt{iwrk\_not\_released()} while 
     707those for the $xz$ workspaces are \texttt{wrk\_in\_use\_xz()} and \texttt{wrk\_not\_released\_xz()}. 
     708 
     709Should a call to one of the \texttt{wrk\_in\_use()} family of utilities fail, 
     710an error message is printed along with a table showing which of the workspace arrays are currently in use. 
     711This should enable the developer to choose alternatives for use in the subroutine being worked on. \\ 
     712 
     713When compiling NEMO for production runs, 
     714the calls to {\texttt{wrk\_in\_use()} / \texttt{wrk\_not\_released()} can be reduced to stubs that just 
     715return \forcode{.false.} by setting the cpp key \texttt{key\_no\_workspace\_check}. 
     716These stubs may then be inlined (and thus effectively removed altogether) by setting appropriate compiler flags 
     717($e.g.$ ``-finline'' for the Intel compiler or ``-Q'' for the IBM compiler). 
     718 
     719%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 
    556720\subsection{Optimisation} 
    557721 
    558722Considering the new computer architecture, optimisation cannot be considered independently from the computer type. 
    559723In NEMO, portability is a priority, before any too specific optimisation. 
    560 Some tools are available to help: \\ 
    561 For vector computers:  
    562 \begin{itemize}  
    563 \item  using $key\_vectopt\_loop$ allows to unroll a loop 
    564 \end{itemize} 
    565 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 
    566 \subsection{Package attribute: $PRIVATE, PUBLIC, USE, ONLY$} 
    567 Module variables and routines should be encapsulated by using the PRIVATE attribute. What shall be used outside the module can be declared PUBLIC instead. Use USE with the ONLY attribute to specify which of the variables, type definitions etc. defined in a module are to be made available to the using routine.  
    568 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 
    569 \subsection {Parallelism: using MPI} 
    570 NEMO is written in order to be able to run on one processor, or on one or more using MPI (i.e. activating the cpp key $key\_mpp\_mpi$. The domain decomposition divides the global domain in cubes (see NEMO reference manual). Whilst coding a new development, the MPI compatibility has to be taken in account (see $LBC/lib\_mpp.F90$) and should be tested. By default, the $x$-$z$ part of the decomposition is chosen to be as square as possible. However, this may be overriden by specifying the number of subdomains in latitude and longitude in the nammpp section of the namelist file. 
     724 
     725Some tools are available to help: for vector computers, \texttt{key\_vectopt\_loop} allows to unroll a loop 
     726 
     727%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 
     728\subsection{Package attribute: \forcode{PRIVATE}, \forcode{PUBLIC}, \forcode{USE}, \forcode{ONLY}} 
     729 
     730Module variables and routines should be encapsulated by using the \forcode{PRIVATE} attribute. 
     731What shall be used outside the module can be declared \forcode{PUBLIC} instead. 
     732Use \forcode{USE} with the \forcode{ONLY} attribute to specify which of the variables, type definitions etc... 
     733defined in a module are to be made available to the using routine. 
     734 
     735%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 
     736\subsection {Parallelism using MPI} 
     737 
     738NEMO is written in order to be able to run on one processor, or on one or more using MPI 
     739($i.e.$ activating the cpp key $key\_mpp\_mpi$). 
     740The domain decomposition divides the global domain in cubes (see NEMO reference manual). 
     741Whilst coding a new development, the MPI compatibility has to be taken in account 
     742(see \path{./src/LBC/lib_mpp.F90}) and should be tested. 
     743By default, the $x$-$z$ part of the decomposition is chosen to be as square as possible. 
     744However, this may be overriden by specifying the number of subdomains in latitude and longitude in 
     745the \texttt{nammpp} section of the namelist file. 
    571746 
    572747%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 
    573748\section{Features to be avoided} 
    574749 
    575 The code must follow the current standards of FORTRAN and ANSI C.  In particular, the code should not produce any WARNING at compiling phase, so that users can be easily alerted of potential bugs when some appear in their new developments. ).  
     750The code must follow the current standards of FORTRAN and ANSI C. 
     751In particular, the code should not produce any WARNING at compiling phase, so that 
     752users can be easily alerted of potential bugs when some appear in their new developments. 
    576753Below is a list of features to avoid: 
    577754\begin{itemize} 
    578 \item COMMON blocks (use the declaration part of MODULEs instead) 
    579 \item EQUIVALENCE (use POINTERs or derived data types instead to form data structures) 
    580 \item Assigned and computed GOTOs (use the CASE construct instead) 
    581 \item Arithmetic IF statements ( use the block IF, ELSE, ELSEIF, ENDIF or SELECT CASE construct instead)  
    582 \item Labeled DO constructs  (use unlabeled END DO instead)  
    583 \item FORMAT statements (use character parameters or explicit format- specifiers inside the READ or WRITE statement instead) 
    584 \item GOTO and CONTINUE statement (use IF, CASE, DO WHILE, EXIT or CYCLE statements or a contained  
    585 \item PAUSE  
    586 \item ENTRY statements: a subprogram must only have one entry point.  
    587 \item RETURN Ð it is obsolete and so not necessary at the end of program units 
    588 \item STATEMENT FUNCTION  
    589  \item Avoid functions with side effects. 
    590 \footnote{ First, the code is easier to understand, if you can rely on the rule that functions don't change their arguments, second, some compilers generate more efficient code for PURE (in FORTRAN 95 there are the attributes PURE and ELEMENTAL) functions, because they can store the arguments in different places. This is especially important on massive parallel and as well on vector machines. } 
    591 \item DATA and BLOCK DATA - (use initialisers) 
     755\item 
     756  \forcode{COMMON} block 
     757  (use the declaration part of \forcode{MODULE} instead) 
     758\item 
     759  \forcode{EQUIVALENCE} 
     760  (use \forcode{POINTER} or derived data type instead to form data structure) 
     761\item 
     762  Assigned and computed \forcode{GOTO} 
     763  (use the \forcode{CASE} construct instead) 
     764\item 
     765  Arithmetic \forcode{IF} statement 
     766  (use the block \forcode{IF}, \forcode{ELSE}, \forcode{ELSEIF}, \forcode{ENDIF} or 
     767  \forcode{SELECT CASE} construct instead) 
     768\item 
     769  Labeled \forcode{DO} construct 
     770  (use unlabeled \forcode{END DO} instead) 
     771\item 
     772  \forcode{FORMAT} statement 
     773  (use character parameters or 
     774  explicit format- specifiers inside the \forcode{READ} or \forcode{WRITE} statement instead) 
     775\item 
     776  \forcode{GOTO} and \forcode{CONTINUE} statements 
     777  (use \forcode{IF}, \forcode{CASE}, \forcode{DO WHILE}, \forcode{EXIT} or \forcode{CYCLE} statements or 
     778  a contained ?) 
     779\item 
     780  \forcode{PAUSE} 
     781\item 
     782  \forcode{ENTRY} statement: a subprogram must only have one entry point. 
     783\item 
     784  \forcode{RETURN} is obsolete and so not necessary at the end of program units 
     785\item 
     786  \forcode{FUNCTION} statement 
     787\item 
     788  Avoid functions with side effects. 
     789  \footnote{ 
     790    First, the code is easier to understand, if you can rely on 
     791    the rule that functions don't change their arguments. 
     792    Second, some compilers generate more efficient code for PURE functions 
     793    (in FORTRAN 95 there are the attributes PURE and ELEMENTAL), because 
     794    they can store the arguments in different places. 
     795    This is especially important on massive parallel and as well on vector machines. 
     796  } 
     797\item 
     798  \forcode{DATA} and \forcode{BLOCK DATA} 
     799  (use initialisers) 
    592800\end{itemize} 
    593801 
  • NEMO/trunk/doc/latex/NEMO/main/NEMO_manual.bib

    r10468 r10495  
    1 This file was created with JabRef 2.2. 
    2 Encoding: UTF8 
    3  
    41@STRING{AP = {Academic Press}} 
    52 
     
    106103 
    107104@ARTICLE{Adcroft_Campin_OM04, 
    108   author = {A. Adcroft and J.-M. Campin}, 
    109   title = {Re-scaled height coordinates for accurate representation of free-surface flows in ocean circulation models}, 
    110   journal = OM, 
    111   year = {2004}, 
    112   volume = {7}, 
    113   pages = {269--284}, 
    114   doi = {10.1016/j.ocemod.2003.09.003}, 
     105  author =       {A. Adcroft and J.-M. Campin}, 
     106  title =        {Re-scaled height coordinates for accurate 
     107                  representation of free-surface flows in ocean 
     108                  circulation models}, 
     109  journal =      OM, 
     110  year =         2004, 
     111  volume =       7, 
     112  pages =        {269--284}, 
     113  doi =          {10.1016/j.ocemod.2003.09.003}, 
    115114} 
    116115 
    117116@ARTICLE{Arakawa1966, 
    118   author = {A. Arakawa}, 
    119   title = {Computational design for long term numerical integration of the equations  
    120     of fluid motion, two-dimensional incompressible flow, Part. I.}, 
    121   journal = JCP, 
    122   year = {1966}, 
    123   volume = {I}, 
    124   pages = {119--149} 
     117  author =       {A. Arakawa}, 
     118  title =        {Computational design for long term numerical 
     119                  integration of the equations of fluid motion, 
     120                  two-dimensional incompressible flow, Part. I.}, 
     121  journal =      JCP, 
     122  year =         1966, 
     123  volume =       {I}, 
     124  pages =        {119--149} 
    125125} 
    126126 
    127127@ARTICLE{Arakawa_Hsu_MWR90, 
    128   author = {A. Arakawa and Y.-J. G. Hsu}, 
    129   title = {Energy Conserving and Potential-Enstrophy Dissipating Schemes for the Shallow Water Equations}, 
    130   journal = MWR, 
    131   year = {1990}, 
    132   volume = {118},  number = {10}, 
    133   pages = {1960--1969}, 
     128  author =       {A. Arakawa and Y.-J. G. Hsu}, 
     129  title =        {Energy Conserving and Potential-Enstrophy 
     130                  Dissipating Schemes for the Shallow Water Equations}, 
     131  journal =      MWR, 
     132  year =         1990, 
     133  volume =       118, 
     134  number =       10, 
     135  pages =        {1960--1969}, 
    134136} 
    135137 
    136138@ARTICLE{Arakawa_Lamb_MWR81, 
    137   author = {Arakawa, Akio and Lamb, Vivian R.}, 
    138   title = {A Potential Enstrophy and Energy Conserving Scheme for the Shallow 
    139            Water Equations}, 
    140   journal = MWR, 
    141   year = {1981}, 
    142   volume = {109},  number = {1}, 
    143   pages = {18--36} 
     139  author =       {Arakawa, Akio and Lamb, Vivian R.}, 
     140  title =        {A Potential Enstrophy and Energy Conserving Scheme 
     141                  for the Shallow Water Equations}, 
     142  journal =      MWR, 
     143  year =         1981, 
     144  volume =       109, 
     145  number =       1, 
     146  pages =        {18--36} 
    144147} 
    145148 
    146149@ARTICLE{Arbic2004, 
    147   author = {B. Arbic and S. Garner and R. Hallberg and H. Simmons}, 
    148   title = {The accuracy of surface elevations in forward global barotropic and baroclinic tide models}, 
    149   journal = DSR, 
    150   year = {2004}, 
    151   volume = {51}, 
    152   pages = {3069-3101} 
     150  author =       {B. Arbic and S. Garner and R. Hallberg and 
     151                  H. Simmons}, 
     152  title =        {The accuracy of surface elevations in forward global 
     153                  barotropic and baroclinic tide models}, 
     154  journal =      DSR, 
     155  year =         2004, 
     156  volume =       51, 
     157  pages =        {3069-3101} 
    153158} 
    154159 
    155160@ARTICLE{Arbic2010, 
    156   author = {Arbic, Wallcraft, Metzger}, 
    157   title = {Concurrent simulation of the eddying general circulation and tides in a global ocean model}, 
    158   journal = OM, 
    159   year = {2010}, 
    160   volume = {32},  number = {3-4}, 
    161   pages = {175-187} 
     161  author =       {Arbic, Wallcraft, Metzger}, 
     162  title =        {Concurrent simulation of the eddying general 
     163                  circulation and tides in a global ocean model}, 
     164  journal =      OM, 
     165  year =         2010, 
     166  volume =       32, 
     167  number =       {3-4}, 
     168  pages =        {175-187} 
    162169} 
    163170 
    164171@ARTICLE{Arhan2006, 
    165   author = {M. Arhan and A.M. Treguier and B. Bourles and S. Michel}, 
    166   title = {Diagnosing the annual cycle of the Equatorial Undercurrent in the 
    167    Atlantic Ocean from a general circulation model}, 
    168   journal = JPO, 
    169   year = {2006}, 
    170   volume = {36}, 
    171   pages = {1502--1522} 
     172  author =       {M. Arhan and A.M. Treguier and B. Bourles and 
     173                  S. Michel}, 
     174  title =        {Diagnosing the annual cycle of the Equatorial 
     175                  Undercurrent in the Atlantic Ocean from a general 
     176                  circulation model}, 
     177  journal =      JPO, 
     178  year =         2006, 
     179  volume =       36, 
     180  pages =        {1502--1522} 
    172181} 
    173182 
    174183@ARTICLE{Artale_al_JGR02, 
    175   author={V. Artale and D. Iudicone and R. Santoleri and V. Rupolo and S. Marullo 
    176           and F. {D'O}rtenzio}, 
    177   title={Role of surface fluxes in ocean general circulation models using satellite 
    178           sea surface temperature: Validation of and sensitivity to the forcing 
    179           frequency of the Mediterranean thermohaline circulation}, 
    180   journal=JGR, 
    181   year={2002}, 
    182   volume={107}, 
    183   pages={1978-2012}, 
    184   doi = {10.1029/2000JC000452}, 
     184  author =       {V. Artale and D. Iudicone and R. Santoleri and 
     185                  V. Rupolo and S. Marullo and F. {D'O}rtenzio}, 
     186  title =        {Role of surface fluxes in ocean general circulation 
     187                  models using satellite sea surface temperature: 
     188                  Validation of and sensitivity to the forcing 
     189                  frequency of the Mediterranean thermohaline 
     190                  circulation}, 
     191  journal =      JGR, 
     192  year =         2002, 
     193  volume =       107, 
     194  pages =        {1978-2012}, 
     195  doi =          {10.1029/2000JC000452}, 
    185196} 
    186197 
    187198@ARTICLE{ASSELIN_MWR72, 
    188   author = {R. Asselin}, 
    189   title = {Frequency Filter for Time Integrations}, 
    190   journal = MWR, 
    191   year = {1972}, 
    192   volume = {100},  number = {6}, 
    193   pages = {487--490} 
     199  author =       {R. Asselin}, 
     200  title =        {Frequency Filter for Time Integrations}, 
     201  journal =      MWR, 
     202  year =         1972, 
     203  volume =       100, 
     204  number =       6, 
     205  pages =        {487--490} 
    194206} 
    195207 
    196208@ARTICLE{Atmadipoera_al_DSR09, 
    197   author = {A. Atmadipoera and R. Molcard and G. Madec and S.Wijffels and J. 
    198    Sprintall and A. Koch-Larrouy and I. Jaya and A. Supangat}, 
    199   title = {Characteristics and Variability of the Indonesian Throughflow Water 
    200    at the Outflow Straits}, 
    201   journal = DSR, 
    202   year = {2009}, 
    203   volume = {56},  number = {11}, 
    204   pages = {1942--1954}, 
    205   doi = {10.1016/j.dsr.2009.06.004}, 
     209  author =       {A. Atmadipoera and R. Molcard and G. Madec and 
     210                  S.Wijffels and J.  Sprintall and A. Koch-Larrouy and 
     211                  I. Jaya and A. Supangat}, 
     212  title =        {Characteristics and Variability of the Indonesian 
     213                  Throughflow Water at the Outflow Straits}, 
     214  journal =      DSR, 
     215  year =         2009, 
     216  volume =       56, 
     217  number =       11, 
     218  pages =        {1942--1954}, 
     219  doi =          {10.1016/j.dsr.2009.06.004}, 
    206220} 
    207221 
    208222@ARTICLE{Aumont_al_GBC99, 
    209   author = {O. Aumont and P. Monfray and J. C. Orr and G. Madec and E. Maier-Reimer}, 
    210   title = {Nutrient trapping in the equatorial Pacific: The ocean circulation solution}, 
    211   journal = GBC, 
    212   year = {1999}, 
    213   volume = {13}, 
    214   pages = {351--369} 
     223  author =       {O. Aumont and P. Monfray and J. C. Orr and G. Madec 
     224                  and E. Maier-Reimer}, 
     225  title =        {Nutrient trapping in the equatorial Pacific: The 
     226                  ocean circulation solution}, 
     227  journal =      GBC, 
     228  year =         1999, 
     229  volume =       13, 
     230  pages =        {351--369} 
    215231} 
    216232 
    217233@ARTICLE{Aumont_al_CD98, 
    218   author = {O. Aumont and J.C. Orr and D. Jamous and P. Monfray and O. Marti and G. Madec}, 
    219   title = {A degradation approach to accelerate simulations to steady state 
    220    in a 3-D tracer transport model of the global ocean}, 
    221   journal = CD, 
    222   year = {1998}, 
    223   volume = {14}, 
    224   pages = {101--116} 
     234  author =       {O. Aumont and J.C. Orr and D. Jamous and P. Monfray 
     235                  and O. Marti and G. Madec}, 
     236  title =        {A degradation approach to accelerate simulations to 
     237                  steady state in a 3-D tracer transport model of the 
     238                  global ocean}, 
     239  journal =      CD, 
     240  year =         1998, 
     241  volume =       14, 
     242  pages =        {101--116} 
    225243} 
    226244 
    227245@ARTICLE{Axell_JGR02, 
    228   author = {L. B. Axell}, 
    229   title = {Wind-driven internal waves and Langmuir circulations in a numerical ocean model of the southern Baltic Sea}, 
    230   journal = JGR, 
    231   year = {2002}, 
    232   volume = {107}, 
    233   doi = {10.1029/2001JC000922}, 
     246  author =       {L. B. Axell}, 
     247  title =        {Wind-driven internal waves and Langmuir circulations 
     248                  in a numerical ocean model of the southern Baltic 
     249                  Sea}, 
     250  journal =      JGR, 
     251  year =         2002, 
     252  volume =       107, 
     253  doi =          {10.1029/2001JC000922}, 
    234254} 
    235255 
    236256@ARTICLE{Axell_Liungman_EFM01, 
    237   author = {L. B. Axell and O. Liungman}, 
    238   title = {A one-equation turbulence model for geophysical applications:  
    239   Comparison with data and the k-$\epsilon$ model}, 
    240   journal = EFM, 
    241   year = {2001}, 
    242   volume = {1}, pages = {71--106}, 
    243   doi = {10.1029/2001JC000922}, 
     257  author =       {L. B. Axell and O. Liungman}, 
     258  title =        {A one-equation turbulence model for geophysical 
     259                  applications: Comparison with data and the 
     260                  k-$\epsilon$ model}, 
     261  journal =      EFM, 
     262  year =         2001, 
     263  volume =       1, 
     264  pages =        {71--106}, 
     265  doi =          {10.1029/2001JC000922}, 
    244266} 
    245267 
    246268@ARTICLE{Ayina_al_JC06, 
    247   author = {L.-H. Ayina and A. Bentamy and A. Munes-Mestaz and G. Madec}, 
    248   title = {The Impact of Satellite Winds and Latent Heat Fluxes in a Numerical 
    249    Simulation of the Tropical Pacific Ocean}, 
    250   journal = JC, 
    251   year = {2006}, 
    252   volume = {19}, 
    253   pages = {5889--5902} 
     269  author =       {L.-H. Ayina and A. Bentamy and A. Munes-Mestaz and 
     270                  G. Madec}, 
     271  title =        {The Impact of Satellite Winds and Latent Heat Fluxes 
     272                  in a Numerical Simulation of the Tropical Pacific 
     273                  Ocean}, 
     274  journal =      JC, 
     275  year =         2006, 
     276  volume =       19, 
     277  pages =        {5889--5902} 
    254278} 
    255279 
    256280@ARTICLE{Barnier_al_OD06, 
    257   author = {B. Barnier and G. Madec and T. Penduff and J.-M. Molines and A.-M. 
    258    Treguier and J. Le Sommer and A. Beckmann and A. Biastoch and C. Boning  
    259    and J. Dengg and C. Derval and E. Durand and S. Gulev and 
    260    E. Remy and C. Talandier and S. Theetten and M. Maltrud and J. McClean and B. De Cuevas}, 
    261   title = {Impact of partial steps and momentum advection schemes in a global 
    262    ocean circulation model at eddy-permitting resolution.}, 
    263   journal = OD, 
    264   year = {2006}, 
    265   volume = {56}, 
    266   pages = {543--567}, 
    267   doi = {10.1007/s10236-006-0082-1}, 
     281  author =       {B. Barnier and G. Madec and T. Penduff and 
     282                  J.-M. Molines and A.-M.  Treguier and J. Le Sommer 
     283                  and A. Beckmann and A. Biastoch and C. Boning and 
     284                  J. Dengg and C. Derval and E. Durand and S. Gulev 
     285                  and E. Remy and C. Talandier and S. Theetten and 
     286                  M. Maltrud and J. McClean and B. De Cuevas}, 
     287  title =        {Impact of partial steps and momentum advection 
     288                  schemes in a global ocean circulation model at 
     289                  eddy-permitting resolution.}, 
     290  journal =      OD, 
     291  year =         2006, 
     292  volume =       56, 
     293  pages =        {543--567}, 
     294  doi =          {10.1007/s10236-006-0082-1}, 
    268295} 
    269296 
    270297@INCOLLECTION{Barnier1996, 
    271   author = {B. Barnier and P. Marchesiello and A.P. de Miranda}, 
    272   title = {Modeling the ocean circulation in the South Atlantic: A strategy for dealing with open boundaries}, 
    273   booktitle = {The South Atlantic: Present and Past Circulation}, 
    274   publisher = {Springer-Verlag, Berlin}, 
    275   year = {1996}, 
    276   editor = {G.Wefer and W.H. Berger and G Siedler and D. Webb}, 
    277   pages = {289-304} 
     298  author =       {B. Barnier and P. Marchesiello and A.P. de Miranda}, 
     299  title =        {Modeling the ocean circulation in the South 
     300                  Atlantic: A strategy for dealing with open 
     301                  boundaries}, 
     302  booktitle =    {The South Atlantic: Present and Past Circulation}, 
     303  publisher =    {Springer-Verlag, Berlin}, 
     304  year =         1996, 
     305  editor =       {G.Wefer and W.H. Berger and G Siedler and D. Webb}, 
     306  pages =        {289-304} 
    278307} 
    279308 
    280309@ARTICLE{Barnier1998, 
    281   author = {B. Barnier and P. Marchesiello and A. P. de Miranda and J.M. Molines 
    282    and M. Coulibaly}, 
    283   title = {A sigma-coordinate primitive equation model for studying the circulation 
    284    in the South Atlantic I, Model configuration with error estimates}, 
    285   journal = DSR, 
    286   year = {1998}, 
    287   volume = {45}, 
    288   pages = {543--572} 
     310  author =       {B. Barnier and P. Marchesiello and A. P. de Miranda 
     311                  and J.M. Molines and M. Coulibaly}, 
     312  title =        {A sigma-coordinate primitive equation model for 
     313                  studying the circulation in the South Atlantic I, 
     314                  Model configuration with error estimates}, 
     315  journal =      DSR, 
     316  year =         1998, 
     317  volume =       45, 
     318  pages =        {543--572} 
    289319} 
    290320 
    291321@ARTICLE{Barthelet_al_CRAS98, 
    292   author = {P. Barthelet and S. Bony and P. Braconnot and A. Braum and D. Cariolle 
    293    and E. Cohen-Solal and J.-L. Dufresne and P. Delecluse and M. D\'{e}qu\'{e} 
    294    and L. Fairhead and M.-A. Filiberti and M. Forichon and J.-Y. Grandpeix 
    295    and E. Guilyardi and M.-N. Houssais and M. Imbard and H. Le Treut 
    296    and C. Lévy and Z.X. Li and G. Madec and P. Marquet and O. Marti 
    297    and S. Planton and L. Terray and O. Thual and S. Valcke}, 
    298   title = {Global coupled simulations of climate change due to increased atmospheric CO2 concentration}, 
    299   journal = {C. R. Acad. Sci Paris}, 
    300   year = {1998}, 
    301   volume = {326}, 
    302   pages = {677--684} 
     322  author =       {P. Barthelet and S. Bony and P. Braconnot and 
     323                  A. Braum and D. Cariolle and E. Cohen-Solal and 
     324                  J.-L. Dufresne and P. Delecluse and M. D\'{e}qu\'{e} 
     325                  and L. Fairhead and M.-A. Filiberti and M. Forichon 
     326                  and J.-Y. Grandpeix and E. Guilyardi and 
     327                  M.-N. Houssais and M. Imbard and H. Le Treut and 
     328                  C. Lévy and Z.X. Li and G. Madec and P. Marquet and 
     329                  O. Marti and S. Planton and L. Terray and O. Thual 
     330                  and S. Valcke}, 
     331  title =        {Global coupled simulations of climate change due to 
     332                  increased atmospheric CO2 concentration}, 
     333  journal =      {C. R. Acad. Sci Paris}, 
     334  year =         1998, 
     335  volume =       326, 
     336  pages =        {677--684} 
    303337} 
    304338 
    305339@ARTICLE{Beckmann2003, 
    306   author = {A. Beckmann and H. Goosse}, 
    307   title = {A parameterization of ice shelf-ocean interaction for climate models}, 
    308   journal = OM, 
    309   year = {2003}, 
    310   volume = {5}, 
    311   pages = {157--170} 
     340  author =       {A. Beckmann and H. Goosse}, 
     341  title =        {A parameterization of ice shelf-ocean interaction 
     342                  for climate models}, 
     343  journal =      OM, 
     344  year =         2003, 
     345  volume =       5, 
     346  pages =        {157--170} 
    312347} 
    313348 
    314349@ARTICLE{Beckmann1998, 
    315   author = {A. Beckmann}, 
    316   title = {The representation of bottom boundary layer processes in numerical 
    317    ocean circulation models.}, 
    318   journal = {Ocean modelling and parameterization, E. P. Chassignet and J. Verron 
    319    (eds.), NATO Science Series, Kluwer Academic Publishers}, 
    320   year = {1998} 
     350  author =       {A. Beckmann}, 
     351  title =        {The representation of bottom boundary layer 
     352                  processes in numerical ocean circulation models.}, 
     353  journal =      {Ocean modelling and parameterization, 
     354                  E. P. Chassignet and J. Verron (eds.), NATO Science 
     355                  Series, Kluwer Academic Publishers}, 
     356  year =         1998 
    321357} 
    322358 
    323359@ARTICLE{Beckmann_Doscher1997, 
    324   author = {A. Beckmann and R. D\"{o}scher}, 
    325   title = {A method for improved representation of dense water spreading over 
    326    topography in geopotential-coordinate models}, 
    327   journal = JPO, 
    328   year = {1997}, 
    329   volume = {27}, 
    330   pages = {581--591} 
     360  author =       {A. Beckmann and R. D\"{o}scher}, 
     361  title =        {A method for improved representation of dense water 
     362                  spreading over topography in geopotential-coordinate 
     363                  models}, 
     364  journal =      JPO, 
     365  year =         1997, 
     366  volume =       27, 
     367  pages =        {581--591} 
    331368} 
    332369 
    333370@ARTICLE{Beckmann1993, 
    334   author = {A. Beckmann and D. B. Haidvogel}, 
    335   title = {Numerical Simulation of Flow around a Tall Isolated Seamount.  
    336    Part I - Problem Formulation and Model Accuracy}, 
    337   journal = JPO, 
    338   year = {1993}, 
    339   volume = {23},  number = {8}, 
    340   pages = {1736--1753} 
     371  author =       {A. Beckmann and D. B. Haidvogel}, 
     372  title =        {Numerical Simulation of Flow around a Tall Isolated 
     373                  Seamount.  Part I - Problem Formulation and Model 
     374                  Accuracy}, 
     375  journal =      JPO, 
     376  year =         1993, 
     377  volume =       23, 
     378  number =       8, 
     379  pages =        {1736--1753} 
    341380} 
    342381 
    343382@ARTICLE{Bernie_al_CD07, 
    344   author = {D. Bernie and E. Guilyardi and G. Madec and J. M. Slingo and S. J. Woolnough}, 
    345   title = {Impact of resolving the diurnal cycle in an ocean--atmosphere GCM. Part 1: a diurnally forced OGCM}, 
    346   journal = CD, 
    347   year = {2007}, 
    348   volume = {29},  number = {6}, 
    349   pages = {575--590} 
     383  author =       {D. Bernie and E. Guilyardi and G. Madec and 
     384                  J. M. Slingo and S. J. Woolnough}, 
     385  title =        {Impact of resolving the diurnal cycle in an 
     386                  ocean--atmosphere GCM. Part 1: a diurnally forced 
     387                  OGCM}, 
     388  journal =      CD, 
     389  year =         2007, 
     390  volume =       29, 
     391  number =       6, 
     392  pages =        {575--590} 
    350393} 
    351394 
    352395@ARTICLE{Bernie_al_CD08, 
    353   author = {D. Bernie and E. Guilyardi and G. Madec and J. M. Slingo and S. J. Woolnough}, 
    354   title = {Impact of resolving the diurnal cycle in an ocean--atmosphere GCM. Part 2: A diurnally coupled CGCM}, 
    355   journal = CD, 
    356   year = {2008}, 
    357   volume = {31},  number = {7}, 
    358   pages = {909--925}, 
    359   doi = {10.1007/s00382-008-0429-z}, 
     396  author =       {D. Bernie and E. Guilyardi and G. Madec and 
     397                  J. M. Slingo and S. J. Woolnough}, 
     398  title =        {Impact of resolving the diurnal cycle in an 
     399                  ocean--atmosphere GCM. Part 2: A diurnally coupled 
     400                  CGCM}, 
     401  journal =      CD, 
     402  year =         2008, 
     403  volume =       31, 
     404  number =       7, 
     405  pages =        {909--925}, 
     406  doi =          {10.1007/s00382-008-0429-z}, 
    360407} 
    361408 
    362409@ARTICLE{Bernie_al_JC05, 
    363   author = {D. J. Bernie and S. J. Woolnough and J. M. Slingo and E. Guilyardi}, 
    364   title = {Modelling diurnal and intraseasonal variability of the ocean mixed 
    365    layer}, 
    366   journal = JC, 
    367   year = {2005}, 
    368   volume = {18},  number = {8}, 
    369   pages = {1190--1200} 
     410  author =       {D. J. Bernie and S. J. Woolnough and J. M. Slingo 
     411                  and E. Guilyardi}, 
     412  title =        {Modelling diurnal and intraseasonal variability of 
     413                  the ocean mixed layer}, 
     414  journal =      JC, 
     415  year =         2005, 
     416  volume =       18, 
     417  number =       8, 
     418  pages =        {1190--1200} 
    370419} 
    371420 
    372421@ARTICLE{Bessiere_al_GRL08, 
    373   author = {L. Bessi\'{e}res and G. Madec and F. Lyard}, 
    374   title = {Global Tidal Residual Mean Circulation: Does it Affect a Climate OGCM?}, 
    375   journal = GRL, 
    376   year = {2008}, 
    377   volume = {35}, 
    378   pages = {L03609}, 
    379   doi = {10.1029/2007GL032644}, 
     422  author =       {L. Bessi\'{e}res and G. Madec and F. Lyard}, 
     423  title =        {Global Tidal Residual Mean Circulation: Does it 
     424                  Affect a Climate OGCM?}, 
     425  journal =      GRL, 
     426  year =         2008, 
     427  volume =       35, 
     428  pages =        {L03609}, 
     429  doi =          {10.1029/2007GL032644}, 
    380430} 
    381431 
    382432@ARTICLE{Biastoch_al_JC08, 
    383   author = {A. Biastoch and C. W. Böning and J. Getzlaff and J.-M. Molines and G. Madec}, 
    384   title = {Causes of interannual – decadal variability in the meridional overturning 
    385    circulation of the mid-latitude North Atlantic Ocean}, 
    386   journal = JC, 
    387   year = {2008}, 
    388   volume = {21},  number = {24}, 
    389   pages = {6599-6615}, 
    390   doi = {10.1175/2008JCLI2404.1}, 
     433  author =       {A. Biastoch and C. W. Böning and J. Getzlaff and 
     434                  J.-M. Molines and G. Madec}, 
     435  title =        {Causes of interannual – decadal variability in the 
     436                  meridional overturning circulation of the 
     437                  mid-latitude North Atlantic Ocean}, 
     438  journal =      JC, 
     439  year =         2008, 
     440  volume =       21, 
     441  number =       24, 
     442  pages =        {6599-6615}, 
     443  doi =          {10.1175/2008JCLI2404.1}, 
    391444} 
    392445 
    393446@ARTICLE{Bignami_al_JGR95, 
    394   author = {F. Bignami and S. Marullo and R. Santoleri and M. E. Schiano}, 
    395   title = {Longwave radiation budget in the Mediterranean Sea},  
    396   journal = JGR, 
    397   year = {1995}, 
    398   volume = {100},  number = {C2}, 
    399   pages = {2501--2514}, 
    400   doi = {10.1029/94JC02496}, 
     447  author =       {F. Bignami and S. Marullo and R. Santoleri and 
     448                  M. E. Schiano}, 
     449  title =        {Longwave radiation budget in the Mediterranean Sea}, 
     450  journal =      JGR, 
     451  year =         1995, 
     452  volume =       100, 
     453  number =       {C2}, 
     454  pages =        {2501--2514}, 
     455  doi =          {10.1029/94JC02496}, 
    401456} 
    402457 
    403458@ARTICLE{Blanke_al_JPO99, 
    404   author = {B. Blanke and M. Arhan and G. Madec and S. Roche}, 
    405   title = {Warm Water Paths in the Equatorial Atlantic as Diagnosed with a General Circulation Model}, 
    406   journal = JPO, 
    407   year = {1999}, 
    408   volume = {29},  number = {11}, 
    409   pages = {2753-2768} 
     459  author =       {B. Blanke and M. Arhan and G. Madec and S. Roche}, 
     460  title =        {Warm Water Paths in the Equatorial Atlantic as 
     461                  Diagnosed with a General Circulation Model}, 
     462  journal =      JPO, 
     463  year =         1999, 
     464  volume =       29, 
     465  number =       11, 
     466  pages =        {2753-2768} 
    410467} 
    411468 
    412469@ARTICLE{Blanke1993, 
    413   author = {B. Blanke and P. Delecluse}, 
    414   title = {Low frequency variability of the tropical Atlantic ocean simulated 
    415    by a general circulation model with mixed layer physics}, 
    416   journal = JPO, 
    417   year = {1993}, 
    418   volume = {23}, 
    419   pages = {1363--1388} 
     470  author =       {B. Blanke and P. Delecluse}, 
     471  title =        {Low frequency variability of the tropical Atlantic 
     472                  ocean simulated by a general circulation model with 
     473                  mixed layer physics}, 
     474  journal =      JPO, 
     475  year =         1993, 
     476  volume =       23, 
     477  pages =        {1363--1388} 
    420478} 
    421479 
    422480@ARTICLE{blanke_al_JC97, 
    423   author = {B. Blanke and J. D. Neelin and D. Gutzler}, 
    424   title = {Estimating the effect of stochastic wind forcing on ENSO irregularity}, 
    425   journal = JC, 
    426   year = {1997}, 
    427   volume = {10}, 
    428   pages = {1473--1486} 
     481  author =       {B. Blanke and J. D. Neelin and D. Gutzler}, 
     482  title =        {Estimating the effect of stochastic wind forcing on 
     483                  ENSO irregularity}, 
     484  journal =      JC, 
     485  year =         1997, 
     486  volume =       10, 
     487  pages =        {1473--1486} 
    429488} 
    430489 
    431490@ARTICLE{Blanke_Raynaud_JPO97, 
    432   author = {B. Blanke and S. Raynaud}, 
    433   title = {Kinematics of the Pacific Equatorial Undercurrent: An Eulerian and 
    434    Lagrangian Approach from GCM Results}, 
    435   journal = JPO, 
    436   year = {1997}, 
    437   volume = {27},  number = {6}, 
    438   pages = {1038--1053} 
     491  author =       {B. Blanke and S. Raynaud}, 
     492  title =        {Kinematics of the Pacific Equatorial Undercurrent: 
     493                  An Eulerian and Lagrangian Approach from GCM 
     494                  Results}, 
     495  journal =      JPO, 
     496  year =         1997, 
     497  volume =       27, 
     498  number =       6, 
     499  pages =        {1038--1053} 
    439500} 
    440501 
    441502@ARTICLE{Blanke_al_JPO01, 
    442   author = {B. Blanke and S. Speich and G. Madec and K. Döös}, 
    443   title = {A global Diagnostic of interocean mass transfers}, 
    444   journal = JPO, 
    445   year = {2001}, 
    446   volume = {31},  number = {6}, 
    447   pages = {1623--1632} 
     503  author =       {B. Blanke and S. Speich and G. Madec and K. Döös}, 
     504  title =        {A global Diagnostic of interocean mass transfers}, 
     505  journal =      JPO, 
     506  year =         2001, 
     507  volume =       31, 
     508  number =       6, 
     509  pages =        {1623--1632} 
    448510} 
    449511 
    450512@ARTICLE{Blanke_al_GRL02, 
    451   author = {B. Blanke and S. Speich and G. Madec and R. Maug\'{e}}, 
    452   title = {A global diagnostic of interior ocean ventilation}, 
    453   journal = GRL, 
    454   year = {2002}, 
    455   volume = {29},  number = {8}, 
    456   pages = {1081--1084} 
     513  author =       {B. Blanke and S. Speich and G. Madec and 
     514                  R. Maug\'{e}}, 
     515  title =        {A global diagnostic of interior ocean ventilation}, 
     516  journal =      GRL, 
     517  year =         2002, 
     518  volume =       29, 
     519  number =       8, 
     520  pages =        {1081--1084} 
    457521} 
    458522 
    459523@ARTICLE{Blayo2005, 
    460   author = {E. Blayo and L. Debreu}, 
    461   title = {Revisiting open boundary conditions from the point of view of characteristic 
    462    variables}, 
    463   journal = OM, 
    464   year = {2005}, 
    465   volume = {9}, 
    466   pages = {231--252} 
     524  author =       {E. Blayo and L. Debreu}, 
     525  title =        {Revisiting open boundary conditions from the point 
     526                  of view of characteristic variables}, 
     527  journal =      OM, 
     528  year =         2005, 
     529  volume =       9, 
     530  pages =        {231--252} 
    467531} 
    468532 
    469533@ARTICLE{Bloom_al_MWR96, 
    470   author = {S. C. Bloom and L. L. Takacs and A. M. Da Silva and D. Ledvina}, 
    471   title = {Data assimilation using incremental analysis updates}, 
    472   journal = MWR, 
    473   year = {1996}, 
    474   volume = {124}, 
    475   pages = {1256--1271} 
     534  author =       {S. C. Bloom and L. L. Takacs and A. M. Da Silva and 
     535                  D. Ledvina}, 
     536  title =        {Data assimilation using incremental analysis 
     537                  updates}, 
     538  journal =      MWR, 
     539  year =         1996, 
     540  volume =       124, 
     541  pages =        {1256--1271} 
    476542} 
    477543 
    478544@ARTICLE{Bopp_al_GBC01, 
    479   author = {L. Bopp and P. Monfray and O. Aumont and J.-L. Dufresne and H. Le Treut  
    480     and G. Madec and L. Terray and J.C. Orr}, 
    481   title = {Potential impact of climate change on marine export production}, 
    482   journal = GBC, 
    483   year = {2001}, 
    484   volume = {15},  number = {1}, 
    485   pages = {81--101} 
     545  author =       {L. Bopp and P. Monfray and O. Aumont and 
     546                  J.-L. Dufresne and H. Le Treut and G. Madec and 
     547                  L. Terray and J.C. Orr}, 
     548  title =        {Potential impact of climate change on marine export 
     549                  production}, 
     550  journal =      GBC, 
     551  year =         2001, 
     552  volume =       15, 
     553  number =       1, 
     554  pages =        {81--101} 
    486555} 
    487556 
    488557@article{bouffard_Boegman_DAO2013, 
    489    author = {D. Bouffard and L. Boegman}, 
    490    title = {A diapycnal diffusivity model for stratified environmental flows}, 
    491    volume = {61-62}, 
    492    issn = {03770265}, 
    493    doi = {10.1016/j.dynatmoce.2013.02.002}, 
    494    journal = DAO, 
    495    year = {2013}, 
    496    pages = {14--34}, 
     558  author =       {D. Bouffard and L. Boegman}, 
     559  title =        {A diapycnal diffusivity model for stratified 
     560                  environmental flows}, 
     561  volume =       {61-62}, 
     562  issn =         03770265, 
     563  doi =          {10.1016/j.dynatmoce.2013.02.002}, 
     564  journal =      DAO, 
     565  year =         2013, 
     566  pages =        {14--34}, 
    497567} 
    498568 
    499569@ARTICLE{Bougeault1989, 
    500   author = {P. Bougeault and P. Lacarrere}, 
    501   title = {Parameterization of Orography-Induced Turbulence in a Mesobeta--Scale 
    502    Model}, 
    503   journal = MWR, 
    504   year = {1989}, 
    505   volume = {117},  number = {8}, 
    506   pages = {1872--1890}, 
     570  author =       {P. Bougeault and P. Lacarrere}, 
     571  title =        {Parameterization of Orography-Induced Turbulence in 
     572                  a Mesobeta--Scale Model}, 
     573  journal =      MWR, 
     574  year =         1989, 
     575  volume =       117, 
     576  number =       8, 
     577  pages =        {1872--1890}, 
    507578} 
    508579 
    509580@ARTICLE{Bouillon_al_OM09, 
    510   author = {S. Bouillon and M.A. Morales Maqueda and V. Legat and T. Fichefet}, 
    511   title = {An Elastic-Viscous-Plastic Sea Ice Model formulated on Arakawa B and C Grids}, 
    512   journal = OM, 
    513   year = {2009}, 
    514   volume = {27}, 
    515   pages = {174--184}, 
    516   doi = {10.1016/j.ocemod.2009.01.004}, 
     581  author =       {S. Bouillon and M.A. Morales Maqueda and V. Legat 
     582                  and T. Fichefet}, 
     583  title =        {An Elastic-Viscous-Plastic Sea Ice Model formulated 
     584                  on Arakawa B and C Grids}, 
     585  journal =      OM, 
     586  year =         2009, 
     587  volume =       27, 
     588  pages =        {174--184}, 
     589  doi =          {10.1016/j.ocemod.2009.01.004}, 
    517590} 
    518591 
    519592@ARTICLE{Boulanger_al_GRL01, 
    520   author = {J.-P. Boulanger and E. Durand and J.-P. Duvel and C. Menkes and P. 
    521    Delecluse and M. Imbard and M. Lengaigne and G. Madec and S. Masson}, 
    522   title = {Role of non-linear oceanic processes in the response to westerly 
    523    wind events: new implications for the 1997 El Niño onset}, 
    524   journal = GRL, 
    525   year = {2001}, 
    526   volume = {28},  number = {8}, 
    527   pages = {1603--1606} 
     593  author =       {J.-P. Boulanger and E. Durand and J.-P. Duvel and 
     594                  C. Menkes and P.  Delecluse and M. Imbard and 
     595                  M. Lengaigne and G. Madec and S. Masson}, 
     596  title =        {Role of non-linear oceanic processes in the response 
     597                  to westerly wind events: new implications for the 
     598                  1997 El Niño onset}, 
     599  journal =      GRL, 
     600  year =         2001, 
     601  volume =       28, 
     602  number =       8, 
     603  pages =        {1603--1606} 
    528604} 
    529605 
    530606@article{Brankart_OM2013, 
    531 author = "J.-M. Brankart", 
    532 title = "Impact of uncertainties in the horizontal density gradient upon low resolution global ocean modelling ", 
    533 journal = OM, 
    534 year = "2013", 
    535 volume = "66", pages = "64--76", 
    536 issn = "1463-5003", 
    537 doi = "http://dx.doi.org/10.1016/j.ocemod.2013.02.004", 
     607  author =       "J.-M. Brankart", 
     608  title =        "Impact of uncertainties in the horizontal density 
     609                  gradient upon low resolution global ocean modelling 
     610                  ", 
     611  journal =      OM, 
     612  year =         2013, 
     613  volume =       66, 
     614  pages =        "64--76", 
     615  issn =         "1463-5003", 
     616  doi =          "http://dx.doi.org/10.1016/j.ocemod.2013.02.004", 
    538617} 
    539618 
    540619@Article{Brankart_al_GMD2015, 
    541 AUTHOR = {Brankart, J.-M. and Candille, G. and Garnier, F. and Calone, C. and Melet, A. and Bouttier, P.-A. and Brasseur, P. and Verron, J.}, 
    542 TITLE = {A generic approach to explicit simulation of uncertainty in the NEMO ocean model}, 
    543 JOURNAL = {Geoscientific Model Development}, 
    544 VOLUME = {8}, 
    545 YEAR = {2015}, 
    546 NUMBER = {5}, 
    547 PAGES = {1285--1297}, 
    548 DOI = {10.5194/gmd-8-1285-2015} 
     620  AUTHOR =       {Brankart, J.-M. and Candille, G. and Garnier, F. and 
     621                  Calone, C. and Melet, A. and Bouttier, P.-A. and 
     622                  Brasseur, P. and Verron, J.}, 
     623  TITLE =        {A generic approach to explicit simulation of 
     624                  uncertainty in the NEMO ocean model}, 
     625  JOURNAL =      {Geoscientific Model Development}, 
     626  VOLUME =       8, 
     627  YEAR =         2015, 
     628  NUMBER =       5, 
     629  PAGES =        {1285--1297}, 
     630  DOI =          {10.5194/gmd-8-1285-2015} 
    549631} 
    550632 
    551633@ARTICLE{Breivik_al_JPO2014, 
    552    AUTHOR = {{\O}yvind Breivik and Peter A.E.M. Janssen and Jean-Raymond Bidlot}, 
    553    YEAR = {2014}, 
    554    TITLE = "{Approximate Stokes Drift Profiles in Deep Water}", 
    555    JOURNAL = {JPO}, 
    556    VOLUME = {44}, 
    557    NUMBER = {9}, 
    558    DOI = {10.1175/JPO-D-14-0020.1.}, 
    559    PAGES = {2433--2445, arXiv:1406.5039} 
     634  AUTHOR =       {{\O}yvind Breivik and Peter A.E.M. Janssen and 
     635                  Jean-Raymond Bidlot}, 
     636  YEAR =         2014, 
     637  TITLE =        "{Approximate Stokes Drift Profiles in Deep Water}", 
     638  JOURNAL =      {JPO}, 
     639  VOLUME =       44, 
     640  NUMBER =       9, 
     641  DOI =          {10.1175/JPO-D-14-0020.1.}, 
     642  PAGES =        {2433--2445, arXiv:1406.5039} 
    560643} 
    561644 
    562645@ARTICLE{Breivik_al_OM2016, 
    563    AUTHOR = {{\O}yvind Breivik and Jean-Raymond Bidlot and Peter A.E.M. Janssen}, 
    564    YEAR = {2016}, 
    565    TITLE = "{A Stokes drift approximation based on the Phillips spectrum}", 
    566    JOURNAL = {OM}, 
    567    VOLUME = {100}, 
    568    DOI = {10.1016/j.ocemod.2016.01.005}, 
    569    PAGES = {49--56, arXiv:1601.08092} 
     646  AUTHOR =       {{\O}yvind Breivik and Jean-Raymond Bidlot and Peter 
     647                  A.E.M. Janssen}, 
     648  YEAR =         2016, 
     649  TITLE =        "{A Stokes drift approximation based on the Phillips 
     650                  spectrum}", 
     651  JOURNAL =      {OM}, 
     652  VOLUME =       100, 
     653  DOI =          {10.1016/j.ocemod.2016.01.005}, 
     654  PAGES =        {49--56, arXiv:1601.08092} 
    570655} 
    571656 
    572657@ARTICLE{Brodeau_al_OM09, 
    573   author = {L. Brodeau and B. Barnier and A.-M. Tr\'{e}guier and T. Penduff and S. Gulev}, 
    574   title = {An ERA40-based atmospheric forcing for global ocean circulation models}, 
    575   journal = OM, 
    576   year = {2009}, 
    577   volume = {31},  number = {3-4}, 
    578   pages = {88--104} 
    579 } 
    580  
     658  author =       {L. Brodeau and B. Barnier and A.-M. Tr\'{e}guier and 
     659                  T. Penduff and S. Gulev}, 
     660  title =        {An ERA40-based atmospheric forcing for global ocean 
     661                  circulation models}, 
     662  journal =      OM, 
     663  year =         2009, 
     664  volume =       31, 
     665  number =       {3-4}, 
     666  pages =        {88--104} 
     667} 
    581668 
    582669@ARTICLE{de_Boyer_Montegut_al_JGR04, 
    583   author = {C. de Boyer Mont\'{e}gut and G. Madec and A.S. Fischer and A. Lazar and D. Iudicone}, 
    584   title = {Mixed layer depth over the global ocean: An examination of profile 
    585    data and a profile-based climatology}, 
    586   journal = JGR, 
    587   year = {2004}, 
    588   volume = {109}, 
    589   pages = {C12003}, 
    590   doi = {10.1029/2004JC002378}, 
     670  author =       {C. de Boyer Mont\'{e}gut and G. Madec and 
     671                  A.S. Fischer and A. Lazar and D. Iudicone}, 
     672  title =        {Mixed layer depth over the global ocean: An 
     673                  examination of profile data and a profile-based 
     674                  climatology}, 
     675  journal =      JGR, 
     676  year =         2004, 
     677  volume =       109, 
     678  pages =        {C12003}, 
     679  doi =          {10.1029/2004JC002378}, 
    591680} 
    592681 
    593682@ARTICLE{de_Boyer_Montegut_al_JC07, 
    594   author = {C. de Boyer Mont\'{e}gut and J. Vialard and F. Durand and G. Madec}, 
    595   title = {Simulated seasonal and interannual variability of mixed layer heat 
    596    budget in the northern Indian Ocean}, 
    597   journal = JC, 
    598   year = {2007}, 
    599   volume = {20},  number = {13}, 
    600   pages = {3249--3268} 
     683  author =       {C. de Boyer Mont\'{e}gut and J. Vialard and 
     684                  F. Durand and G. Madec}, 
     685  title =        {Simulated seasonal and interannual variability of 
     686                  mixed layer heat budget in the northern Indian 
     687                  Ocean}, 
     688  journal =      JC, 
     689  year =         2007, 
     690  volume =       20, 
     691  number =       13, 
     692  pages =        {3249--3268} 
    601693} 
    602694 
    603695@ARTICLE{Brown_Campana_MWR78, 
    604   author = {J. A. Brown and K. A. Campana}, 
    605   title = {An Economical Time-Differencing System for Numerical Weather Prediction}, 
    606   journal = MWR, 
    607   year = {1978}, 
    608   volume = {106},  number = {8}, 
    609   pages = {1125--1136}, 
     696  author =       {J. A. Brown and K. A. Campana}, 
     697  title =        {An Economical Time-Differencing System for Numerical 
     698                  Weather Prediction}, 
     699  journal =      MWR, 
     700  year =         1978, 
     701  volume =       106, 
     702  number =       8, 
     703  pages =        {1125--1136}, 
    610704} 
    611705 
    612706@ARTICLE{Bryan1997, 
    613   author = {K. Bryan}, 
    614   title = {A Numerical Method for the Study of the Circulation of the World Ocean}, 
    615   journal = JCP, 
    616   year = {1997}, 
    617   volume = {135},  number = {2} 
     707  author =       {K. Bryan}, 
     708  title =        {A Numerical Method for the Study of the Circulation 
     709                  of the World Ocean}, 
     710  journal =      JCP, 
     711  year =         1997, 
     712  volume =       135, 
     713  number =       2 
    618714} 
    619715 
    620716@ARTICLE{Bryan1984, 
    621   author = {K. Bryan}, 
    622   title = {Accelerating the convergence to equilibrium of ocean-climate models}, 
    623   journal = JPO, 
    624   year = {1984}, 
    625   volume = {14}, 
    626   pages = {666--673} 
     717  author =       {K. Bryan}, 
     718  title =        {Accelerating the convergence to equilibrium of 
     719                  ocean-climate models}, 
     720  journal =      JPO, 
     721  year =         1984, 
     722  volume =       14, 
     723  pages =        {666--673} 
    627724} 
    628725 
    629726@ARTICLE{Bryden1973, 
    630   author = {H. L. Bryden}, 
    631   title = {New polynomials for thermal expansion, adiabatic temperature gradient 
    632     and potential temperature of sea water}, 
    633   journal = DSR, 
    634   year = {1973}, 
    635   volume = {20}, 
    636   pages = {401--408} 
     727  author =       {H. L. Bryden}, 
     728  title =        {New polynomials for thermal expansion, adiabatic 
     729                  temperature gradient and potential temperature of 
     730                  sea water}, 
     731  journal =      DSR, 
     732  year =         1973, 
     733  volume =       20, 
     734  pages =        {401--408} 
    637735} 
    638736 
    639737@ARTICLE{Burchard_OM02, 
    640   author = {Hans Burchard}, 
    641   title = {Energy-conserving discretisation of turbulent shear and buoyancy 
    642    production}, 
    643   journal = OM, 
    644   year = {2002}, 
    645   volume = {4},  number = {3-4}, 
    646   pages = {347--361}, 
    647   doi = {10.1016/S1463-5003(02)00009-4}, 
     738  author =       {Hans Burchard}, 
     739  title =        {Energy-conserving discretisation of turbulent shear 
     740                  and buoyancy production}, 
     741  journal =      OM, 
     742  year =         2002, 
     743  volume =       4, 
     744  number =       {3-4}, 
     745  pages =        {347--361}, 
     746  doi =          {10.1016/S1463-5003(02)00009-4}, 
    648747} 
    649748 
    650749@ARTICLE{Campin2004, 
    651   author = {J.-M. Campin and A. Adcroft and C. Hill and J. Marshall}, 
    652   title = {Conservation of properties in a free-surface model}, 
    653   journal = OM, 
    654   year = {2004}, 
    655   volume = {6},  number = {3-4}, 
    656   pages = {221--244} 
     750  author =       {J.-M. Campin and A. Adcroft and C. Hill and 
     751                  J. Marshall}, 
     752  title =        {Conservation of properties in a free-surface model}, 
     753  journal =      OM, 
     754  year =         2004, 
     755  volume =       6, 
     756  number =       {3-4}, 
     757  pages =        {221--244} 
    657758} 
    658759 
    659760@ARTICLE{Campin_al_OM08, 
    660   author = {J.-M. Campin and J. Marshall and D. Ferreira}, 
    661   title = {Sea ice-ocean coupling using a rescaled vertical coordinate z*}, 
    662   journal = OM, 
    663   year = {2008}, 
    664   volume = {24},  number = {1-2}, 
    665   pages = {1--14}, 
    666   doi = {10.1016/j.ocemod.2008.05.005}, 
     761  author =       {J.-M. Campin and J. Marshall and D. Ferreira}, 
     762  title =        {Sea ice-ocean coupling using a rescaled vertical 
     763                  coordinate z*}, 
     764  journal =      OM, 
     765  year =         2008, 
     766  volume =       24, 
     767  number =       {1-2}, 
     768  pages =        {1--14}, 
     769  doi =          {10.1016/j.ocemod.2008.05.005}, 
    667770} 
    668771 
    669772@ARTICLE{Campin_Goosse_Tel99, 
    670   author = {J.-M. Campin and H. Goosse}, 
    671   title = {Parameterization of density-driven downsloping flow for a coarse-resolution ocean model in z-coordinate}, 
    672   journal = {Tellus}, 
    673   year = {1999}, 
    674   volume = {51}, 
    675   pages = {412--430} 
     773  author =       {J.-M. Campin and H. Goosse}, 
     774  title =        {Parameterization of density-driven downsloping flow 
     775                  for a coarse-resolution ocean model in z-coordinate}, 
     776  journal =      {Tellus}, 
     777  year =         1999, 
     778  volume =       51, 
     779  pages =        {412--430} 
    676780} 
    677781 
    678782@ARTICLE{Carrere_Lyard_GRL03, 
    679   author = {L. Carr\`{e}re and F. Lyard}, 
    680   title = {Modelling the barotropic response of the global ocean to atmospheric 
    681    wind and pressure forcing - comparisons with observations}, 
    682   journal = GRL, 
    683   year = {2003}, 
    684   volume = {30},  number = {6}, 
    685   doi = {10.1029/2002GL016473}, 
     783  author =       {L. Carr\`{e}re and F. Lyard}, 
     784  title =        {Modelling the barotropic response of the global 
     785                  ocean to atmospheric wind and pressure forcing - 
     786                  comparisons with observations}, 
     787  journal =      GRL, 
     788  year =         2003, 
     789  volume =       30, 
     790  number =       6, 
     791  doi =          {10.1029/2002GL016473}, 
    686792} 
    687793 
    688794@ARTICLE{Castellari_al_JMS1998, 
    689   author = {S> Castellari and  N. Pinardi and K. Leaman }, 
    690   title = {A model study of air-sea interactions in the Mediterranean Sea.}, 
    691   journal = JMS, 
    692   year = {1998}, 
    693   volume = {18}, 
    694   pages = {89--114} 
     795  author =       {S> Castellari and N. Pinardi and K. Leaman }, 
     796  title =        {A model study of air-sea interactions in the 
     797                  Mediterranean Sea.}, 
     798  journal =      JMS, 
     799  year =         1998, 
     800  volume =       18, 
     801  pages =        {89--114} 
    695802} 
    696803 
    697804@TECHREPORT{Chanut2005, 
    698  author = {J. Chanut}, 
    699  title = {Nesting code for NEMO}, 
    700  year = {2005}, 
    701  institution = {European Union: Marine Environment and Security for the European Area (MERSEA) Integrated Project}, 
    702 note = {MERSEA-WP09-MERCA-TASK-9.1.1} 
    703 }  
     805  author =       {J. Chanut}, 
     806  title =        {Nesting code for NEMO}, 
     807  year =         2005, 
     808  institution =  {European Union: Marine Environment and Security for 
     809                  the European Area (MERSEA) Integrated Project}, 
     810  note =         {MERSEA-WP09-MERCA-TASK-9.1.1} 
     811} 
    704812 
    705813@ARTICLE{Chassignet_al_JPO03, 
    706   author = {Eric P. Chassignet and Linda T. Smith and George R. Halliwell}, 
    707   title = {North Atlantic Simulations with the Hybrid Coordinate Ocean Model 
    708    (HYCOM): Impact of the Vertical Coordinate Choice, Reference Pressure, and Thermobaricity}, 
    709   journal = JPO, 
    710   year = {2003}, 
    711   volume = {33}, 
    712   pages = {2504-2526} 
     814  author =       {Eric P. Chassignet and Linda T. Smith and George 
     815                  R. Halliwell}, 
     816  title =        {North Atlantic Simulations with the Hybrid 
     817                  Coordinate Ocean Model (HYCOM): Impact of the 
     818                  Vertical Coordinate Choice, Reference Pressure, and 
     819                  Thermobaricity}, 
     820  journal =      JPO, 
     821  year =         2003, 
     822  volume =       33, 
     823  pages =        {2504-2526} 
    713824} 
    714825 
    715826@ARTICLE{Covey_al_CD00, 
    716   author = {C. Covey and A. Abe-Ouchi and G.J. Boer and B.A. Boville and U. Cubasch 
    717    and L. Fairhead and G.M. Flato and H. Gordon and E. Guilyardi and X. Jiang  
    718    and T.C. Johns and H. Le Treut and G. Madec and G.A. Meehl and R. Miller  
    719    and A. Noda and S. B. Power and E. Roeckner and G. Russell and E.K. Schneider  
    720    and R.J. Stouffer and L. Terray and J.-S. von Storch}, 
    721   title = {The seasonal cycle in coupled ocean-atmosphere general circulation models}, 
    722   journal = CD, 
    723   year = {2000}, 
    724   volume = {16}, 
    725   pages = {775--787} 
     827  author =       {C. Covey and A. Abe-Ouchi and G.J. Boer and 
     828                  B.A. Boville and U. Cubasch and L. Fairhead and 
     829                  G.M. Flato and H. Gordon and E. Guilyardi and 
     830                  X. Jiang and T.C. Johns and H. Le Treut and G. Madec 
     831                  and G.A. Meehl and R. Miller and A. Noda and 
     832                  S. B. Power and E. Roeckner and G. Russell and 
     833                  E.K. Schneider and R.J. Stouffer and L. Terray and 
     834                  J.-S. von Storch}, 
     835  title =        {The seasonal cycle in coupled ocean-atmosphere 
     836                  general circulation models}, 
     837  journal =      CD, 
     838  year =         2000, 
     839  volume =       16, 
     840  pages =        {775--787} 
    726841} 
    727842 
    728843@ARTICLE{Canuto_2001, 
    729   author = {V. M. Canuto and A. Howard and Y. Cheng and M. S. Dubovikov}, 
    730   title = {Ocean turbulence. PartI: One-point closure model-momentum and heat vertical diffusivities}, 
    731   journal = JPO, 
    732   year = {2001}, 
    733   volume = {24},  number = {12}, 
    734   pages = {2546--2559} 
     844  author =       {V. M. Canuto and A. Howard and Y. Cheng and 
     845                  M. S. Dubovikov}, 
     846  title =        {Ocean turbulence. PartI: One-point closure 
     847                  model-momentum and heat vertical diffusivities}, 
     848  journal =      JPO, 
     849  year =         2001, 
     850  volume =       24, 
     851  number =       12, 
     852  pages =        {2546--2559} 
    735853} 
    736854 
    737855@ARTICLE{Cox1987, 
    738   author = {M. Cox}, 
    739   title = {Isopycnal diffusion in a z-coordinate ocean model}, 
    740   journal = OM, 
    741   year = {1987}, 
    742   volume = {74}, 
    743   pages = {1--9} 
     856  author =       {M. Cox}, 
     857  title =        {Isopycnal diffusion in a z-coordinate ocean model}, 
     858  journal =      OM, 
     859  year =         1987, 
     860  volume =       74, 
     861  pages =        {1--9} 
    744862} 
    745863 
    746864@ARTICLE{Craig_Banner_JPO94, 
    747   author = {P. D. Craig and M. L. Banner}, 
    748   title = {Modeling wave-enhanced turbulence in the ocean surface layer}, 
    749   journal = JPO, 
    750   year = {1994}, 
    751   volume = {24},  number = {12}, 
    752   pages = {2546--2559} 
     865  author =       {P. D. Craig and M. L. Banner}, 
     866  title =        {Modeling wave-enhanced turbulence in the ocean 
     867                  surface layer}, 
     868  journal =      JPO, 
     869  year =         1994, 
     870  volume =       24, 
     871  number =       12, 
     872  pages =        {2546--2559} 
    753873} 
    754874 
    755875@ARTICLE{Craik_Leibovich_JFM76, 
    756   author = {A. D. D. Craik and S. Leibovich}, 
    757   title = {A rational model for Langmuir circulations}, 
    758   journal = JFM, 
    759   year = {1976}, 
    760   volume = {73},  
    761   pages = {401--426} 
     876  author =       {A. D. D. Craik and S. Leibovich}, 
     877  title =        {A rational model for Langmuir circulations}, 
     878  journal =      JFM, 
     879  year =         1976, 
     880  volume =       73, 
     881  pages =        {401--426} 
    762882} 
    763883 
    764884@ARTICLE{Cravatte_al_OM07, 
    765   author = {Cravatte, S. and G. Madec and T. Izumo and C. Menkes and A. Bozec}, 
    766   title = {Progress in the 3-D circulation of the eastern equatorial Pacific 
    767    in a climate ocean model}, 
    768   journal = OM, 
    769   year = {2007}, 
    770   volume = {17},  number = {1}, 
    771   pages = {28--48} 
     885  author =       {Cravatte, S. and G. Madec and T. Izumo and C. Menkes 
     886                  and A. Bozec}, 
     887  title =        {Progress in the 3-D circulation of the eastern 
     888                  equatorial Pacific in a climate ocean model}, 
     889  journal =      OM, 
     890  year =         2007, 
     891  volume =       17, 
     892  number =       1, 
     893  pages =        {28--48} 
    772894} 
    773895 
    774896@BOOK{Daley_Barker_Bk01, 
    775   author = {R. Daley and E. Barker}, 
    776   title = {NAVDAS Source Book 2001}, 
    777   publisher = {NRL/PU/7530-01-441, Available from the Naval Research Laboratory, Monterey, CA., 93943-5502}, 
    778   year = {2001}, 
    779   pages = {163pp} 
     897  author =       {R. Daley and E. Barker}, 
     898  title =        {NAVDAS Source Book 2001}, 
     899  publisher =    {NRL/PU/7530-01-441, Available from the Naval 
     900                  Research Laboratory, Monterey, CA., 93943-5502}, 
     901  year =         2001, 
     902  pages =        {163pp} 
    780903} 
    781904 
    782905@ARTICLE{D'Alessio_al_JPO98, 
    783   author = {S. J. D. D'Alessio and K. Abdella and N. A. McFarlane}, 
    784   title = {A new second-order turbulence closure scheme for modeling the oceanic mixed layer}, 
    785   journal = JPO, 
    786   year = {1998}, 
    787   volume = {28}, 
    788   pages = {1624--1641} 
    789 } 
    790  
     906  author =       {S. J. D. D'Alessio and K. Abdella and 
     907                  N. A. McFarlane}, 
     908  title =        {A new second-order turbulence closure scheme for 
     909                  modeling the oceanic mixed layer}, 
     910  journal =      JPO, 
     911  year =         1998, 
     912  volume =       28, 
     913  pages =        {1624--1641} 
     914} 
    791915 
    792916@ARTICLE{Danabasoglu_al_2008, 
    793    author = {G. Danabasoglu and R. Ferrari and J. C. McWilliams}, 
    794    title = {Sensitivity of an ocean general circulation model to a parameterization of near-surface eddy fluxes}, 
    795    volume = {21}, 
    796    year = {2008}, 
    797    doi = {10.1175/2007JCLI1508.1}, 
    798    journal = {J. Climate}, 
    799    pages = {1192--1208}, 
    800 } 
     917  author =       {G. Danabasoglu and R. Ferrari and J. C. McWilliams}, 
     918  title =        {Sensitivity of an ocean general circulation model to 
     919                  a parameterization of near-surface eddy fluxes}, 
     920  volume =       21, 
     921  year =         2008, 
     922  doi =          {10.1175/2007JCLI1508.1}, 
     923  journal =      {J. Climate}, 
     924  pages =        {1192--1208}, 
     925} 
     926 
    801927@ARTICLE{Dandonneau_al_S04, 
    802   author = {Y. Dandonneau and C. Menkes and T. Gorgues and G. Madec}, 
    803   title = {Reply to Peter Killworth, 2004 : '' Comment on the Oceanic Rossby 
    804    Waves acting as a “Hay Rake” for ecosystem by-products ''}, 
    805   journal = {Science}, 
    806   year = {2004}, 
    807   volume = {304}, 
    808   pages = {390} 
     928  author =       {Y. Dandonneau and C. Menkes and T. Gorgues and 
     929                  G. Madec}, 
     930  title =        {Reply to Peter Killworth, 2004 : '' Comment on the 
     931                  Oceanic Rossby Waves acting as a “Hay Rake” for 
     932                  ecosystem by-products ''}, 
     933  journal =      {Science}, 
     934  year =         2004, 
     935  volume =       304, 
     936  pages =        390 
    809937} 
    810938 
    811939@ARTICLE{Davies_QJRMS76, 
    812  author = {H.C. Davies}, 
    813  title = {A lateral boundary formulation for multi-level prediction models}, 
    814  year = {1976}, 
    815  journal = QJRMS, 
    816  volume = {102}, 
    817  pages = {405--418} 
     940  author =       {H.C. Davies}, 
     941  title =        {A lateral boundary formulation for multi-level 
     942                  prediction models}, 
     943  year =         1976, 
     944  journal =      QJRMS, 
     945  volume =       102, 
     946  pages =        {405--418} 
    818947} 
    819948 
    820949@ARTICLE{Debreu_al_CG2008, 
    821   author = {L. Debreu and C. Vouland and E. Blayo}, 
    822   title = {AGRIF: Adaptive Grid Refinement In Fortran}, 
    823   journal = {Computers and Geosciences}, 
    824   year = {2008}, 
    825   volume = {34}, 
    826   pages = {8--13} 
     950  author =       {L. Debreu and C. Vouland and E. Blayo}, 
     951  title =        {AGRIF: Adaptive Grid Refinement In Fortran}, 
     952  journal =      {Computers and Geosciences}, 
     953  year =         2008, 
     954  volume =       34, 
     955  pages =        {8--13} 
    827956} 
    828957 
    829958@article{de_lavergne_JPO2016_mixing, 
    830    author = {C. de Lavergne and G. Madec and J. Le Sommer and A. J. G. Nurser and A. C. Naveira Garabato }, 
    831    title = {On Antarctic Bottom Water consumption in the abyssal ocean}, 
    832    issn = {0022-3670}, 
    833    doi= {10.1175/JPO-D-14-0201.1}, 
    834    abstract = {In studies of ocean mixing, it is generally assumed that small-scale turbulent overturns lose 15-20 \% of their energy in eroding the background stratification. Accumulating evidence that this energy fraction, or mixing efficiency Rf, significantly varies depending on flow properties challenges this assumption, however. Here, we examine the implications of a varying mixing efficiency for ocean energetics and deep water mass transformation. Combining current parameterizations of internal wave-driven mixing with a recent model expressing Rf as a function of a turbulence intensity parameter Reb = εν/νN2, we show that accounting for reduced mixing efficiencies in regions of weak stratification or energetic turbulence (high Reb) strongly limits the ability of breaking internal waves to supply oceanic potential energy and drive abyssal upwelling. Moving from a fixed Rf = 1/6 to a variable efficiency Rf(Reb) causes Antarctic Bottom Water upwelling induced by locally-dissipating internal tides and lee waves to fall from 9 to 4 Sv, and the corresponding potential energy source to plunge from 97 to 44 GW. When adding the contribution of remotely-dissipating internal tides under idealized distributions of energy dissipation, the total rate of Antarctic Bottom Water upwelling is reduced by about a factor of 2, reaching 5-15 Sv compared to 10-33 Sv for a fixed efficiency. Our results suggest that distributed mixing, overflow-related boundary processes and geothermal heating are more effective in consuming abyssal waters than topographically-enhanced mixing by breaking internal waves. Our calculations also point to the importance of accurately constraining Rf(Reb) and including the effect in ocean models.}, 
    835    journal = {Journal of Physical Oceanography}, 
    836    year = {2016}, 
    837    volume = {46},  pages = {635-–661} 
     959  author =       {C. de Lavergne and G. Madec and J. Le Sommer and 
     960                  A. J. G. Nurser and A. C. Naveira Garabato }, 
     961  title =        {On Antarctic Bottom Water consumption in the abyssal 
     962                  ocean}, 
     963  issn =         {0022-3670}, 
     964  doi =          {10.1175/JPO-D-14-0201.1}, 
     965  journal =      {Journal of Physical Oceanography}, 
     966  year =         2016, 
     967  volume =       46, 
     968  pages =        {635-–661} 
    838969} 
    839970 
    840971@article{de_lavergne_JPO2016_efficiency, 
    841    author = {C. de Lavergne and G. Madec and J. Le Sommer and A. J. G. Nurser and A. C. Naveira Garabato }, 
    842    title = {The impact of a variable mixing efficiency on the abyssal overturning}, 
    843    issn = {0022-3670}, 
    844    doi = {10.1175/JPO-D-14-0259.1}, 
    845    abstract = {In studies of ocean mixing, it is generally assumed that small-scale turbulent overturns lose 15-20 \% of their energy in eroding the background stratification. Accumulating evidence that this energy fraction, or mixing efficiency Rf, significantly varies depending on flow properties challenges this assumption, however. Here, we examine the implications of a varying mixing efficiency for ocean energetics and deep water mass transformation. Combining current parameterizations of internal wave-driven mixing with a recent model expressing Rf as a function of a turbulence intensity parameter Reb = εν/νN2, we show that accounting for reduced mixing efficiencies in regions of weak stratification or energetic turbulence (high Reb) strongly limits the ability of breaking internal waves to supply oceanic potential energy and drive abyssal upwelling. Moving from a fixed Rf = 1/6 to a variable efficiency Rf(Reb) causes Antarctic Bottom Water upwelling induced by locally-dissipating internal tides and lee waves to fall from 9 to 4 Sv, and the corresponding potential energy source to plunge from 97 to 44 GW. When adding the contribution of remotely-dissipating internal tides under idealized distributions of energy dissipation, the total rate of Antarctic Bottom Water upwelling is reduced by about a factor of 2, reaching 5-15 Sv compared to 10-33 Sv for a fixed efficiency. Our results suggest that distributed mixing, overflow-related boundary processes and geothermal heating are more effective in consuming abyssal waters than topographically-enhanced mixing by breaking internal waves. Our calculations also point to the importance of accurately constraining Rf(Reb) and including the effect in ocean models.}, 
    846    journal = {Journal of Physical Oceanography}, 
    847    year = {2016}, 
    848    volume = {46},  pages = {663-–681} 
     972  author =       {C. de Lavergne and G. Madec and J. Le Sommer and 
     973                  A. J. G. Nurser and A. C. Naveira Garabato }, 
     974  title =        {The impact of a variable mixing efficiency on the 
     975                  abyssal overturning}, 
     976  issn =         {0022-3670}, 
     977  doi =          {10.1175/JPO-D-14-0259.1}, 
     978  journal =      {Journal of Physical Oceanography}, 
     979  year =         2016, 
     980  volume =       46, 
     981  pages =        {663-–681} 
    849982} 
    850983 
    851984@ARTICLE{Delecluse_Madec_Bk00, 
    852   author = {P. Delecluse and G. Madec}, 
    853   title = {Ocean modelling and the role of the ocean in the climate system}, 
    854   journal = {In \textit{Modeling the Earth's Climate and its Variability}, Les 
    855    Houches, Session, LXVII 1997, 
    856    Eds. W. R. Holland, S. Joussaume and F. David, Elsevier Science}, 
    857   year = {2000}, 
    858   pages = {237--313} 
     985  author =       {P. Delecluse and G. Madec}, 
     986  title =        {Ocean modelling and the role of the ocean in the 
     987                  climate system}, 
     988  journal =      {In \textit{Modeling the Earth's Climate and its 
     989                  Variability}, Les Houches, Session, LXVII 1997, 
     990                  Eds. W. R. Holland, S. Joussaume and F. David, 
     991                  Elsevier Science}, 
     992  year =         2000, 
     993  pages =        {237--313} 
    859994} 
    860995 
    861996@PHDTHESIS{Demange_PhD2014, 
    862   author = {J. Demange}, 
    863   title = {Sch\'{e}mas num\'{e}riques d'advection et de propagation d’ondes de gravit\'{e}  
    864            dans les mod\`{e}les de circulation oc\'{e}anique.}, 
    865   school = {Doctorat es Applied Mathematiques, Grenoble University, France}, 
    866   year = {2014}, 
    867   pages = {138pp} 
     997  author =       {J. Demange}, 
     998  title =        {Sch\'{e}mas num\'{e}riques d'advection et de 
     999                  propagation d’ondes de gravit\'{e} dans les 
     1000                  mod\`{e}les de circulation oc\'{e}anique.}, 
     1001  school =       {Doctorat es Applied Mathematiques, Grenoble 
     1002                  University, France}, 
     1003  year =         2014, 
     1004  pages =        {138pp} 
    8681005} 
    8691006 
    8701007@ARTICLE{Dobricic_al_OS07, 
    871   author = {S. Dobricic and N. Pinardi and M. Adani and M. Tonani and  
    872             C. Fratianni and A. Bonazzi and V. Fernandez}, 
    873   title = {Daily oceanographic analysis by the Mediterranean basin scale  
    874            assimilation system}, 
    875   journal = OS, 
    876   year = {2007}, 
    877   volume = {3}, 
    878   pages = {149-157} 
     1008  author =       {S. Dobricic and N. Pinardi and M. Adani and 
     1009                  M. Tonani and C. Fratianni and A. Bonazzi and 
     1010                  V. Fernandez}, 
     1011  title =        {Daily oceanographic analysis by the Mediterranean 
     1012                  basin scale assimilation system}, 
     1013  journal =      OS, 
     1014  year =         2007, 
     1015  volume =       3, 
     1016  pages =        {149-157} 
    8791017} 
    8801018 
    8811019@ARTICLE{Doney_al_GBC04, 
    882   author = {S.C. Doney and K. Lindsay and K. Caldeira and J.−M. Campin and H. 
    883    Drange and J.−C. Dutay and M. Follows and Y. Gao and A. Gnanadesikan 
    884    and N. Gruber and A. Ishida and F. Joos and G. Madec and E. Maier−Reimer 
    885    and J.C. Marshall and R.J. Matear and P. Monfray and A. Mouchet and 
    886    R. Najjar and J.C. Orr and G.−K. Plattner and J. Sarmiento and R. 
    887    Schlitzer and R. Slater and I.J. Totterdell and M.−F. Weirig and 
    888    Y. Yamanaka and A. Yoo}, 
    889   title = {Evaluating global ocean carbon models: the importance of realistic 
    890    physics}, 
    891   journal = GBC, 
    892   year = {2004}, 
    893   volume = {18}, 
    894   pages = {GB3017}, 
    895   doi = {10.1029/2003GB002150}, 
     1020  author =       {S.C. Doney and K. Lindsay and K. Caldeira and 
     1021                  J.−M. Campin and H.  Drange and J.−C. Dutay and 
     1022                  M. Follows and Y. Gao and A. Gnanadesikan and 
     1023                  N. Gruber and A. Ishida and F. Joos and G. Madec and 
     1024                  E. Maier−Reimer and J.C. Marshall and R.J. Matear 
     1025                  and P. Monfray and A. Mouchet and R. Najjar and 
     1026                  J.C. Orr and G.−K. Plattner and J. Sarmiento and R. 
     1027                  Schlitzer and R. Slater and I.J. Totterdell and 
     1028                  M.−F. Weirig and Y. Yamanaka and A. Yoo}, 
     1029  title =        {Evaluating global ocean carbon models: the 
     1030                  importance of realistic physics}, 
     1031  journal =      GBC, 
     1032  year =         2004, 
     1033  volume =       18, 
     1034  pages =        {GB3017}, 
     1035  doi =          {10.1029/2003GB002150}, 
    8961036} 
    8971037 
    8981038@ARTICLE{Dorscher_Beckmann_JAOT00, 
    899   author = {R. D\"{o}scher and A. Beckmann}, 
    900   title = {Effects of a Bottom Boundary Layer Parameterization in a Coarse-Resolution 
    901    Model of the North Atlantic Ocean}, 
    902   journal = JAOT, 
    903   year = {2000}, 
    904   volume = {17}, 
    905   pages = {698--707} 
     1039  author =       {R. D\"{o}scher and A. Beckmann}, 
     1040  title =        {Effects of a Bottom Boundary Layer Parameterization 
     1041                  in a Coarse-Resolution Model of the North Atlantic 
     1042                  Ocean}, 
     1043  journal =      JAOT, 
     1044  year =         2000, 
     1045  volume =       17, 
     1046  pages =        {698--707} 
    9061047} 
    9071048 
    9081049@ARTICLE{Drijfhout_JPO94, 
    909   author = {S. S. Drijfhout}, 
    910   title = {Heat transport by Mesoscale Eddies in an Ocean Circulation Model}, 
    911   journal = JPO, 
    912   year = {1994}, 
    913   volume = {24}, 
    914   pages = {353--369} 
     1050  author =       {S. S. Drijfhout}, 
     1051  title =        {Heat transport by Mesoscale Eddies in an Ocean 
     1052                  Circulation Model}, 
     1053  journal =      JPO, 
     1054  year =         1994, 
     1055  volume =       24, 
     1056  pages =        {353--369} 
    9151057} 
    9161058 
    9171059@ARTICLE{Dukowicz1994, 
    918   author = {J. K. Dukowicz and R. D. Smith}, 
    919   title = {Implicit free-surface method for the Bryan-Cox-Semtner ocean model}, 
    920   journal = JGR, 
    921   year = {1994}, 
    922   volume = {99}, 
    923   pages = {7991--8014} 
     1060  author =       {J. K. Dukowicz and R. D. Smith}, 
     1061  title =        {Implicit free-surface method for the 
     1062                  Bryan-Cox-Semtner ocean model}, 
     1063  journal =      JGR, 
     1064  year =         1994, 
     1065  volume =       99, 
     1066  pages =        {7991--8014} 
    9241067} 
    9251068 
    9261069@ARTICLE{Durand_al_JC07, 
    927   author = {F. Durand and D. Shankar and C. de Boyer Mont\'{e}gut and S.S.C. 
    928    Shenoi and B. Blanke and G. Madec}, 
    929   title = {Modeling the barrier-layer formation in the South-Eastern Arabian 
    930    Sea}, 
    931   journal = JC, 
    932   year = {2007}, 
    933   volume = {20},  number = {10}, 
    934   pages = {2109--2120} 
     1070  author =       {F. Durand and D. Shankar and C. de Boyer 
     1071                  Mont\'{e}gut and S.S.C.  Shenoi and B. Blanke and 
     1072                  G. Madec}, 
     1073  title =        {Modeling the barrier-layer formation in the 
     1074                  South-Eastern Arabian Sea}, 
     1075  journal =      JC, 
     1076  year =         2007, 
     1077  volume =       20, 
     1078  number =       10, 
     1079  pages =        {2109--2120} 
    9351080} 
    9361081 
    9371082@ARTICLE{Durand_al_GRL04, 
    938   author = {F. Durand and S. R. Shetye and J. Vialard and D. Shankar and S.S.C. 
    939    Shenoi and C. Eth\'{e} and G. Madec}, 
    940   title = {Impact of temperature inversions on SST evolution in the South−Eastern 
    941    Arabian Sea during the pre−summer monsoon season}, 
    942   journal = GRL, 
    943   year = {2004}, 
    944   volume = {31}, 
    945   pages = {L01305}, 
    946   doi = {10.1029/2003GL018906}, 
     1083  author =       {F. Durand and S. R. Shetye and J. Vialard and 
     1084                  D. Shankar and S.S.C.  Shenoi and C. Eth\'{e} and 
     1085                  G. Madec}, 
     1086  title =        {Impact of temperature inversions on SST evolution in 
     1087                  the South−Eastern Arabian Sea during the pre−summer 
     1088                  monsoon season}, 
     1089  journal =      GRL, 
     1090  year =         2004, 
     1091  volume =       31, 
     1092  pages =        {L01305}, 
     1093  doi =          {10.1029/2003GL018906}, 
    9471094} 
    9481095 
    9491096@INCOLLECTION{Durran2001, 
    950   author = {D.R. Durran }, 
    951   title = {Open boundary conditions: fact and fiction}, 
    952   booktitle = {Advances in Mathematical Modelling of Atmosphere and Ocean Dynamics}, 
    953   publisher = {Kluwer Academic Publishers}, 
    954   year = {2001}, 
    955   editor = {P.F. Hodnett} 
     1097  author =       {D.R. Durran }, 
     1098  title =        {Open boundary conditions: fact and fiction}, 
     1099  booktitle =    {Advances in Mathematical Modelling of Atmosphere and 
     1100                  Ocean Dynamics}, 
     1101  publisher =    {Kluwer Academic Publishers}, 
     1102  year =         2001, 
     1103  editor =       {P.F. Hodnett} 
    9561104} 
    9571105 
    9581106@ARTICLE{Dutay_al_OM02, 
    959   author = {J.-C. Dutay and J.L. Bullister and S.C. Doney and J.C. Orr and R. 
    960    Najjar and K. Caldeira and J.-M. Campin and H. Drange and M. Follows 
    961    and Y. Gao and N. Gruber and M. W. Hecht and A. Ishida and F. Joos 
    962    and K. Lindsay and G. Madec and E. Maier-Reimer and J.C. Mashall 
    963    and R. J. Matear and P. Monfray and G.-K. Plattner and J. Sarmiento 
    964    and R. Schlitzer and R. Slater and I.J. Totterdell and M.-F. Weirig 
    965    and Y. Yamanaka and A. Tool}, 
    966   title = {Evaluation of ocean model ventilation with CFC-11: comparison of 
    967    13 global ocean models}, 
    968   journal = OM, 
    969   year = {2002}, 
    970   volume = {4}, 
    971   pages = {89--120} 
     1107  author =       {J.-C. Dutay and J.L. Bullister and S.C. Doney and 
     1108                  J.C. Orr and R.  Najjar and K. Caldeira and 
     1109                  J.-M. Campin and H. Drange and M. Follows and Y. Gao 
     1110                  and N. Gruber and M. W. Hecht and A. Ishida and 
     1111                  F. Joos and K. Lindsay and G. Madec and 
     1112                  E. Maier-Reimer and J.C. Mashall and R. J. Matear 
     1113                  and P. Monfray and G.-K. Plattner and J. Sarmiento 
     1114                  and R. Schlitzer and R. Slater and I.J. Totterdell 
     1115                  and M.-F. Weirig and Y. Yamanaka and A. Tool}, 
     1116  title =        {Evaluation of ocean model ventilation with CFC-11: 
     1117                  comparison of 13 global ocean models}, 
     1118  journal =      OM, 
     1119  year =         2002, 
     1120  volume =       4, 
     1121  pages =        {89--120} 
    9721122} 
    9731123 
    9741124@ARTICLE{Dutay_al_EFM09, 
    975   author = {J.-C. Dutay and J. Emile-Geay and D. Iudicone and P. Jean-Baptiste 
    976    and G. Madec and C. Carouge}, 
    977   title = {Helium Isotopic Constraints on Simulated Ocean Circulations - Implications 
    978    for abyssal theories}, 
    979   journal = EFM, 
    980   year = {2009}, 
    981   volume = {10},  number = {1-2}, 
    982   pages = {257--273}, 
    983   doi = {10.1007/s10652-009-9159-y} 
     1125  author =       {J.-C. Dutay and J. Emile-Geay and D. Iudicone and 
     1126                  P. Jean-Baptiste and G. Madec and C. Carouge}, 
     1127  title =        {Helium Isotopic Constraints on Simulated Ocean 
     1128                  Circulations - Implications for abyssal theories}, 
     1129  journal =      EFM, 
     1130  year =         2009, 
     1131  volume =       10, 
     1132  number =       {1-2}, 
     1133  pages =        {257--273}, 
     1134  doi =          {10.1007/s10652-009-9159-y} 
    9841135} 
    9851136 
    9861137@ARTICLE{Dutay.J.C2004, 
    987   author = {J. -C. Dutay and P. J. -Baptiste and J. -M. Campin and A. Ishida 
    988    and E. M. -Reimer and R. J. Matear and A. Mouchet and I. J. Totterdell 
    989    and Y. Yamanaka and K. Rodgers and G. Madec and J.C. Orr}, 
    990   title = {Evaluation of OCMIP-2 ocean models’ deep circulation with mantle helium-3}, 
    991   journal = JMS, 
    992   year = {2004}, 
    993   pages = {1--22} 
     1138  author =       {J. -C. Dutay and P. J. -Baptiste and J. -M. Campin 
     1139                  and A. Ishida and E. M. -Reimer and R. J. Matear and 
     1140                  A. Mouchet and I. J. Totterdell and Y. Yamanaka and 
     1141                  K. Rodgers and G. Madec and J.C. Orr}, 
     1142  title =        {Evaluation of OCMIP-2 ocean models’ deep 
     1143                  circulation with mantle helium-3}, 
     1144  journal =      JMS, 
     1145  year =         2004, 
     1146  pages =        {1--22} 
    9941147} 
    9951148 
    9961149@ARTICLE{D'Ortenzio_al_GRL05, 
    997   author = {F. D\'Ortenzio and D. Iudicone and C. de Boyer Mont\'{e}gut and P. 
    998    Testor and D. Antoine and S. Marullo and R. Santoleri and G. Madec}, 
    999   title = {Seasonal variability of the mixed layer depth in the Mediterranean 
    1000    Sea : a new climatology based on analysis of individual profiles}, 
    1001   journal = GRL, 
    1002   year = {2005}, 
    1003   volume = {32}, 
    1004   pages = {L12605}, 
    1005   doi = {10.1029/2005GL022463}, 
     1150  author =       {F. D\'Ortenzio and D. Iudicone and C. de Boyer 
     1151                  Mont\'{e}gut and P.  Testor and D. Antoine and 
     1152                  S. Marullo and R. Santoleri and G. Madec}, 
     1153  title =        {Seasonal variability of the mixed layer depth in the 
     1154                  Mediterranean Sea : a new climatology based on 
     1155                  analysis of individual profiles}, 
     1156  journal =      GRL, 
     1157  year =         2005, 
     1158  volume =       32, 
     1159  pages =        {L12605}, 
     1160  doi =          {10.1029/2005GL022463}, 
    10061161} 
    10071162 
    10081163@ARTICLE{Egbert_Ray_JGR01, 
    1009   author = {G.B. Egbert and R.D. Ray}, 
    1010   title = {Estimates of M2 tidal energy dissipation from TOPEX/POSEIDON altimeter 
    1011    data}, 
    1012   journal = JGR, 
    1013   year = {2001}, 
    1014   volume = {106}, 
    1015   pages = {22475--22502} 
     1164  author =       {G.B. Egbert and R.D. Ray}, 
     1165  title =        {Estimates of M2 tidal energy dissipation from 
     1166                  TOPEX/POSEIDON altimeter data}, 
     1167  journal =      JGR, 
     1168  year =         2001, 
     1169  volume =       106, 
     1170  pages =        {22475--22502} 
    10161171} 
    10171172 
    10181173@ARTICLE{Egbert_Ray_Nat00, 
    1019   author = {G.B. Egbert and R.D Ray}, 
    1020   title = {Significant dissipation of tidal energy in the deep ocean inferred 
    1021    from satellite altimeter data}, 
    1022   journal = {Nature}, 
    1023   year = {2000}, 
    1024   volume = {405}, 
    1025   pages = {775--778} 
     1174  author =       {G.B. Egbert and R.D Ray}, 
     1175  title =        {Significant dissipation of tidal energy in the deep 
     1176                  ocean inferred from satellite altimeter data}, 
     1177  journal =      {Nature}, 
     1178  year =         2000, 
     1179  volume =       405, 
     1180  pages =        {775--778} 
    10261181} 
    10271182 
    10281183@ARTICLE{Eiseman1980, 
    1029   author = {P. R. Eiseman and A. P. Stone}, 
    1030   title = {Conservation lows of fluid dynamics -- A survey}, 
    1031   journal = {SIAM Review}, 
    1032   year = {1980}, 
    1033   volume = {22}, 
    1034   pages = {12--27} 
     1184  author =       {P. R. Eiseman and A. P. Stone}, 
     1185  title =        {Conservation lows of fluid dynamics -- A survey}, 
     1186  journal =      {SIAM Review}, 
     1187  year =         1980, 
     1188  volume =       22, 
     1189  pages =        {12--27} 
    10351190} 
    10361191 
    10371192@ARTICLE{Emile-Geay_Madec_OS09, 
    1038   author = {J. Emile-Geay and G. Madec}, 
    1039   title = {Geothermal heating, diapycnal mixing and the abyssal circulation}, 
    1040   journal = OS, 
    1041   year = {2009}, 
    1042   volume = {5}, 
    1043   pages = {281--325} 
     1193  author =       {J. Emile-Geay and G. Madec}, 
     1194  title =        {Geothermal heating, diapycnal mixing and the abyssal 
     1195                  circulation}, 
     1196  journal =      OS, 
     1197  year =         2009, 
     1198  volume =       5, 
     1199  pages =        {281--325} 
    10441200} 
    10451201 
    10461202@ARTICLE{Engerdahl_Tel95, 
    1047  author = {H. Engerdahl}, 
    1048  year = {1995}, 
    1049  title = {Use of the flow relaxation scheme in a three-dimensional baroclinic ocean model with realistic topography}, 
    1050  journal = {Tellus}, 
    1051  volume = {47A}, 
    1052  pages = {365--382} 
     1203  author =       {H. Engerdahl}, 
     1204  year =         1995, 
     1205  title =        {Use of the flow relaxation scheme in a 
     1206                  three-dimensional baroclinic ocean model with 
     1207                  realistic topography}, 
     1208  journal =      {Tellus}, 
     1209  volume =       {47A}, 
     1210  pages =        {365--382} 
    10531211} 
    10541212 
    10551213@ARTICLE{EUROMODEL_OA95, 
    1056   author = {EUROMODEL Group (P.M. Lehucher, L. Beautier, M. Chartier, F. Martel, 
    1057    L. Mortier, P. Brehmer, C. Millot, C. Alberola, M. Benzhora, I. Taupier-Letage, 
    1058    G. Chabert d'Hieres, H. Didelle, P. Gleizon, D. Obaton, M. Cr\'{e}pon, 
    1059    C. Herbaut, G. Madec, S. Speich, J. Nihoul, J. M. Beckers, P. Brasseur, 
    1060    E. Deleersnijder, S. Djenidi, J. Font, A. Castellon, E. Garcia-Ladona, 
    1061    M. J. Lopez-Garcia, M. Manriquez, M. Maso, J. Salat, J. Tintore, 
    1062    S. Alonso, D. Gomis, A. Viudez, M. Astraldi, D. Bacciola, M. Borghini, 
    1063    F. Dell'amico, C. Galli, E. Lazzoni, G. P. Gasparini, S. Sparnocchia, 
    1064    and A. Harzallah)}, 
    1065   title = {Progress from 1989 to 1992 in understanding the circulation of the Western Mediterranean Sea.}, 
    1066   journal = {Oceanologica Acta}, 
    1067   year = {1995}, 
    1068   volume = {18},  number = {2}, 
    1069   pages = {255--271} 
     1214  author =       {EUROMODEL Group (P.M. Lehucher, L. Beautier, 
     1215                  M. Chartier, F. Martel, L. Mortier, P. Brehmer, 
     1216                  C. Millot, C. Alberola, M. Benzhora, 
     1217                  I. Taupier-Letage, G. Chabert d'Hieres, H. Didelle, 
     1218                  P. Gleizon, D. Obaton, M. Cr\'{e}pon, C. Herbaut, 
     1219                  G. Madec, S. Speich, J. Nihoul, J. M. Beckers, 
     1220                  P. Brasseur, E. Deleersnijder, S. Djenidi, J. Font, 
     1221                  A. Castellon, E. Garcia-Ladona, M. J. Lopez-Garcia, 
     1222                  M. Manriquez, M. Maso, J. Salat, J. Tintore, 
     1223                  S. Alonso, D. Gomis, A. Viudez, M. Astraldi, 
     1224                  D. Bacciola, M. Borghini, F. Dell'amico, C. Galli, 
     1225                  E. Lazzoni, G. P. Gasparini, S. Sparnocchia, and 
     1226                  A. Harzallah)}, 
     1227  title =        {Progress from 1989 to 1992 in 
     1228                  understanding the circulation of the Western 
     1229                  Mediterranean Sea.}, 
     1230  journal =      {Oceanologica Acta}, 
     1231  year =         1995, 
     1232  volume =       18, 
     1233  number =       2, 
     1234  pages =        {255--271} 
    10701235} 
    10711236 
    10721237@PHDTHESIS{Farge1987, 
    1073   author = {M. Farge}, 
    1074   title = {Dynamique non lineaire des ondes et des tourbillons dans les equations de Saint Venant}, 
    1075   school = {Doctorat es Mathematiques, Paris VI University, France}, 
    1076   year = {1987}, 
    1077   pages = {401pp} 
     1238  author =       {M. Farge}, 
     1239  title =        {Dynamique non lineaire des ondes et des tourbillons 
     1240                  dans les equations de Saint Venant}, 
     1241  school =       {Doctorat es Mathematiques, Paris VI University, 
     1242                  France}, 
     1243  year =         1987, 
     1244  pages =        {401pp} 
    10781245} 
    10791246 
    10801247@ARTICLE{Farrow1995, 
    1081   author = {D. E. Farrow and D. P. Stevens}, 
    1082   title = {A new tracer advection scheme for Bryan--Cox type ocean general circulation 
    1083    models}, 
    1084   journal = JPO, 
    1085   year = {1995}, 
    1086   volume = {25}, 
    1087   pages = {1731--1741.} 
     1248  author =       {D. E. Farrow and D. P. Stevens}, 
     1249  title =        {A new tracer advection scheme for Bryan--Cox type 
     1250                  ocean general circulation models}, 
     1251  journal =      JPO, 
     1252  year =         1995, 
     1253  volume =       25, 
     1254  pages =        {1731--1741.} 
    10881255} 
    10891256 
    10901257@ARTICLE{Flather1976, 
    1091  author = {R.A. Flather}, 
    1092  year = {1976}, 
    1093  title = {A tidal model of the north-west European continental shelf}, 
    1094  journal = {Memoires de la Societ\'{e} Royale des Sciences de Li\`{e}ge}, 
    1095  volume = {6}, 
    1096  pages = {141--164} 
     1258  author =       {R.A. Flather}, 
     1259  year =         1976, 
     1260  title =        {A tidal model of the north-west European continental 
     1261                  shelf}, 
     1262  journal =      {Memoires de la Societ\'{e} Royale des Sciences de 
     1263                  Li\`{e}ge}, 
     1264  volume =       6, 
     1265  pages =        {141--164} 
    10971266} 
    10981267 
    10991268@ARTICLE{Flather_JPO94, 
    1100  author = {R.A. Flather}, 
    1101  year = {1994}, 
    1102  title = {A storm surge prediction model for the northern Bay of Bengal with application to the cyclone disaster in April 1991}, 
    1103  journal = JPO, 
    1104  volume = {24}, 
    1105  pages = {172--190} 
     1269  author =       {R.A. Flather}, 
     1270  year =         1994, 
     1271  title =        {A storm surge prediction model for the northern Bay 
     1272                  of Bengal with application to the cyclone disaster 
     1273                  in April 1991}, 
     1274  journal =      JPO, 
     1275  volume =       24, 
     1276  pages =        {172--190} 
    11061277} 
    11071278 
    11081279@ARTICLE{Fujio1991, 
    1109   author = {S. Fujio and N. Imasato}, 
    1110   title = {Diagnostic calculation for circulation and water mass movement in 
    1111    the deep Pacific}, 
    1112   journal = JGR, 
    1113   year = {1991}, 
    1114   volume = {96}, 
    1115   pages = {759--774} 
     1280  author =       {S. Fujio and N. Imasato}, 
     1281  title =        {Diagnostic calculation for circulation and water 
     1282                  mass movement in the deep Pacific}, 
     1283  journal =      JGR, 
     1284  year =         1991, 
     1285  volume =       96, 
     1286  pages =        {759--774} 
    11161287} 
    11171288 
    11181289@ARTICLE{Galperin_al_JAS88, 
    1119   author = {B. Galperin and L. H. Kantha and S. Hassid and A. Rosati}, 
    1120   title = {A quasi-equilibrium turbulent energy model for geophysical flows}, 
    1121   journal = JAS, 
    1122   year = {1988}, 
    1123   volume = {45}, 
    1124   pages = {55--62} 
     1290  author =       {B. Galperin and L. H. Kantha and S. Hassid and 
     1291                  A. Rosati}, 
     1292  title =        {A quasi-equilibrium turbulent energy model for 
     1293                  geophysical flows}, 
     1294  journal =      JAS, 
     1295  year =         1988, 
     1296  volume =       45, 
     1297  pages =        {55--62} 
    11251298} 
    11261299 
    11271300@ARTICLE{Gargett1984, 
    1128   author = {A. E. Gargett}, 
    1129   title = {Vertical eddy diffusivity in the ocean interior}, 
    1130   journal = JMR, 
    1131   year = {1984}, 
    1132   volume = {42} 
     1301  author =       {A. E. Gargett}, 
     1302  title =        {Vertical eddy diffusivity in the ocean interior}, 
     1303  journal =      JMR, 
     1304  year =         1984, 
     1305  volume =       42 
    11331306} 
    11341307 
    11351308@ARTICLE{Gaspar1990, 
    1136   author = {P. Gaspar and Y. Gr{\'e}goris and J.-M. Lefevre}, 
    1137   title = {A simple eddy kinetic energy model for simulations of the oceanic vertical mixing\:  
    1138     Tests at Station Papa and long-term upper ocean study site}, 
    1139   journal = JGR, 
    1140   year = {1990}, 
    1141   volume = {95},  number = {C9} 
     1309  author =       {P. Gaspar and Y. Gr{\'e}goris and J.-M. Lefevre}, 
     1310  title =        {A simple eddy kinetic energy model for simulations 
     1311                  of the oceanic vertical mixing\: Tests at Station 
     1312                  Papa and long-term upper ocean study site}, 
     1313  journal =      JGR, 
     1314  year =         1990, 
     1315  volume =       95, 
     1316  number =       {C9} 
    11421317} 
    11431318 
    11441319@ARTICLE{Gent1990, 
    1145   author = {P. R. Gent and J. C. Mcwilliams}, 
    1146   title = {Isopycnal Mixing in Ocean Circulation Models}, 
    1147   journal = JPO, 
    1148   year = {1990}, 
    1149   volume = {20},  number = {1}, 
    1150   pages = {150--155}, 
     1320  author =       {P. R. Gent and J. C. Mcwilliams}, 
     1321  title =        {Isopycnal Mixing in Ocean Circulation Models}, 
     1322  journal =      JPO, 
     1323  year =         1990, 
     1324  volume =       20, 
     1325  number =       1, 
     1326  pages =        {150--155}, 
    11511327} 
    11521328 
    11531329@Article{Gentemann_al_JGR09, 
    1154   author =   {C. L. Gentemann  and P. J. Minnett and B. Ward}, 
    1155   title =        {Profiles of Ocean Surface heating ({POSH}): A new model  
    1156                   of upper ocean diurnal warming}, 
    1157   journal =     JGR, 
    1158   year =     {2009}, 
    1159   Volume =   {114}, 
    1160   Pages =    {C07017}, 
    1161   doi =   {10.1029/2008JC004825}, 
    1162   OPTannote =   {} 
     1330  author =       {C. L. Gentemann and P. J. Minnett and B. Ward}, 
     1331  title =        {Profiles of Ocean Surface heating ({POSH}): A new 
     1332                  model of upper ocean diurnal warming}, 
     1333  journal =      JGR, 
     1334  year =         2009, 
     1335  Volume =       114, 
     1336  Pages =        {C07017}, 
     1337  doi =          {10.1029/2008JC004825} 
    11631338} 
    11641339 
    11651340@ARTICLE{Gerdes1993a, 
    1166   author = {R. Gerdes}, 
    1167   title = {A primitive equation ocean circulation model using a general vertical 
    1168    coordinate transformation 1. Description and testing of the model}, 
    1169   journal = JGR, 
    1170   year = {1993}, 
    1171   volume = {98} 
     1341  author =       {R. Gerdes}, 
     1342  title =        {A primitive equation ocean circulation model using a 
     1343                  general vertical coordinate transformation 
     1344                  1. Description and testing of the model}, 
     1345  journal =      JGR, 
     1346  year =         1993, 
     1347  volume =       98 
    11721348} 
    11731349 
    11741350@ARTICLE{Gerdes1993b, 
    1175   author = {R. Gerdes}, 
    1176   title = {A primitive equation ocean circulation model using a general vertical 
    1177    coordinate transformation 2. Application to an overflow problem}, 
    1178   journal = JGR, 
    1179   year = {1993}, 
    1180   volume = {98}, 
    1181   pages = {14703--14726} 
     1351  author =       {R. Gerdes}, 
     1352  title =        {A primitive equation ocean circulation model using a 
     1353                  general vertical coordinate transformation 
     1354                  2. Application to an overflow problem}, 
     1355  journal =      JGR, 
     1356  year =         1993, 
     1357  volume =       98, 
     1358  pages =        {14703--14726} 
    11821359} 
    11831360 
    11841361@ARTICLE{Gerdes1991, 
    1185    Author = {Gerdes, R{\"u}diger and K{\"o}berle, Cornelia and Willebrand, J{\"u}rgen}, 
    1186    Doi = {10.1007/BF00210006}, 
    1187    Journal = {Clim. Dynamics}, 
    1188    Number = {4}, 
    1189    Pages = {211--226}, 
    1190    Title = {The influence of numerical advection schemes on the results of ocean general circulation models}, 
    1191    Volume = {5}, 
    1192    Year = {1991}, 
    1193 } 
     1362  Author =       {Gerdes, R{\"u}diger and K{\"o}berle, Cornelia and 
     1363                  Willebrand, J{\"u}rgen}, 
     1364  Doi =          {10.1007/BF00210006}, 
     1365  Journal =      {Clim. Dynamics}, 
     1366  Number =       4, 
     1367  Pages =        {211--226}, 
     1368  Title =        {The influence of numerical advection schemes on the 
     1369                  results of ocean general circulation models}, 
     1370  Volume =       5, 
     1371  Year =         1991, 
     1372} 
     1373 
    11941374@TECHREPORT{Gibson_TR86, 
    1195   author = {J. K. Gibson}, 
    1196   title = {Standard software development and maintenance}, 
    1197   institution = {Operational Dep., ECMWF, Reading, UK.}, 
    1198   year = {1986} 
     1375  author =       {J. K. Gibson}, 
     1376  title =        {Standard software development and maintenance}, 
     1377  institution =  {Operational Dep., ECMWF, Reading, UK.}, 
     1378  year =         1986 
    11991379} 
    12001380 
    12011381@BOOK{Gill1982, 
    1202   title = {Atmosphere-Ocean Dynamics}, 
    1203   publisher = {International Geophysics Series, Academic Press, New-York}, 
    1204   year = {1982}, 
    1205   author = {A. E. Gill} 
     1382  title =        {Atmosphere-Ocean Dynamics}, 
     1383  publisher =    {International Geophysics Series, Academic Press, 
     1384                  New-York}, 
     1385  year =         1982, 
     1386  author =       {A. E. Gill} 
    12061387} 
    12071388 
    12081389@article{goff_JGR2010, 
    1209    author = {J. A. Goff}, 
    1210    title = {Global prediction of abyssal hill root-mean-square heights from small-scale altimetric gravity variability}, 
    1211    issn = {2156-2202}, 
    1212    doi = {10.1029/2010JB007867}, 
    1213    abstract = {Abyssal hills, which are pervasive landforms on the seafloor of the Earth's oceans, represent a potential tectonic record of the history of mid-ocean ridge spreading. However, the most detailed global maps of the seafloor, derived from the satellite altimetry-based gravity field, cannot be used to deterministically characterize such small-scale ({\textless}10 km) morphology. Nevertheless, the small-scale variability of the gravity field can be related to the statistical properties of abyssal hill morphology using the upward continuation formulation. In this paper, I construct a global prediction of abyssal hill root-mean-square (rms) heights from the small-scale variability of the altimetric gravity field. The abyssal hill-related component of the gravity field is derived by first masking distinct features, such as seamounts, mid-ocean ridges, and continental margins, and then applying a newly designed adaptive directional filter algorithm to remove fracture zone/discontinuity fabric. A noise field is derived empirically by correlating the rms variability of the small-scale gravity field to the altimetric noise field in regions of very low relief, and the noise variance is subtracted from the small-scale gravity variance. Suites of synthetically derived, abyssal hill formed gravity fields are generated as a function of water depth, basement rms heights, and sediment thickness and used to predict abyssal hill seafloor rms heights from corrected small-scale gravity rms height. The resulting global prediction of abyssal hill rms heights is validated qualitatively by comparing against expected variations in abyssal hill morphology and quantitatively by comparing against actual measurements of rms heights. Although there is scatter, the prediction appears unbiased.}, 
    1214    volume = {115}, 
    1215    number = {B12}, 
    1216    journal = {Journal of Geophysical Research: Solid Earth}, 
    1217    year = {2010}, 
    1218    pages = {B12104}, 
     1390  author =       {J. A. Goff}, 
     1391  title =        {Global prediction of abyssal hill root-mean-square 
     1392                  heights from small-scale altimetric gravity 
     1393                  variability}, 
     1394  issn =         {2156-2202}, 
     1395  doi =          {10.1029/2010JB007867}, 
     1396  volume =       115, 
     1397  number =       {B12}, 
     1398  journal =      {Journal of Geophysical Research: Solid Earth}, 
     1399  year =         2010, 
     1400  pages =        {B12104}, 
    12191401} 
    12201402 
    12211403@ARTICLE{Goosse_al_JGR99, 
    1222   author = {H. Goosse and E. Deleersnijder and T. Fichefet and M. England}, 
    1223   title = {Sensitivity of a global coupled ocean-sea ice model to the parameterization of vertical mixing}, 
    1224   journal = JGR, 
    1225   year = {1999}, 
    1226   volume = {104}, 
    1227   pages = {13,681--13,695} 
     1404  author =       {H. Goosse and E. Deleersnijder and T. Fichefet and 
     1405                  M. England}, 
     1406  title =        {Sensitivity of a global coupled ocean-sea ice model 
     1407                  to the parameterization of vertical mixing}, 
     1408  journal =      JGR, 
     1409  year =         1999, 
     1410  volume =       104, 
     1411  pages =        {13,681--13,695} 
    12281412} 
    12291413 
    12301414@ARTICLE{Gorgues_al_GRL07, 
    1231   author = {T. Gorgues and C. Menkes and O. Aumont and K. Rodgers and G. Madec and Y. Dandonneau}, 
    1232   title = {Indonesian Throughflow control of the eastern equatorial Pacific biogeochemistry}, 
    1233   journal = GRL, 
    1234   year = {2007}, 
    1235   volume = {34}, 
    1236   pages = {L05609}, 
    1237   doi = {10.1029/2006GL028210}, 
     1415  author =       {T. Gorgues and C. Menkes and O. Aumont and 
     1416                  K. Rodgers and G. Madec and Y. Dandonneau}, 
     1417  title =        {Indonesian Throughflow control of the eastern 
     1418                  equatorial Pacific biogeochemistry}, 
     1419  journal =      GRL, 
     1420  year =         2007, 
     1421  volume =       34, 
     1422  pages =        {L05609}, 
     1423  doi =          {10.1029/2006GL028210}, 
    12381424} 
    12391425 
    12401426@ARTICLE{Graham_McDougall_JPO13, 
    1241   author = {F.S. Graham and T.J. McDougall}, 
    1242   title = {Quantifying the nonconservative production of conservative temperature, potential temperature, and entropy}, 
    1243   journal = JPO, 
    1244   year = {2013}, 
    1245   volume = {43}, 
    1246   pages = {838--862}, 
    1247   doi = {10.1175/JPO-D-11-0188.1} 
     1427  author =       {F.S. Graham and T.J. McDougall}, 
     1428  title =        {Quantifying the nonconservative production of 
     1429                  conservative temperature, potential temperature, and 
     1430                  entropy}, 
     1431  journal =      JPO, 
     1432  year =         2013, 
     1433  volume =       43, 
     1434  pages =        {838--862}, 
     1435  doi =          {10.1175/JPO-D-11-0188.1} 
    12481436} 
    12491437 
    12501438@ARTICLE{Greatbatch_JGR94, 
    1251   author = {R. J. Greatbatch}, 
    1252   title = {A note on the representation of steric sea level in models that conserve 
    1253    volume rather than mass}, 
    1254   journal = JGR, 
    1255   year = {1994}, 
    1256   volume = {99},  number = {C6}, 
    1257   pages = {12,767--12,771} 
     1439  author =       {R. J. Greatbatch}, 
     1440  title =        {A note on the representation of steric sea level in 
     1441                  models that conserve volume rather than mass}, 
     1442  journal =      JGR, 
     1443  year =         1994, 
     1444  volume =       99, 
     1445  number =       {C6}, 
     1446  pages =        {12,767--12,771} 
    12581447} 
    12591448 
    12601449@BOOK{Griffies_Bk04, 
    1261   title = {Fundamentals of ocean climate models}, 
    1262   publisher = {Princeton University Press, 434pp}, 
    1263   year = {2004}, 
    1264   author = {S.M. Griffies} 
     1450  title =        {Fundamentals of ocean climate models}, 
     1451  publisher =    {Princeton University Press, 434pp}, 
     1452  year =         2004, 
     1453  author =       {S.M. Griffies} 
    12651454} 
    12661455 
    12671456@ARTICLE{Griffies_JPO98, 
    1268   author = {S.M. Griffies}, 
    1269   title = {The Gent-McWilliams skew-flux}, 
    1270   journal = JPO, 
    1271   year = {1998}, 
    1272   volume = {28}, 
    1273   pages = {831--841} 
     1457  author =       {S.M. Griffies}, 
     1458  title =        {The Gent-McWilliams skew-flux}, 
     1459  journal =      JPO, 
     1460  year =         1998, 
     1461  volume =       28, 
     1462  pages =        {831--841} 
    12741463} 
    12751464 
    12761465@ARTICLE{Griffies_al_OM09, 
    1277   author = {S.M. Griffies and A. Biastoch and C. Boning and F. Bryan and G. Danabasoglu 
    1278    and E. P. Chassignet and M. H. England and R. Gerdes and H. Haak 
    1279    and R. W. Hallberg and W. Hazeleger and J. Jungclaus and W. G. Large 
    1280    and G. Madec and A. Pirani and B. L. Samuels and M. Scheinert and 
    1281    A. Sen Gupta and C. A. Severijns and H. L. Simmons and A.-M. Treguier 
    1282    and M. Winton and S. Yeager and J. Yin}, 
    1283   title = {Coordinated Ocean-ice Reference Experiments (COREs)}, 
    1284   journal = OM, 
    1285   year = {2009}, 
    1286   volume = {26},  number = {1-2}, 
    1287   pages = {1--46}, 
    1288   doi = {10.1016/j.ocemod.2008.08.007}, 
     1466  author =       {S.M. Griffies and A. Biastoch and C. Boning and 
     1467                  F. Bryan and G. Danabasoglu and E. P. Chassignet and 
     1468                  M. H. England and R. Gerdes and H. Haak and 
     1469                  R. W. Hallberg and W. Hazeleger and J. Jungclaus and 
     1470                  W. G. Large and G. Madec and A. Pirani and 
     1471                  B. L. Samuels and M. Scheinert and A. Sen Gupta and 
     1472                  C. A. Severijns and H. L. Simmons and A.-M. Treguier 
     1473                  and M. Winton and S. Yeager and J. Yin}, 
     1474  title =        {Coordinated Ocean-ice Reference Experiments (COREs)}, 
     1475  journal =      OM, 
     1476  year =         2009, 
     1477  volume =       26, 
     1478  number =       {1-2}, 
     1479  pages =        {1--46}, 
     1480  doi =          {10.1016/j.ocemod.2008.08.007}, 
    12891481} 
    12901482 
    12911483@ARTICLE{Griffies_al_OS05, 
    1292   author = {S.M. Griffies and A. Gnanadesikan and K.W. Dixon and J.P. Dunne and 
    1293    R. Gerdes and M.J. Harrison and A. Rosati and J.L. Russell and B.L. 
    1294    Samuels and M.J. Spelman and M. Winton and R. Zhang}, 
    1295   title = {Formulation of an ocean model for global climate simulations}, 
    1296   journal = OS, 
    1297   year = {2005}, 
    1298   volume = {1}, 
    1299   pages = {45--79} 
    1300   } 
     1484  author =       {S.M. Griffies and A. Gnanadesikan and K.W. Dixon and 
     1485                  J.P. Dunne and R. Gerdes and M.J. Harrison and 
     1486                  A. Rosati and J.L. Russell and B.L.  Samuels and 
     1487                  M.J. Spelman and M. Winton and R. Zhang}, 
     1488  title =        {Formulation of an ocean model for global climate 
     1489                  simulations}, 
     1490  journal =      OS, 
     1491  year =         2005, 
     1492  volume =       1, 
     1493  pages =        {45--79} 
     1494} 
    13011495 
    13021496@ARTICLE{Griffies_al_JPO98, 
    1303   author = {S.M. Griffies and A. Gnanadesikan and R.C. Pacanowski and V.D. Larichev 
    1304    and J.K. Dukowicz and R.D. Smith}, 
    1305   title = {Isoneutral Diffusion in a z-Coordinate Ocean Model}, 
    1306   journal = JPO, 
    1307   year = {1998}, 
    1308   volume = {28},  number = {5}, 
    1309   pages = {805--830}, 
     1497  author =       {S.M. Griffies and A. Gnanadesikan and 
     1498                  R.C. Pacanowski and V.D. Larichev and J.K. Dukowicz 
     1499                  and R.D. Smith}, 
     1500  title =        {Isoneutral Diffusion in a z-Coordinate Ocean Model}, 
     1501  journal =      JPO, 
     1502  year =         1998, 
     1503  volume =       28, 
     1504  number =       5, 
     1505  pages =        {805--830}, 
    13101506} 
    13111507 
    13121508@ARTICLE{Griffies_al_MWR01, 
    1313   author = {S.M. Griffies and R.C. Pacanowski and M. Schmidt and V. Balaji}, 
    1314   title = {Tracer Conservation with an Explicit Free Surface Method for z-Coordinate 
    1315    Ocean Models}, 
    1316   journal = MWR, 
    1317   year = {2001}, 
    1318   volume = {129},  number = {5}, 
    1319   pages = {1081--1098}, 
     1509  author =       {S.M. Griffies and R.C. Pacanowski and M. Schmidt and 
     1510                  V. Balaji}, 
     1511  title =        {Tracer Conservation with an Explicit Free Surface 
     1512                  Method for z-Coordinate Ocean Models}, 
     1513  journal =      MWR, 
     1514  year =         2001, 
     1515  volume =       129, 
     1516  number =       5, 
     1517  pages =        {1081--1098}, 
    13201518} 
    13211519 
    13221520@ARTICLE{Griffies_Hallberg_MWR00, 
    1323   author = {S.M. Griffies and R.W. Hallberg}, 
    1324   title = {Biharmonic friction with a Smagorinsky-like viscosity for use in large-scale eddy-permitting ocean models}, 
    1325   journal = MWR, 
    1326   year = {2000}, 
    1327   volume = {128},   
    1328   pages = {2935–-2946}, 
    1329   doi = {10.1175/1520-0493(2000)128} 
     1521  author =       {S.M. Griffies and R.W. Hallberg}, 
     1522  title =        {Biharmonic friction with a Smagorinsky-like 
     1523                  viscosity for use in large-scale eddy-permitting 
     1524                  ocean models}, 
     1525  journal =      MWR, 
     1526  year =         2000, 
     1527  volume =       128, 
     1528  pages =        {2935–-2946}, 
     1529  doi =          {10.1175/1520-0493(2000)128} 
    13301530} 
    13311531 
    13321532@ARTICLE{Guilyardi_al_JC04, 
    1333   author = {E. Guilyardi and S. Gualdi and J. M. Slingo and A. Navarra and P. Delecluse  
    1334     and J. Cole and G. Madec and M. Roberts and M. Latif and L. Terray}, 
    1335   title = {Representing El Ni\~{n}o in coupled ocean-atmosphere GCMs: the dominant role of the atmospheric component}, 
    1336   journal = JC, 
    1337   year = {2004}, 
    1338   volume = {17}, 
    1339   pages = {4623--4629} 
     1533  author =       {E. Guilyardi and S. Gualdi and J. M. Slingo and 
     1534                  A. Navarra and P. Delecluse and J. Cole and G. Madec 
     1535                  and M. Roberts and M. Latif and L. Terray}, 
     1536  title =        {Representing El Ni\~{n}o in coupled ocean-atmosphere 
     1537                  GCMs: the dominant role of the atmospheric 
     1538                  component}, 
     1539  journal =      JC, 
     1540  year =         2004, 
     1541  volume =       17, 
     1542  pages =        {4623--4629} 
    13401543} 
    13411544 
    13421545@ARTICLE{Guilyardi_Madec_CD98, 
    1343   author = {E. Guilyardi and G. Madec}, 
    1344   title = {Performance of the OPA-ARPEGE-T21 global ocean-atmosphere coupled model}, 
    1345   journal = CD, 
    1346   year = {1997}, 
    1347   volume = {13}, 
    1348   pages = {149--165} 
     1546  author =       {E. Guilyardi and G. Madec}, 
     1547  title =        {Performance of the OPA-ARPEGE-T21 global 
     1548                  ocean-atmosphere coupled model}, 
     1549  journal =      CD, 
     1550  year =         1997, 
     1551  volume =       13, 
     1552  pages =        {149--165} 
    13491553} 
    13501554 
    13511555@ARTICLE{Guilyardi_al_CD01, 
    1352   author = {E. Guilyardi and G. Madec and L. Terray}, 
    1353   title = {The role of lateral ocean physics in the upper ocean thermal balance of a coupled ocean-atmosphere GCM}, 
    1354   journal = CD, 
    1355   year = {2001}, 
    1356   volume = {17}, 
    1357   pages = {589--599}, 
    1358   number = {8} 
     1556  author =       {E. Guilyardi and G. Madec and L. Terray}, 
     1557  title =        {The role of lateral ocean physics in the upper ocean 
     1558                  thermal balance of a coupled ocean-atmosphere GCM}, 
     1559  journal =      CD, 
     1560  year =         2001, 
     1561  volume =       17, 
     1562  pages =        {589--599}, 
     1563  number =       8 
    13591564} 
    13601565 
    13611566@ARTICLE{Guilyardi_al_CRAS95, 
    1362   author = {E. Guilyardi and G. Madec and L. Terray and M. D\'{e}qu\'{e} and 
    1363    M. Pontaud and M. Imbard and D. Stephenson and M.-A. Filiberti and 
    1364    D. Cariolle and P. Delecluse and O. Thual}, 
    1365   title = {Simulation couplée océan-atmosphère de la variabilité du climat}, 
    1366   journal = {C. R. Acad. Sci Paris}, 
    1367   year = {1995}, 
    1368   volume = {320},  number = {s\'{e}rie IIa}, 
    1369   pages = {683--690} 
     1567  author =       {E. Guilyardi and G. Madec and L. Terray and 
     1568                  M. D\'{e}qu\'{e} and M. Pontaud and M. Imbard and 
     1569                  D. Stephenson and M.-A. Filiberti and D. Cariolle 
     1570                  and P. Delecluse and O. Thual}, 
     1571  title =        {Simulation couplée océan-atmosphère de la 
     1572                  variabilité du climat}, 
     1573  journal =      {C. R. Acad. Sci Paris}, 
     1574  year =         1995, 
     1575  volume =       320, 
     1576  number =       {s\'{e}rie IIa}, 
     1577  pages =        {683--690} 
    13701578} 
    13711579 
    13721580@ARTICLE{Guyon_al_EP99, 
    1373   author = {M. Guyon and G. Madec and F.-X. Roux and M. Imbard}, 
    1374   title = {A Parallel ocean model for high resolution studies}, 
    1375   journal = {Lecture Notes in Computer Science}, 
    1376   year = {1999}, 
    1377   volume = {Euro-Par'99}, 
    1378   pages = {603--607} 
     1581  author =       {M. Guyon and G. Madec and F.-X. Roux and M. Imbard}, 
     1582  title =        {A Parallel ocean model for high resolution studies}, 
     1583  journal =      {Lecture Notes in Computer Science}, 
     1584  year =         1999, 
     1585  volume =       {Euro-Par'99}, 
     1586  pages =        {603--607} 
    13791587} 
    13801588 
    13811589@ARTICLE{Guyon_al_CalPar99, 
    1382   author = {M. Guyon and G. Madec and F.-X. Roux and M. Imbard and C. Herbaut 
    1383    and P. Fronier}, 
    1384   title = {Parallelization of the OPA ocean model}, 
    1385   journal = {Calculateurs Paralleles}, 
    1386   year = {1999}, 
    1387   volume = {11},  number = {4}, 
    1388   pages = {499--517} 
     1590  author =       {M. Guyon and G. Madec and F.-X. Roux and M. Imbard 
     1591                  and C. Herbaut and P. Fronier}, 
     1592  title =        {Parallelization of the OPA ocean model}, 
     1593  journal =      {Calculateurs Paralleles}, 
     1594  year =         1999, 
     1595  volume =       11, 
     1596  number =       4, 
     1597  pages =        {499--517} 
    13891598} 
    13901599 
    13911600@BOOK{Haltiner1980, 
    1392   title = {Numerical prediction and dynamic meteorology}, 
    1393   publisher = {John Wiley {\&} Sons Eds., second edition}, 
    1394   year = {1980}, 
    1395   author = {G. J. Haltiner and R. T. Williams}, 
    1396   pages = {477pp} 
     1601  title =        {Numerical prediction and dynamic meteorology}, 
     1602  publisher =    {John Wiley {\&} Sons Eds., second edition}, 
     1603  year =         1980, 
     1604  author =       {G. J. Haltiner and R. T. Williams}, 
     1605  pages =        {477pp} 
    13971606} 
    13981607 
    13991608@ARTICLE{Haney1991, 
    1400   author = {R. L. Haney}, 
    1401   title = {On the Pressure Gradient Force over Steep Topography in Sigma Coordinate Ocean Models}, 
    1402   journal = JPO, 
    1403   year = {1991}, 
    1404   volume = {21},  number = {4}, 
    1405   pages = {610--619}, 
     1609  author =       {R. L. Haney}, 
     1610  title =        {On the Pressure Gradient Force over Steep Topography 
     1611                  in Sigma Coordinate Ocean Models}, 
     1612  journal =      JPO, 
     1613  year =         1991, 
     1614  volume =       21, 
     1615  number =       4, 
     1616  pages =        {610--619}, 
    14061617} 
    14071618 
    14081619@ARTICLE{Hazeleger_Drijfhout_JPO98, 
    1409   author = {W. Hazeleger and S. S. Drijfhout}, 
    1410   title = {Mode water variability in a model of the subtropical gyre: response to anomalous forcing}, 
    1411   journal = JPO, 
    1412   year = {1998}, 
    1413   volume = {28}, 
    1414   pages = {266--288}, 
     1620  author =       {W. Hazeleger and S. S. Drijfhout}, 
     1621  title =        {Mode water variability in a model of the subtropical 
     1622                  gyre: response to anomalous forcing}, 
     1623  journal =      JPO, 
     1624  year =         1998, 
     1625  volume =       28, 
     1626  pages =        {266--288}, 
    14151627} 
    14161628 
    14171629@ARTICLE{Hazeleger_Drijfhout_JPO99, 
    1418   author = {W. Hazeleger and S. S. Drijfhout}, 
    1419   title = {Stochastically forced mode water variability}, 
    1420   journal = JPO, 
    1421   year = {1999}, 
    1422   volume = {29}, 
    1423   pages = {1772--1786}, 
     1630  author =       {W. Hazeleger and S. S. Drijfhout}, 
     1631  title =        {Stochastically forced mode water variability}, 
     1632  journal =      JPO, 
     1633  year =         1999, 
     1634  volume =       29, 
     1635  pages =        {1772--1786}, 
    14241636} 
    14251637 
    14261638@ARTICLE{Hazeleger_Drijfhout_JGR00, 
    1427   author = {W. Hazeleger and S. S. Drijfhout}, 
    1428   title = {A model study on internally generated variability in subtropical mode water formation}, 
    1429   journal = JGR, 
    1430   year = {2000}, 
    1431   volume = {105}, 
    1432   pages = {13,965--13,979}, 
    1433 } 
     1639  author =       {W. Hazeleger and S. S. Drijfhout}, 
     1640  title =        {A model study on internally generated variability in 
     1641                  subtropical mode water formation}, 
     1642  journal =      JGR, 
     1643  year =         2000, 
     1644  volume =       105, 
     1645  pages =        {13,965--13,979}, 
     1646} 
     1647 
    14341648@ARTICLE{Hazeleger_Drijfhout_JPO00, 
    1435   author = {W. Hazeleger and S. S. Drijfhout}, 
    1436   title = {Eddy subduction in a model of the subtropical gyre}, 
    1437   journal = JPO, 
    1438   year = {2000}, 
    1439   volume = {30}, 
    1440   pages = {677--695}, 
     1649  author =       {W. Hazeleger and S. S. Drijfhout}, 
     1650  title =        {Eddy subduction in a model of the subtropical gyre}, 
     1651  journal =      JPO, 
     1652  year =         2000, 
     1653  volume =       30, 
     1654  pages =        {677--695}, 
    14411655} 
    14421656 
    14431657@ARTICLE{Hellerman_Rosenstein_JPO83, 
    1444   author = {S. Hellerman and  M. Rosenstein }, 
    1445   title = {Normal monthly wind stress over the world ocean with error estimates}, 
    1446   journal = JPO, 
    1447   year = {1983}, 
    1448   volume = {13}, 
    1449   pages = {1093--1104}, 
     1658  author =       {S. Hellerman and M. Rosenstein }, 
     1659  title =        {Normal monthly wind stress over the world ocean with 
     1660                  error estimates}, 
     1661  journal =      JPO, 
     1662  year =         1983, 
     1663  volume =       13, 
     1664  pages =        {1093--1104}, 
    14501665} 
    14511666 
    14521667@ARTICLE{He_Ding_JSC01, 
    1453   author = {Y. He and C. H. Q. Ding}, 
    1454   title = {Using Accurate Arithmetics to Improve Numerical Reproducibility and Stability in Parallel Applications}, 
    1455   journal = JSC, 
    1456   year = {2001}, 
    1457   volume = {18}, 
    1458   pages = {259--277}, 
     1668  author =       {Y. He and C. H. Q. Ding}, 
     1669  title =        {Using Accurate Arithmetics to Improve Numerical 
     1670                  Reproducibility and Stability in Parallel 
     1671                  Applications}, 
     1672  journal =      JSC, 
     1673  year =         2001, 
     1674  volume =       18, 
     1675  pages =        {259--277}, 
    14591676} 
    14601677 
    14611678@ARTICLE{Hirt_al_JCP74, 
    1462   author = {C. W. Hirt and A. A. Amsden and J. L. Cook}, 
    1463   title = {An Arbitrary Lagrangian--Eulerian Computing Method for All Flow Speeds}, 
    1464   journal = JCP, 
    1465   year = {1974}, 
    1466   volume = {14}, 
    1467   pages = {227--253} 
     1679  author =       {C. W. Hirt and A. A. Amsden and J. L. Cook}, 
     1680  title =        {An Arbitrary Lagrangian--Eulerian Computing Method 
     1681                  for All Flow Speeds}, 
     1682  journal =      JCP, 
     1683  year =         1974, 
     1684  volume =       14, 
     1685  pages =        {227--253} 
    14681686} 
    14691687 
    14701688@ARTICLE{Hofmeister_al_OM09, 
    1471   author = {R. Hofmeister and H. Burchard and J.-M. Beckers}, 
    1472   title = {Non-uniform adaptive vertical grids for 3D numerical ocean models}, 
    1473   journal = OM, 
    1474   year = {2009}, 
    1475   volume = {33}, 
    1476   pages = {70--86}, 
    1477   doi = {10.1016/j.ocemod.2009.12.003}, 
    1478   issn = {1463-5003}, 
    1479 } 
    1480  
    1481 @ARTICLE{Holland1999,  
    1482   author = {D. Holland and A. Jenkins}, 
    1483   title = {Modeling Thermodynamic Ice-Ocean Interactions at the Base of an Ice Shelf}, 
    1484   journal = JPO, 
    1485   year = {1999}, 
    1486   volume = {29},   
    1487   pages = {1787--1800}, 
     1689  author =       {R. Hofmeister and H. Burchard and J.-M. Beckers}, 
     1690  title =        {Non-uniform adaptive vertical grids for 3D numerical 
     1691                  ocean models}, 
     1692  journal =      OM, 
     1693  year =         2009, 
     1694  volume =       33, 
     1695  pages =        {70--86}, 
     1696  doi =          {10.1016/j.ocemod.2009.12.003}, 
     1697  issn =         {1463-5003}, 
     1698} 
     1699 
     1700@ARTICLE{Holland1999, 
     1701  author =       {D. Holland and A. Jenkins}, 
     1702  title =        {Modeling Thermodynamic Ice-Ocean Interactions at the 
     1703                  Base of an Ice Shelf}, 
     1704  journal =      JPO, 
     1705  year =         1999, 
     1706  volume =       29, 
     1707  pages =        {1787--1800}, 
    14881708} 
    14891709 
    14901710@ARTICLE{HollowayOM86, 
    1491   author = {Greg Holloway}, 
    1492   title = {A Shelf Wave/Topographic Pump Drives Mean Coastal Circulation (part I)}, 
    1493   journal = OM, 
    1494   year = {1986}, 
    1495   volume = {68},   
     1711  author =       {Greg Holloway}, 
     1712  title =        {A Shelf Wave/Topographic Pump Drives Mean Coastal 
     1713                  Circulation (part I)}, 
     1714  journal =      OM, 
     1715  year =         1986, 
     1716  volume =       68, 
    14961717} 
    14971718 
    14981719@ARTICLE{HollowayJPO92, 
    1499   author = {Greg Holloway}, 
    1500   title = {Representing Topographic Stress for Large-Scale Ocean Models}, 
    1501   journal = JPO, 
    1502   year = {1992}, 
    1503   volume = {22},   
    1504   pages = {1033--1046}, 
     1720  author =       {Greg Holloway}, 
     1721  title =        {Representing Topographic Stress for Large-Scale 
     1722                  Ocean Models}, 
     1723  journal =      JPO, 
     1724  year =         1992, 
     1725  volume =       22, 
     1726  pages =        {1033--1046}, 
    15051727} 
    15061728 
    15071729@ARTICLE{HollowayJPO94, 
    1508   author = {Michael Eby and Greg Holloway}, 
    1509   title = {Sensitivity of a Large-Scale Ocean Model to a Parameterization of Topographic Stress}, 
    1510   journal = JPO, 
    1511   year = {1994}, 
    1512   volume = {24},   
    1513   pages = {2577--2587}, 
     1730  author =       {Michael Eby and Greg Holloway}, 
     1731  title =        {Sensitivity of a Large-Scale Ocean Model to a 
     1732                  Parameterization of Topographic Stress}, 
     1733  journal =      JPO, 
     1734  year =         1994, 
     1735  volume =       24, 
     1736  pages =        {2577--2587}, 
    15141737} 
    15151738 
    15161739@ARTICLE{HollowayJGR09, 
    1517   author = {Greg Holloway and Zeliang Wang}, 
    1518   title = {Representing eddy stress in an Arctic Ocean model}, 
    1519   journal = JGR, 
    1520   year = {2009}, 
    1521   doi = {10.1029/2008JC005169},   
     1740  author =       {Greg Holloway and Zeliang Wang}, 
     1741  title =        {Representing eddy stress in an Arctic Ocean model}, 
     1742  journal =      JGR, 
     1743  year =         2009, 
     1744  doi =          {10.1029/2008JC005169}, 
    15221745} 
    15231746 
    15241747@ARTICLE{HollowayOM08, 
    1525   author = {Mathew Maltrud and Greg Holloway}, 
    1526   title = {Implementing biharmonic neptune in a global eddying ocean model}, 
    1527   journal = OM, 
    1528   year = {2008}, 
    1529   volume = {21},   
    1530   pages = {22--34}, 
     1748  author =       {Mathew Maltrud and Greg Holloway}, 
     1749  title =        {Implementing biharmonic neptune in a global eddying 
     1750                  ocean model}, 
     1751  journal =      OM, 
     1752  year =         2008, 
     1753  volume =       21, 
     1754  pages =        {22--34}, 
    15311755} 
    15321756 
    15331757@ARTICLE{Hordoir_al_CD08, 
    1534   author = {R. Hordoir and J. Polcher and J.-C. Brun-Cottan and G. Madec}, 
    1535   title = {Towards a parametrization of river discharges into ocean general 
    1536    circulation models: a closure through energy conservation}, 
    1537   journal = CD, 
    1538   year = {2008}, 
    1539   volume = {31},  number = {7-8}, 
    1540   pages = {891--908}, 
    1541   doi = {10.1007/s00382-008-0416-4}, 
     1758  author =       {R. Hordoir and J. Polcher and J.-C. Brun-Cottan and 
     1759                  G. Madec}, 
     1760  title =        {Towards a parametrization of river discharges into 
     1761                  ocean general circulation models: a closure through 
     1762                  energy conservation}, 
     1763  journal =      CD, 
     1764  year =         2008, 
     1765  volume =       31, 
     1766  number =       {7-8}, 
     1767  pages =        {891--908}, 
     1768  doi =          {10.1007/s00382-008-0416-4}, 
    15421769} 
    15431770 
    15441771@ARTICLE{Hsu1990, 
    1545   author = {Hsu, Yueh-Jiuan G. and Arakawa, Akio}, 
    1546   title = {Numerical Modeling of the Atmosphere with an Isentropic Vertical Coordinate}, 
    1547   journal = MWR, 
    1548   year = {1990}, 
    1549   volume = {118},  number = {10}, 
    1550   pages = {1933--1959}, 
     1772  author =       {Hsu, Yueh-Jiuan G. and Arakawa, Akio}, 
     1773  title =        {Numerical Modeling of the Atmosphere with an 
     1774                  Isentropic Vertical Coordinate}, 
     1775  journal =      MWR, 
     1776  year =         1990, 
     1777  volume =       118, 
     1778  number =       10, 
     1779  pages =        {1933--1959}, 
    15511780} 
    15521781 
    15531782@ARTICLE{Huang_JPO93, 
    1554   author = {R.X. Huang}, 
    1555   title = {Real freshwater flux as a natural boundary condition for the salinity 
    1556    balance and thermohaline circulation forced by evaporation and precipitation}, 
    1557   journal = JPO, 
    1558   year = {1993}, 
    1559   volume = {23}, 
    1560   pages = {2428--2446} 
     1783  author =       {R.X. Huang}, 
     1784  title =        {Real freshwater flux as a natural boundary condition 
     1785                  for the salinity balance and thermohaline 
     1786                  circulation forced by evaporation and precipitation}, 
     1787  journal =      JPO, 
     1788  year =         1993, 
     1789  volume =       23, 
     1790  pages =        {2428--2446} 
    15611791} 
    15621792 
    15631793@TECHREPORT{Hunke2008, 
    1564   author = {E.C. Hunke and W.H. Lipscomb}, 
    1565   title = {CICE: the Los Alamos sea ice model documentation and software user's manual,  
    1566         Version 4.0}, 
    1567   institution = { Los Alamos National Laboratory, N.M.}, 
    1568   publisher = {LA-CC-06-012, Los Alamos National Laboratory, N.M.}, 
    1569   year = {2008} 
     1794  author =       {E.C. Hunke and W.H. Lipscomb}, 
     1795  title =        {CICE: the Los Alamos sea ice model documentation and 
     1796                  software user's manual, Version 4.0}, 
     1797  institution =  { Los Alamos National Laboratory, N.M.}, 
     1798  publisher =    {LA-CC-06-012, Los Alamos National Laboratory, N.M.}, 
     1799  year =         2008 
    15701800} 
    15711801 
    15721802@TechReport{Hunter2006, 
    1573   Title                    = {Specification for Test Models of Ice Shelf Cavities}, 
    1574   Author                   = {J. R. Hunter}, 
    1575   Institution              = {Antarctic Climate \& Ecosystems Cooperative Research Centre Private Bag 80, Hobart, Tasmania 7001}, 
    1576   Year                     = {2006}, 
     1803  Title =        {Specification for Test Models of Ice Shelf Cavities}, 
     1804  Author =       {J. R. Hunter}, 
     1805  Institution =  {Antarctic Climate \& Ecosystems Cooperative Research 
     1806                  Centre Private Bag 80, Hobart, Tasmania 7001}, 
     1807  Year =         2006, 
    15771808} 
    15781809 
    15791810@TECHREPORT{TEOS10, 
    1580   author = {IOC and SCOR and IAPSO}, 
    1581   title = {The international thermodynamic equation of seawater - 2010: Calculation and use of thermodynamic properties}, 
    1582   institution = {Intergovernmental Oceanographic Commission}, 
    1583   publisher = {Manuals and Guides No. 56, UNESCO (English)}, 
    1584   year = {2010}, 
    1585   pages = {196pp}, 
    1586   url = {http://www.teos-10.org/pubs/TEOS-10_Manual.pdf} 
     1811  author =       {IOC and SCOR and IAPSO}, 
     1812  title =        {The international thermodynamic equation of seawater 
     1813                  - 2010: Calculation and use of thermodynamic 
     1814                  properties}, 
     1815  institution =  {Intergovernmental Oceanographic Commission}, 
     1816  publisher =    {Manuals and Guides No. 56, UNESCO (English)}, 
     1817  year =         2010, 
     1818  pages =        {196pp}, 
     1819  url =          {http://www.teos-10.org/pubs/TEOS-10_Manual.pdf} 
    15871820} 
    15881821 
    15891822@ARTICLE{Iudicone_al_JPO08b, 
    1590   author = {D. Iudicone and G. Madec and B. Blanke and S. Speich}, 
    1591   title = {The role of Southern Ocean surface forcings and mixing in the global conveyor}, 
    1592   journal = JPO, 
    1593   year = {2008}, 
    1594   volume = {38}, 
    1595   pages = {1377--1400} 
     1823  author =       {D. Iudicone and G. Madec and B. Blanke and 
     1824                  S. Speich}, 
     1825  title =        {The role of Southern Ocean surface forcings and 
     1826                  mixing in the global conveyor}, 
     1827  journal =      JPO, 
     1828  year =         2008, 
     1829  volume =       38, 
     1830  pages =        {1377--1400} 
    15961831} 
    15971832 
    15981833@ARTICLE{Iudicone_al_JPO08a, 
    1599   author = {D. Iudicone and G. Madec and T. J. McDougall}, 
    1600   title = {Diagnosing water transformations and the key role of light penetration}, 
    1601   journal = JPO, 
    1602   year = {2008}, 
    1603   volume = {38}, 
    1604   pages = {1357--1376} 
     1834  author =       {D. Iudicone and G. Madec and T. J. McDougall}, 
     1835  title =        {Diagnosing water transformations and the key role of 
     1836                  light penetration}, 
     1837  journal =      JPO, 
     1838  year =         2008, 
     1839  volume =       38, 
     1840  pages =        {1357--1376} 
    16051841} 
    16061842 
    16071843@ARTICLE{Iudicone_al_JPO07, 
    1608   author = {D. Iudicone and K. Rodgers and R. Schopp and G. Madec}, 
    1609   title = {An Exchange window for the Antarctic Intermediate Water Injection into the South Pacific}, 
    1610   journal = JPO, 
    1611   year = {2007}, 
    1612   volume = {37}, 
    1613   pages = {31--49} 
     1844  author =       {D. Iudicone and K. Rodgers and R. Schopp and 
     1845                  G. Madec}, 
     1846  title =        {An Exchange window for the Antarctic Intermediate 
     1847                  Water Injection into the South Pacific}, 
     1848  journal =      JPO, 
     1849  year =         2007, 
     1850  volume =       37, 
     1851  pages =        {31--49} 
    16141852} 
    16151853 
    16161854@ARTICLE{Iudicone_al_JPO08c, 
    1617   author = {D. Iudicone and S. Speich and G. Madec and B. Blanke}, 
    1618   title = {The global Conveyor Belt in a Southern Ocean perspective}, 
    1619   journal = JPO, 
    1620   year = {2008}, 
    1621   volume = {38}, 
    1622   pages = {1401--1425} 
     1855  author =       {D. Iudicone and S. Speich and G. Madec and 
     1856                  B. Blanke}, 
     1857  title =        {The global Conveyor Belt in a Southern Ocean 
     1858                  perspective}, 
     1859  journal =      JPO, 
     1860  year =         2008, 
     1861  volume =       38, 
     1862  pages =        {1401--1425} 
    16231863} 
    16241864 
    16251865@ARTICLE{Izumo_al_CD10, 
    1626   author = {T. Izumo and S.Masson and J. Vialard and C. de Boyer Montegut and 
    1627    S. K. Behera and G. Madec and K. Takahashi and T. Yamagata}, 
    1628   title = {Interannual variations of low-frequency Madden-Julian Oscillation in autral summer: Observations}, 
    1629   journal = CD, 
    1630   year = {2010}, 
    1631   volume = {35},  number = {4}, 
    1632   pages = {669--683}, 
    1633   doi = {10.1007/s00382-009-0655-z} 
     1866  author =       {T. Izumo and S.Masson and J. Vialard and C. de Boyer 
     1867                  Montegut and S. K. Behera and G. Madec and 
     1868                  K. Takahashi and T. Yamagata}, 
     1869  title =        {Interannual variations of low-frequency 
     1870                  Madden-Julian Oscillation in autral summer: 
     1871                  Observations}, 
     1872  journal =      CD, 
     1873  year =         2010, 
     1874  volume =       35, 
     1875  number =       4, 
     1876  pages =        {669--683}, 
     1877  doi =          {10.1007/s00382-009-0655-z} 
    16341878} 
    16351879 
    16361880@ARTICLE{JackMcD1995, 
    1637   author = {D. R. Jackett and T. J. McDougall}, 
    1638   title = {Minimal adjustment of hydrographic data to achieve static stability}, 
    1639   journal = JAOT, 
    1640   year = {1995}, 
    1641   volume = {12}, 
    1642   pages = {381--389} 
     1881  author =       {D. R. Jackett and T. J. McDougall}, 
     1882  title =        {Minimal adjustment of hydrographic data to achieve 
     1883                  static stability}, 
     1884  journal =      JAOT, 
     1885  year =         1995, 
     1886  volume =       12, 
     1887  pages =        {381--389} 
    16431888} 
    16441889 
    16451890@article{Jackson_Rehmann_JPO2014, 
    1646    author = {P. R. Jackson and C. R. Rehmann}, 
    1647    title = {Experiments on differential scalar mixing in turbulence in a sheared, stratified flow}, 
    1648    journal = JPO, 
    1649    volume = {44}, 
    1650    issn = {0022-3670}, 
    1651    doi = {10.1175/JPO-D-14-0027.1}, 
    1652    number = {10}, 
    1653    year = {2014}, 
    1654    pages = {2661--2680}, 
     1891  author =       {P. R. Jackson and C. R. Rehmann}, 
     1892  title =        {Experiments on differential scalar mixing in 
     1893                  turbulence in a sheared, stratified flow}, 
     1894  journal =      JPO, 
     1895  volume =       44, 
     1896  issn =         {0022-3670}, 
     1897  doi =          {10.1175/JPO-D-14-0027.1}, 
     1898  number =       10, 
     1899  year =         2014, 
     1900  pages =        {2661--2680}, 
    16551901} 
    16561902 
    16571903@TECHREPORT{Janssen_al_TM13, 
    1658  author = {P.A.E.M. Janssen and {\O}. Breivik and K. Mogensen  
    1659            and F. Vitart and  M. Balmaseda and J.B. Bidlot and  
    1660            S. Keeley and M. Leut-becher and L. Magnusson and F. Molteni}, 
    1661  title = {Air-Sea Interaction and Surface Waves}, 
    1662  year = {2013}, 
    1663  volume = {712}, 
    1664  institution = {ECMWF}, 
     1904  author =       {P.A.E.M. Janssen and {\O}. Breivik and K. Mogensen 
     1905                  and F. Vitart and M. Balmaseda and J.B. Bidlot and 
     1906                  S. Keeley and M. Leut-becher and L. Magnusson and 
     1907                  F. Molteni}, 
     1908  title =        {Air-Sea Interaction and Surface Waves}, 
     1909  year =         2013, 
     1910  volume =       712, 
     1911  institution =  {ECMWF}, 
    16651912} 
    16661913 
    16671914@ARTICLE{Jayne_St_Laurent_GRL01, 
    1668   author = {S.R. Jayne and L.C. {St. Laurent}}, 
    1669   title = {Parameterizing tidal disspiation over rough topography}, 
    1670   journal = GRL, 
    1671   pages = {811--814} 
     1915  author =       {S.R. Jayne and L.C. {St. Laurent}}, 
     1916  title =        {Parameterizing tidal disspiation over rough 
     1917                  topography}, 
     1918  journal =      GRL, 
     1919  pages =        {811--814} 
    16721920} 
    16731921 
    16741922@ARTICLE{Jenkins1991, 
    1675   author = {A. Jenkins}, 
    1676   title = {A one-dimensional model of ice shelf-ocean interaction}, 
    1677   journal = JGR, 
    1678   year = {1991}, 
    1679   volume = {96},  number = {C11}, 
    1680   pages = {2298--2312} 
     1923  author =       {A. Jenkins}, 
     1924  title =        {A one-dimensional model of ice shelf-ocean 
     1925                  interaction}, 
     1926  journal =      JGR, 
     1927  year =         1991, 
     1928  volume =       96, 
     1929  number =       {C11}, 
     1930  pages =        {2298--2312} 
    16811931} 
    16821932 
    16831933@ARTICLE{Jenkins2001, 
    1684   author = {A. Jenkins}, 
    1685   title = {The Role of Meltwater Advection in the Formulation of Conservative Boundary Conditions at an Ice-Ocean Interface}, 
    1686   journal = JPO, 
    1687   year = {2001}, 
    1688   volume = {31}, 
    1689   pages = {285--296} 
     1934  author =       {A. Jenkins}, 
     1935  title =        {The Role of Meltwater Advection in the Formulation 
     1936                  of Conservative Boundary Conditions at an Ice-Ocean 
     1937                  Interface}, 
     1938  journal =      JPO, 
     1939  year =         2001, 
     1940  volume =       31, 
     1941  pages =        {285--296} 
    16901942} 
    16911943 
    16921944@ARTICLE{Jenkins2010, 
    1693   author = {A. Jenkins}, 
    1694   title = {observation and parameterization of ablation at the base of Ronne Ice Shelf, Antarctica}, 
    1695   journal = JPO, 
    1696   year = {2010}, 
    1697   volume = {40},  number = {10}, 
    1698   pages = {2298--2312} 
     1945  author =       {A. Jenkins}, 
     1946  title =        {observation and parameterization of ablation at the 
     1947                  base of Ronne Ice Shelf, Antarctica}, 
     1948  journal =      JPO, 
     1949  year =         2010, 
     1950  volume =       40, 
     1951  number =       10, 
     1952  pages =        {2298--2312} 
    16991953} 
    17001954 
    17011955@BOOK{Jerlov_Bk68, 
    1702   title = {Optical Oceanography}, 
    1703   publisher = {Elsevier}, 
    1704   year = {1968}, 
    1705   author = {N. G. Jerlov}, 
    1706   pages = {194pp} 
     1956  title =        {Optical Oceanography}, 
     1957  publisher =    {Elsevier}, 
     1958  year =         1968, 
     1959  author =       {N. G. Jerlov}, 
     1960  pages =        {194pp} 
    17071961} 
    17081962 
    17091963@ARTICLE{Jones_MWR99, 
    1710   author = {P. W. Jones}, 
    1711   title = {First- and second-order conservative remapping schemes for grids in spherical coordinates}, 
    1712   journal = MWR, 
    1713   year = {1999}, 
    1714   volume = {127}, 
    1715   pages = {2204--2210} 
     1964  author =       {P. W. Jones}, 
     1965  title =        {First- and second-order conservative remapping 
     1966                  schemes for grids in spherical coordinates}, 
     1967  journal =      MWR, 
     1968  year =         1999, 
     1969  volume =       127, 
     1970  pages =        {2204--2210} 
    17161971} 
    17171972 
    17181973@BOOK{Jones_Bk01, 
    1719   title = {A User's Guide for SCRIP: A Spherical Coordinate Remapping and Interpolation Package. Version 1.4}, 
    1720   publisher = {Los Alamos National Laboratory}, 
    1721   year = {2001}, 
    1722   author = {P. W. Jones}, 
    1723   pages = {27pp}, 
    1724   url = {http://climate.lanl.gov/Software/SCRIP/SCRIPusers.pdf} 
     1974  title =        {A User's Guide for SCRIP: A Spherical Coordinate 
     1975                  Remapping and Interpolation Package. Version 1.4}, 
     1976  publisher =    {Los Alamos National Laboratory}, 
     1977  year =         2001, 
     1978  author =       {P. W. Jones}, 
     1979  pages =        {27pp}, 
     1980  url = 
     1981                  {http://climate.lanl.gov/Software/SCRIP/SCRIPusers.pdf} 
    17251982} 
    17261983 
    17271984@TECHREPORT{Jones_1998, 
    1728   title = {A User's Guide for SCRIP: A Spherical Coordinate Remapping and Interpolation Package. Version 1.4}, 
    1729   institution = {Los Alamos National Laboratory}, 
    1730   year = {1998}, 
    1731   author = {P. W. Jones}, 
    1732   url = {http://climate.lanl.gov/Software/SCRIP/SCRIPusers.pdf} 
    1733 }  
     1985  title =        {A User's Guide for SCRIP: A Spherical Coordinate 
     1986                  Remapping and Interpolation Package. Version 1.4}, 
     1987  institution =  {Los Alamos National Laboratory}, 
     1988  year =         1998, 
     1989  author =       {P. W. Jones}, 
     1990  url = 
     1991                  {http://climate.lanl.gov/Software/SCRIP/SCRIPusers.pdf} 
     1992} 
    17341993 
    17351994@ARTICLE{Kantha_Clayson_1994, 
    1736   author = {L. H. Kantha and C. A. Clayson}, 
    1737   title = {An improved mixed layer model for geophysical applications}, 
    1738   journal = JGR, 
    1739   year = {1994}, 
    1740   volume = {99}, 
    1741   pages = {25,235--25,266} 
     1995  author =       {L. H. Kantha and C. A. Clayson}, 
     1996  title =        {An improved mixed layer model for geophysical 
     1997                  applications}, 
     1998  journal =      JGR, 
     1999  year =         1994, 
     2000  volume =       99, 
     2001  pages =        {25,235--25,266} 
    17422002} 
    17432003 
    17442004@ARTICLE{Kantha_Carniel_CSR05, 
    1745   author = {L. Kantha and S. Carniel}, 
    1746   title = {Comment on ''Generic length-scale equation for geophysical turbulence models'' by L. Umlauf and H. Burchard}, 
    1747   journal = JMS,  
    1748   year = {2005}, 
    1749   volume = {61}, 
    1750   pages = {693--702} 
     2005  author =       {L. Kantha and S. Carniel}, 
     2006  title =        {Comment on ''Generic length-scale equation for 
     2007                  geophysical turbulence models'' by L. Umlauf and 
     2008                  H. Burchard}, 
     2009  journal =      JMS, 
     2010  year =         2005, 
     2011  volume =       61, 
     2012  pages =        {693--702} 
    17512013} 
    17522014 
    17532015@ARTICLE{Kasahara_MWR74, 
    1754   author = {A. Kasahara}, 
    1755   title = {Various vertical coordinate systems used for numerical weather prediction}, 
    1756   journal = MWR, 
    1757   year = {1974}, 
    1758   volume = {102}, 
    1759   pages = {509--522} 
     2016  author =       {A. Kasahara}, 
     2017  title =        {Various vertical coordinate systems used for 
     2018                  numerical weather prediction}, 
     2019  journal =      MWR, 
     2020  year =         1974, 
     2021  volume =       102, 
     2022  pages =        {509--522} 
    17602023} 
    17612024 
    17622025@ARTICLE{Killworth_al_JPO91, 
    1763   author = {P.D. Killworth and D. Stainforth and D.J. Webb and S.M. Paterson}, 
    1764   title = {The Development of a Free-Surface Bryan-Cox-Semtner Ocean Model}, 
    1765   journal = JPO, 
    1766   year = {1991}, 
    1767   volume = {21},  number = {9}, 
    1768   pages = {1333--1348} 
     2026  author =       {P.D. Killworth and D. Stainforth and D.J. Webb and 
     2027                  S.M. Paterson}, 
     2028  title =        {The Development of a Free-Surface Bryan-Cox-Semtner 
     2029                  Ocean Model}, 
     2030  journal =      JPO, 
     2031  year =         1991, 
     2032  volume =       21, 
     2033  number =       9, 
     2034  pages =        {1333--1348} 
    17692035} 
    17702036 
    17712037@INPROCEEDINGS{Killworth1989, 
    1772   author = {P. D. Killworth}, 
    1773   title = {On the parameterization of deep convection in ocean models}, 
    1774   booktitle = {Parameterization of small-scale processes}, 
    1775   year = {1989}, 
    1776   editor = {Hawaiian winter workshop}, 
    1777   month = {January 17-20}, 
     2038  author =       {P. D. Killworth}, 
     2039  title =        {On the parameterization of deep convection in ocean 
     2040                  models}, 
     2041  booktitle =    {Parameterization of small-scale processes}, 
     2042  year =         1989, 
     2043  editor =       {Hawaiian winter workshop}, 
     2044  month =        {January 17-20}, 
    17782045  organization = {University of Hawaii at Manoa} 
    17792046} 
    17802047 
    17812048@ARTICLE{Killworth1992, 
    1782   author = {P. D. Killworth}, 
    1783   title = {An equivalent-barotropic mode in the fine resolution Antarctic model}, 
    1784   journal = JPO, 
    1785   year = {1992}, 
    1786   volume = {22}, 
    1787   pages = {1379--1387} 
     2049  author =       {P. D. Killworth}, 
     2050  title =        {An equivalent-barotropic mode in the fine resolution 
     2051                  Antarctic model}, 
     2052  journal =      JPO, 
     2053  year =         1992, 
     2054  volume =       22, 
     2055  pages =        {1379--1387} 
    17882056} 
    17892057 
    17902058@ARTICLE{Koch-Larrouy_al_CD10, 
    1791   author = {A. Koch-Larrouy and M. Lengaigne and P. Terray and G. Madec and S. Masson}, 
    1792   title = {Tidal mixing in the Indonesian Seas and its effect on the tropical climate system}, 
    1793   journal = CD, 
    1794   year = {2010}, 
    1795   volume = {34},  number = {6}, 
    1796   pages = {891--904}, 
    1797   doi = {10.1007/s00382-009-0642-4}, 
     2059  author =       {A. Koch-Larrouy and M. Lengaigne and P. Terray and 
     2060                  G. Madec and S. Masson}, 
     2061  title =        {Tidal mixing in the Indonesian Seas and its effect 
     2062                  on the tropical climate system}, 
     2063  journal =      CD, 
     2064  year =         2010, 
     2065  volume =       34, 
     2066  number =       6, 
     2067  pages =        {891--904}, 
     2068  doi =          {10.1007/s00382-009-0642-4}, 
    17982069} 
    17992070 
    18002071@ARTICLE{Koch-Larrouy_al_OD08b, 
    1801   author = {A. Koch-Larrouy and G. Madec and B. Blanke and R. Molcard}, 
    1802   title = {Water mass transformation along the Indonesian throughflow in an OGCM}, 
    1803   journal = OD, 
    1804   year = {2008}, 
    1805   volume = {58},  number = {3-4}, 
    1806   pages = {289--309}, 
    1807   doi = {10.1007/s10236-008-0155-4}, 
     2072  author =       {A. Koch-Larrouy and G. Madec and B. Blanke and 
     2073                  R. Molcard}, 
     2074  title =        {Water mass transformation along the Indonesian 
     2075                  throughflow in an OGCM}, 
     2076  journal =      OD, 
     2077  year =         2008, 
     2078  volume =       58, 
     2079  number =       {3-4}, 
     2080  pages =        {289--309}, 
     2081  doi =          {10.1007/s10236-008-0155-4}, 
    18082082} 
    18092083 
    18102084@ARTICLE{Koch-Larrouy_al_GRL07, 
    1811   author = {A. Koch-Larrouy and G. Madec and P. Bouruet-Aubertot and T. Gerkema and L. Bessieres and R. Molcard}, 
    1812   title = {Tidal mixing in the Indonesian Seas and its effect on the tropical climate system}, 
    1813   journal = GRL, 
    1814   year = {2007}, 
    1815   volume = {34}, 
    1816   pages = {L04604}, 
    1817   doi = {10.1029/2006GL028405}, 
     2085  author =       {A. Koch-Larrouy and G. Madec and P. Bouruet-Aubertot 
     2086                  and T. Gerkema and L. Bessieres and R. Molcard}, 
     2087  title =        {Tidal mixing in the Indonesian Seas and its effect 
     2088                  on the tropical climate system}, 
     2089  journal =      GRL, 
     2090  year =         2007, 
     2091  volume =       34, 
     2092  pages =        {L04604}, 
     2093  doi =          {10.1029/2006GL028405}, 
    18182094} 
    18192095 
    18202096@ARTICLE{Koch-Larrouy_al_OD08a, 
    1821   author = {A. Koch-Larrouy and G. Madec and D. Iudicone and A. Atmadipoera and R. Molcard}, 
    1822   title = {Physical processes contributing to the water mass transformation of the Indonesian Throughflow}, 
    1823   journal = OD, 
    1824   year = {2008}, 
    1825   volume = {58},  number = {3-4}, 
    1826   pages = {275--288}, 
    1827   doi = {10.1007/s10236-008-0154-5}, 
     2097  author =       {A. Koch-Larrouy and G. Madec and D. Iudicone and 
     2098                  A. Atmadipoera and R. Molcard}, 
     2099  title =        {Physical processes contributing to the water mass 
     2100                  transformation of the Indonesian Throughflow}, 
     2101  journal =      OD, 
     2102  year =         2008, 
     2103  volume =       58, 
     2104  number =       {3-4}, 
     2105  pages =        {275--288}, 
     2106  doi =          {10.1007/s10236-008-0154-5}, 
    18282107} 
    18292108 
    18302109@ARTICLE{Kolmogorov1942, 
    1831   author = {A. N. Kolmogorov}, 
    1832   title = {The equation of turbulent motion in an incompressible fluid}, 
    1833   journal = {Izv. Akad. Nauk SSSR, Ser. Fiz.}, 
    1834   year = {1942}, 
    1835   volume = {6}, 
    1836   pages = {56--58} 
    1837 } 
     2110  author =       {A. N. Kolmogorov}, 
     2111  title =        {The equation of turbulent motion in an 
     2112                  incompressible fluid}, 
     2113  journal =      {Izv. Akad. Nauk SSSR, Ser. Fiz.}, 
     2114  year =         1942, 
     2115  volume =       6, 
     2116  pages =        {56--58} 
     2117} 
     2118 
    18382119@ARTICLE{Kondo1975, 
    1839   author = {J. Kondo}, 
    1840   title = {Air-sea bulk transfer coefficients in diabatic conditions}, 
    1841   journal = {Boundary-Layer Meteorol}, 
    1842   year = {1975}, 
    1843   volume = {9}, 
    1844   pages = {91--112} 
     2120  author =       {J. Kondo}, 
     2121  title =        {Air-sea bulk transfer coefficients in diabatic 
     2122                  conditions}, 
     2123  journal =      {Boundary-Layer Meteorol}, 
     2124  year =         1975, 
     2125  volume =       9, 
     2126  pages =        {91--112} 
    18452127} 
    18462128 
    18472129@article{Lemarie_OM2012, 
    1848 author = "F. Lemari\'{e} and L. Debreu and A.F. Shchepetkin and J.C. McWilliams", 
    1849 title = "On the stability and accuracy of the harmonic and biharmonic isoneutral mixing operators in ocean models ", 
    1850 journal = OM, 
    1851 year = "2012", 
    1852 volume = "52–53", pages = "9--35", 
    1853 issn = "1463-5003", 
    1854 doi = "http://dx.doi.org/10.1016/j.ocemod.2012.04.007", 
    1855 } 
    1856  
     2130  author =       "F. Lemari\'{e} and L. Debreu and A.F. Shchepetkin 
     2131                  and J.C. McWilliams", 
     2132  title =        "On the stability and accuracy of the harmonic and 
     2133                  biharmonic isoneutral mixing operators in ocean 
     2134                  models ", 
     2135  journal =      OM, 
     2136  year =         2012, 
     2137  volume =       "52–53", 
     2138  pages =        "9--35", 
     2139  issn =         "1463-5003", 
     2140  doi =          "http://dx.doi.org/10.1016/j.ocemod.2012.04.007", 
     2141} 
    18572142 
    18582143@ARTICLE{Lemarie_OM2015, 
    1859   author = {F. Lemari\'{e} and L. Debreu and J. Demange and  G. Madec and J.M. Molines and M. Honnorat}, 
    1860   title = {Stability Constraints for Oceanic Numerical Models:  
    1861            Implications for the Formulation of time and space Discretizations}, 
    1862   journal = OM, 
    1863   year = {2015}, 
    1864   volume = {92},  
    1865   pages = {124--148}, 
    1866   doi = {10.1016/j.ocemod.2015.06.006}, 
     2144  author =       {F. Lemari\'{e} and L. Debreu and J. Demange and 
     2145                  G. Madec and J.M. Molines and M. Honnorat}, 
     2146  title =        {Stability Constraints for Oceanic Numerical Models: 
     2147                  Implications for the Formulation of time and space 
     2148                  Discretizations}, 
     2149  journal =      OM, 
     2150  year =         2015, 
     2151  volume =       92, 
     2152  pages =        {124--148}, 
     2153  doi =          {10.1016/j.ocemod.2015.06.006}, 
    18672154} 
    18682155 
    18692156@ARTICLE{Lermusiaux2001, 
    1870   author = {P. F. J. Lermusiaux}, 
    1871   title = {Evolving the subspace of three-dimensional miltiscale ocean variability: Massachusetts Bay}, 
    1872   journal = JMS, 
    1873   year = {2001}, 
    1874   volume = {29}, 
    1875   pages = {385--422} 
     2157  author =       {P. F. J. Lermusiaux}, 
     2158  title =        {Evolving the subspace of three-dimensional 
     2159                  miltiscale ocean variability: Massachusetts Bay}, 
     2160  journal =      JMS, 
     2161  year =         2001, 
     2162  volume =       29, 
     2163  pages =        {385--422} 
    18762164} 
    18772165 
    18782166@PHDTHESIS{Levy_PhD96, 
    1879   author = {M. L\'{e}vy}, 
    1880   title = {Mod\'{e}lisation des processus biog\'{e}ochimiques en M\'{e}diterran\'{e}e 
    1881            nord-occidentale. Cycle saisonnier et variabilit\'{e} m\'{e}so\'{e}chelle}, 
    1882   school = {Universit\'{e} Pierre et Marie Curie, Paris, France, 207pp}, 
    1883   year = {1996} 
     2167  author =       {M. L\'{e}vy}, 
     2168  title =        {Mod\'{e}lisation des processus biog\'{e}ochimiques 
     2169                  en M\'{e}diterran\'{e}e nord-occidentale. Cycle 
     2170                  saisonnier et variabilit\'{e} m\'{e}so\'{e}chelle}, 
     2171  school =       {Universit\'{e} Pierre et Marie Curie, Paris, France, 
     2172                  207pp}, 
     2173  year =         1996 
    18842174} 
    18852175 
    18862176@ARTICLE{Levy_al_GRL01, 
    1887   author = {M. L\'{e}vy and A. Estubier and G Madec}, 
    1888   title = {Choice of an advection scheme for biogeochemical models}, 
    1889   journal = GRL, 
    1890   year = {2001}, 
    1891   volume = {28} 
     2177  author =       {M. L\'{e}vy and A. Estubier and G Madec}, 
     2178  title =        {Choice of an advection scheme for biogeochemical 
     2179                  models}, 
     2180  journal =      GRL, 
     2181  year =         2001, 
     2182  volume =       28 
    18922183} 
    18932184 
    18942185@ARTICLE{Levy_al_OM10, 
    1895   author = {M. L\'{e}vy and P. Klein and A.-M. Tr\'{e}guier and D. Iovino and 
    1896    G. Madec and S. Masson and T. Takahashi}, 
    1897   title = {Impacts of sub-mesoscale physics on idealized gyres}, 
    1898   journal = OM, 
    1899   year = {2010}, 
    1900   volume = {34},  number = {1-2}, 
    1901   doi = {10.1016/j.ocemod.2010.04.001}, 
     2186  author =       {M. L\'{e}vy and P. Klein and A.-M. Tr\'{e}guier and 
     2187                  D. Iovino and G. Madec and S. Masson and 
     2188                  T. Takahashi}, 
     2189  title =        {Impacts of sub-mesoscale physics on idealized gyres}, 
     2190  journal =      OM, 
     2191  year =         2010, 
     2192  volume =       34, 
     2193  number =       {1-2}, 
     2194  doi =          {10.1016/j.ocemod.2010.04.001}, 
    19022195} 
    19032196 
    19042197@ARTICLE{Levy_al_JMS99, 
    1905   author = {M. L\'{e}vy and L. M\'{e}mery and G. Madec}, 
    1906   title = {The onset of a bloom after deep winter convection in the Northwestern 
    1907    Mediterranean Sea: mesoscale process study with a primitive equation 
    1908    model}, 
    1909   journal = JMS, 
    1910   year = {1999}, 
    1911   volume = {16},  number = {1-2}, 
    1912   pages = {7--21} 
     2198  author =       {M. L\'{e}vy and L. M\'{e}mery and G. Madec}, 
     2199  title =        {The onset of a bloom after deep winter convection in 
     2200                  the Northwestern Mediterranean Sea: mesoscale 
     2201                  process study with a primitive equation model}, 
     2202  journal =      JMS, 
     2203  year =         1999, 
     2204  volume =       16, 
     2205  number =       {1-2}, 
     2206  pages =        {7--21} 
    19132207} 
    19142208 
    19152209@ARTICLE{Levy_al_DSR98, 
    1916   author = {M. L\'{e}vy and L. M\'{e}mery and G. Madec}, 
    1917   title = {The onset of the spring bloom in the MEDOC area: mesoscale spatial 
    1918    variability}, 
    1919   journal = DSR, 
    1920   year = {1998}, 
    1921   volume = {I},  number = {46}, 
    1922   pages = {1137--1160} 
     2210  author =       {M. L\'{e}vy and L. M\'{e}mery and G. Madec}, 
     2211  title =        {The onset of the spring bloom in the MEDOC area: 
     2212                  mesoscale spatial variability}, 
     2213  journal =      DSR, 
     2214  year =         1998, 
     2215  volume =       {I}, 
     2216  number =       46, 
     2217  pages =        {1137--1160} 
    19232218} 
    19242219 
    19252220@ARTICLE{Levy_al_DSR00, 
    1926   author = {M. L\'{e}vy and L. M\'{e}mery and G. Madec}, 
    1927   title = {Combined effects of mesoscale processes and atmospheric high-frequency 
    1928    variability on the spring bloom in the MEDOC area}, 
    1929   journal = DSR, 
    1930   year = {2000}, 
    1931   volume = {47}, 
    1932   pages = {527--531} 
     2221  author =       {M. L\'{e}vy and L. M\'{e}mery and G. Madec}, 
     2222  title =        {Combined effects of mesoscale processes and 
     2223                  atmospheric high-frequency variability on the spring 
     2224                  bloom in the MEDOC area}, 
     2225  journal =      DSR, 
     2226  year =         2000, 
     2227  volume =       47, 
     2228  pages =        {527--531} 
    19332229} 
    19342230 
    19352231@BOOK{Large_Yeager_Rep04, 
    1936   title = {Diurnal to decadal global forcing for ocean and sea-ice models: the data sets and flux climatologies}, 
    1937   publisher = {NCAR Technical Note, NCAR/TN-460+STR, CGD Division of the National Center for Atmospheric Research}, 
    1938   year = {2004}, 
    1939   author = {W. G. Large and S. Yeager}} 
     2232  title =        {Diurnal to decadal global forcing for ocean and 
     2233                  sea-ice models: the data sets and flux 
     2234                  climatologies}, 
     2235  publisher =    {NCAR Technical Note, NCAR/TN-460+STR, CGD Division 
     2236                  of the National Center for Atmospheric Research}, 
     2237  year =         2004, 
     2238  author =       {W. G. Large and S. Yeager} 
     2239} 
    19402240 
    19412241@ARTICLE{Large_al_RG94, 
    1942   author = {W. G. Large and J. C. McWilliams and S. C. Doney}, 
    1943   title = {Oceanic vertical mixing - a review and a model with a nonlocal boundary layer parameterization}, 
    1944   journal = {Reviews of Geophysics}, 
    1945   year = {1994}, 
    1946   volume = {32}, 
    1947   pages = {363--404}, 
    1948   doi = {10.1029/94RG01872}, 
     2242  author =       {W. G. Large and J. C. McWilliams and S. C. Doney}, 
     2243  title =        {Oceanic vertical mixing - a review and a model with 
     2244                  a nonlocal boundary layer parameterization}, 
     2245  journal =      {Reviews of Geophysics}, 
     2246  year =         1994, 
     2247  volume =       32, 
     2248  pages =        {363--404}, 
     2249  doi =          {10.1029/94RG01872}, 
    19492250} 
    19502251 
    19512252@ARTICLE{Latif_al_JC06, 
    1952   author = {M. Latif and C. Böning and J. Willebrand and A. Biastoch and J. Dengg 
    1953    and N. Keenlyside and U. Schweckendiek and G. Madec}, 
    1954   title = {Is the Thermohaline Circulation Changing?}, 
    1955   journal = JC, 
    1956   year = {2006}, 
    1957   volume = {19}, 
    1958   pages = {4631--4637} 
     2253  author =       {M. Latif and C. Böning and J. Willebrand and 
     2254                  A. Biastoch and J. Dengg and N. Keenlyside and 
     2255                  U. Schweckendiek and G. Madec}, 
     2256  title =        {Is the Thermohaline Circulation Changing?}, 
     2257  journal =      JC, 
     2258  year =         2006, 
     2259  volume =       19, 
     2260  pages =        {4631--4637} 
    19592261} 
    19602262 
    19612263@PHDTHESIS{Lazar_PhD97, 
    1962   author = {A. Lazar}, 
    1963   title = {La branche froide de la circulation thermohaline - sensibilit\'{e} 
    1964    \`{a} la diffusion turbulente dans un mod\`{e}le de circulation g\'{e}n\'{e}rale 
    1965    id\'{e}alis\'{e}e}, 
    1966   school = {Universit\'{e} Pierre et Marie Curie, Paris, France, 200pp}, 
    1967   year = {1997} 
     2264  author =       {A. Lazar}, 
     2265  title =        {La branche froide de la circulation thermohaline - 
     2266                  sensibilit\'{e} \`{a} la diffusion turbulente dans 
     2267                  un mod\`{e}le de circulation g\'{e}n\'{e}rale 
     2268                  id\'{e}alis\'{e}e}, 
     2269  school =       {Universit\'{e} Pierre et Marie Curie, Paris, France, 
     2270                  200pp}, 
     2271  year =         1997 
    19682272} 
    19692273 
    19702274@ARTICLE{Lazar_al_JPO99, 
    1971   author = {A. Lazar and G. Madec and P. Delecluse}, 
    1972   title = {The Deep Interior Downwelling, the Veronis Effect, and Mesoscale 
    1973    Tracer Transport Parameterizations in an OGCM}, 
    1974   journal = JPO, 
    1975   year = {1999}, 
    1976   volume = {29},  number = {11}, 
    1977   pages = {2945--2961}, 
     2275  author =       {A. Lazar and G. Madec and P. Delecluse}, 
     2276  title =        {The Deep Interior Downwelling, the Veronis Effect, 
     2277                  and Mesoscale Tracer Transport Parameterizations in 
     2278                  an OGCM}, 
     2279  journal =      JPO, 
     2280  year =         1999, 
     2281  volume =       29, 
     2282  number =       11, 
     2283  pages =        {2945--2961}, 
    19782284} 
    19792285 
    19802286@ARTICLE{Le_Sommer_al_OM09, 
    1981   author = {J. {Le Sommer} and T. Penduff and S. Theetten and G. Madec and B. 
    1982    Barnier}, 
    1983   title = {How momentum advection schemes influence current-topography interactions 
    1984    at eddy permitting resolution}, 
    1985   journal = OM, 
    1986   year = {2009}, 
    1987   volume = {29},  number = {1}, 
    1988   pages = {1--14}, 
    1989   doi = {10.1016/j.ocemod.2008.11.007}, 
     2287  author =       {J. {Le Sommer} and T. Penduff and S. Theetten and 
     2288                  G. Madec and B.  Barnier}, 
     2289  title =        {How momentum advection schemes influence 
     2290                  current-topography interactions at eddy permitting 
     2291                  resolution}, 
     2292  journal =      OM, 
     2293  year =         2009, 
     2294  volume =       29, 
     2295  number =       1, 
     2296  pages =        {1--14}, 
     2297  doi =          {10.1016/j.ocemod.2008.11.007}, 
    19902298} 
    19912299 
    19922300@PHDTHESIS{Leclair_PhD2010, 
    1993   author = {M. Leclair}, 
    1994   title = {introduction d'une coordonn\'{e}e verticale arbitrairement Lagrangienne 
    1995    Eul\'{e}rienne dans le code NEMO, 180pp.}, 
    1996   school = {Universit\'{e} Pierre and Marie Curie}, 
    1997   year = {2010} 
     2301  author =       {M. Leclair}, 
     2302  title =        {introduction d'une coordonn\'{e}e verticale 
     2303                  arbitrairement Lagrangienne Eul\'{e}rienne dans le 
     2304                  code NEMO, 180pp.}, 
     2305  school =       {Universit\'{e} Pierre and Marie Curie}, 
     2306  year =         2010 
    19982307} 
    19992308 
    20002309@ARTICLE{Leclair_Madec_OM09, 
    2001   author = {M. Leclair and G. Madec}, 
    2002   title = {A conservative leap-frog time stepping method}, 
    2003   journal = OM, 
    2004   year = {2009}, 
    2005   volume = {30},  number = {2-3}, 
    2006   pages = {88-94}, 
    2007   doi = {10.1016/j.ocemod.2009.06.006}, 
     2310  author =       {M. Leclair and G. Madec}, 
     2311  title =        {A conservative leap-frog time stepping method}, 
     2312  journal =      OM, 
     2313  year =         2009, 
     2314  volume =       30, 
     2315  number =       {2-3}, 
     2316  pages =        {88-94}, 
     2317  doi =          {10.1016/j.ocemod.2009.06.006}, 
    20082318} 
    20092319 
    20102320@ARTICLE{Leclair_Madec_OM11, 
    2011   author = {M. Leclair and G. Madec}, 
    2012   title = {$\tilde{z}$-coordinate, an Arbitrary Lagrangian-Eulerian coordinate separating high and low frequency}, 
    2013   journal = OM, 
    2014   year = {2011}, 
    2015   volume = {37},  pages = {139--152},  
    2016   doi = {10.1016/j.ocemod.2011.02.001}, 
     2321  author =       {M. Leclair and G. Madec}, 
     2322  title =        {$\tilde{z}$-coordinate, an Arbitrary 
     2323                  Lagrangian-Eulerian coordinate separating high and 
     2324                  low frequency}, 
     2325  journal =      OM, 
     2326  year =         2011, 
     2327  volume =       37, 
     2328  pages =        {139--152}, 
     2329  doi =          {10.1016/j.ocemod.2011.02.001}, 
    20172330} 
    20182331 
    20192332@ARTICLE{Lele_JCP1992, 
    2020   author = {S.K. Lele}, 
    2021   title = {Compact finite difference schemes with spectral-like resolution}, 
    2022   journal = JCP, 
    2023   year = {1992}, 
    2024   volume = {103}, pages = {16--42} 
     2333  author =       {S.K. Lele}, 
     2334  title =        {Compact finite difference schemes with spectral-like 
     2335                  resolution}, 
     2336  journal =      JCP, 
     2337  year =         1992, 
     2338  volume =       103, 
     2339  pages =        {16--42} 
    20252340} 
    20262341 
    20272342@ARTICLE{Lengaigne_al_JC03, 
    2028   author = {M. Lengaigne and J.-P. Boulanger and C. Menkes and G. Madec and P. 
    2029    Delecluse and E. Guilyardi, and J. Slingo}, 
    2030   title = {The March 1997 Westerly Wind Event and the onset of the 1997/98 El 
    2031    Niño: Understanding the role of the atmospheric}, 
    2032   journal = JC, 
    2033   year = {2003}, 
    2034   volume = {16},  number = {20}, pages = {3330--3343} 
     2343  author =       {M. Lengaigne and J.-P. Boulanger and C. Menkes and 
     2344                  G. Madec and P.  Delecluse and E. Guilyardi, and 
     2345                  J. Slingo}, 
     2346  title =        {The March 1997 Westerly Wind Event and the onset of 
     2347                  the 1997/98 El Niño: Understanding the role of the 
     2348                  atmospheric}, 
     2349  journal =      JC, 
     2350  year =         2003, 
     2351  volume =       16, 
     2352  number =       20, 
     2353  pages =        {3330--3343} 
    20352354} 
    20362355 
    20372356@ARTICLE{Lengaigne_al_JGR02, 
    2038   author = {M. Lengaigne and J.-P. Boulanger and C. Menkes and S. Masson and 
    2039    G. Madec and P. Delecluse}, 
    2040   title = {Ocean response to the March 1997 Westerly Wind Event}, 
    2041   journal = JGR, 
    2042   year = {2002}, 
    2043   doi = {10.1029/2001JC000841}, 
     2357  author =       {M. Lengaigne and J.-P. Boulanger and C. Menkes and 
     2358                  S. Masson and G. Madec and P. Delecluse}, 
     2359  title =        {Ocean response to the March 1997 Westerly Wind 
     2360                  Event}, 
     2361  journal =      JGR, 
     2362  year =         2002, 
     2363  doi =          {10.1029/2001JC000841}, 
    20442364} 
    20452365 
    20462366@ARTICLE{Lengaigne_al_JGR03, 
    2047   author = {M. Lengaigne and G. Madec and G. Alory and C. Menkes}, 
    2048   title = {Sensitivity of the tropical Pacific Ocean to isopycnal diffusion 
    2049    on tracer and dynamics}, 
    2050   journal = JGR, 
    2051   year = {2003}, 
    2052   volume = {108},  number = {C11}, 
    2053   pages = {3345}, 
    2054   doi = {10.1029/2002JC001704}, 
     2367  author =       {M. Lengaigne and G. Madec and G. Alory and 
     2368                  C. Menkes}, 
     2369  title =        {Sensitivity of the tropical Pacific Ocean to 
     2370                  isopycnal diffusion on tracer and dynamics}, 
     2371  journal =      JGR, 
     2372  year =         2003, 
     2373  volume =       108, 
     2374  number =       {C11}, 
     2375  pages =        3345, 
     2376  doi =          {10.1029/2002JC001704}, 
    20552377} 
    20562378 
    20572379@ARTICLE{Lengaigne_al_GRL09, 
    2058   author = {M. Lengaigne and G. Madec and L. Bopp and C. Menkes and O. Aumont and P. Cadule}, 
    2059   title = {Bio-physical feedbacks in the Arctic Ocean using an Earth System model}, 
    2060   journal = GRL, 
    2061   year = {2009}, 
    2062   volume = {36},   
    2063   pages = {L21602}, 
    2064   doi = {10.1029/2009GL040145}, 
     2380  author =       {M. Lengaigne and G. Madec and L. Bopp and C. Menkes 
     2381                  and O. Aumont and P. Cadule}, 
     2382  title =        {Bio-physical feedbacks in the Arctic Ocean using an 
     2383                  Earth System model}, 
     2384  journal =      GRL, 
     2385  year =         2009, 
     2386  volume =       36, 
     2387  pages =        {L21602}, 
     2388  doi =          {10.1029/2009GL040145}, 
    20652389} 
    20662390 
    20672391@ARTICLE{Lengaigne_al_CD07, 
    2068   author = {M. Lengaigne and C. Menkes and O. Aumont and T. Gorgues and L. Bopp and J.-M. Andr\'{e} G. Madec}, 
    2069   title = {Bio-physical feedbacks on the tropical Pacific climate in a Coupled 
    2070    General Circulation Model}, 
    2071   journal = CD, 
    2072   year = {2007}, 
    2073   volume = {28}, 
    2074   pages = {503--516} 
     2392  author =       {M. Lengaigne and C. Menkes and O. Aumont and 
     2393                  T. Gorgues and L. Bopp and J.-M. Andr\'{e} G. Madec}, 
     2394  title =        {Bio-physical feedbacks on the tropical Pacific 
     2395                  climate in a Coupled General Circulation Model}, 
     2396  journal =      CD, 
     2397  year =         2007, 
     2398  volume =       28, 
     2399  pages =        {503--516} 
    20752400} 
    20762401 
    20772402@ARTICLE{Leonard1991, 
    2078   author = {B. P. Leonard}, 
    2079   title = {The ULTIMATE conservative difference scheme applied to unsteady one--dimensional advection}, 
    2080   journal = {Computer Methods in Applied Mechanics and Engineering}, 
    2081   year = {1991}, 
    2082   pages = {17--74} 
     2403  author =       {B. P. Leonard}, 
     2404  title =        {The ULTIMATE conservative difference scheme applied 
     2405                  to unsteady one--dimensional advection}, 
     2406  journal =      {Computer Methods in Applied Mechanics and 
     2407                  Engineering}, 
     2408  year =         1991, 
     2409  pages =        {17--74} 
    20832410} 
    20842411 
    20852412@TECHREPORT{Leonard_Rep88, 
    2086   author = {B. P. Leonard}, 
    2087   title = {Universal limiter for transient interpolation modelling of the advective transport equations}, 
    2088   institution = {Technical Memorandum TM-100916 ICOMP-88-11, NASA}, 
    2089   year = {1988} 
     2413  author =       {B. P. Leonard}, 
     2414  title =        {Universal limiter for transient interpolation 
     2415                  modelling of the advective transport equations}, 
     2416  institution =  {Technical Memorandum TM-100916 ICOMP-88-11, NASA}, 
     2417  year =         1988 
    20902418} 
    20912419 
    20922420@ARTICLE{Leonard1979, 
    2093   author = {B. P. Leonard}, 
    2094   title = {A stable and accurate convective modelling procedure based on quadratic 
    2095    upstream interpolation}, 
    2096   journal = {Computer Methods in Applied Mechanics and Engineering}, 
    2097   year = {1979}, 
    2098   volume = {19}, 
    2099   pages = {59--98}, 
     2421  author =       {B. P. Leonard}, 
     2422  title =        {A stable and accurate convective modelling procedure 
     2423                  based on quadratic upstream interpolation}, 
     2424  journal =      {Computer Methods in Applied Mechanics and 
     2425                  Engineering}, 
     2426  year =         1979, 
     2427  volume =       19, 
     2428  pages =        {59--98}, 
    21002429} 
    21012430 
    21022431@TECHREPORT{Levier2007, 
    2103   author = {B. Levier and A.-M. Tr\'{e}guier and G. Madec and V. Garnier}, 
    2104   title = {Free surface and variable volume in the NEMO code}, 
    2105   institution = {MERSEA MERSEA IP report WP09-CNRS-STR-03-1A, 47pp, available on the 
    2106    NEMO web site}, 
    2107   year = {2007} 
     2432  author =       {B. Levier and A.-M. Tr\'{e}guier and G. Madec and 
     2433                  V. Garnier}, 
     2434  title =        {Free surface and variable volume in the NEMO code}, 
     2435  institution =  {MERSEA MERSEA IP report WP09-CNRS-STR-03-1A, 47pp, 
     2436                  available on the NEMO web site}, 
     2437  year =         2007 
    21082438} 
    21092439 
    21102440@BOOK{levitus82, 
    2111   title = {Climatological Atlas of the world ocean}, 
    2112   publisher = {NOAA professional paper No. 13, 174pp}, 
    2113   year = {1982}, 
    2114   author = {S Levitus }, 
    2115   pages = {173 pp} 
    2116 } 
    2117  
    2118 @ARTICLE{Li_al_OM2017}, 
     2441  title =        {Climatological Atlas of the world ocean}, 
     2442  publisher =    {NOAA professional paper No. 13, 174pp}, 
     2443  year =         1982, 
     2444  author =       {S Levitus }, 
     2445  pages =        {173 pp} 
     2446} 
     2447 
     2448@ARTICLE{Li_al_OM2017 
     2449}, 
    21192450   AUTHOR = {Q Li and B Fox-Kemper and {\O} Breivik and A Webb}, 
    21202451   YEAR = {2017}, 
     
    21282459 
    21292460@ARTICLE{Li_Garrett_JMR93, 
    2130   author = {M. Li and C. Garrett}, 
    2131   title = {Cell merging and the jet/downwelling ratio in Langmuir circulation}, 
    2132   journal = JMR, 
    2133   year = {1993}, 
    2134   volume = {51}, 
    2135   pages = {737--769} 
     2461  author =       {M. Li and C. Garrett}, 
     2462  title =        {Cell merging and the jet/downwelling ratio in 
     2463                  Langmuir circulation}, 
     2464  journal =      JMR, 
     2465  year =         1993, 
     2466  volume =       51, 
     2467  pages =        {737--769} 
    21362468} 
    21372469 
    21382470@ARTICLE{Losch2008, 
    2139   author = {M. Losch}, 
    2140   title = {Modeling ice shelf cavities in a z coordinate ocean general circulation model}, 
    2141   journal = JGR, 
    2142   year = {2008}, 
    2143   volume = {113},  number = {C13}, 
     2471  author =       {M. Losch}, 
     2472  title =        {Modeling ice shelf cavities in a z coordinate ocean 
     2473                  general circulation model}, 
     2474  journal =      JGR, 
     2475  year =         2008, 
     2476  volume =       113, 
     2477  number =       {C13}, 
    21442478} 
    21452479 
    21462480@TECHREPORT{Lott1989, 
    2147   author = {F. Lott and G. Madec}, 
    2148   title = {Implementation of bottom topography in the Ocean General Circulation 
    2149    Model OPA of the LODYC: formalism and experiments.}, 
    2150   institution = {LODYC, France, 36pp.}, 
    2151   year = {1989}, 
    2152   number = {3} 
     2481  author =       {F. Lott and G. Madec}, 
     2482  title =        {Implementation of bottom topography in the Ocean 
     2483                  General Circulation Model OPA of the LODYC: 
     2484                  formalism and experiments.}, 
     2485  institution =  {LODYC, France, 36pp.}, 
     2486  year =         1989, 
     2487  number =       3 
    21532488} 
    21542489 
    21552490@ARTICLE{Lott_al_OM90, 
    2156   author = {F. Lott and G. Madec and J. Verron}, 
    2157   title = {Topographic experiments in an Ocean General Circulation Model}, 
    2158   journal = OM, 
    2159   year = {1990}, 
    2160   volume = {88}, 
    2161   pages = {1--4} 
     2491  author =       {F. Lott and G. Madec and J. Verron}, 
     2492  title =        {Topographic experiments in an Ocean General 
     2493                  Circulation Model}, 
     2494  journal =      OM, 
     2495  year =         1990, 
     2496  volume =       88, 
     2497  pages =        {1--4} 
    21622498} 
    21632499 
    21642500@ARTICLE{Luo_al_JC05, 
    2165   author = {J.-J. Luo and S. Masson and E. Roeckner and G. Madec and T. Yamagata}, 
    2166   title = {Reducing climatology bias in an ocean-atmosphere CGCM with improved 
    2167    coupling physics}, 
    2168   journal = JC, 
    2169   year = {2005}, 
    2170   volume = {18},  number = {13}, 
    2171   pages = {2344--2360} 
     2501  author =       {J.-J. Luo and S. Masson and E. Roeckner and G. Madec 
     2502                  and T. Yamagata}, 
     2503  title =        {Reducing climatology bias in an ocean-atmosphere 
     2504                  CGCM with improved coupling physics}, 
     2505  journal =      JC, 
     2506  year =         2005, 
     2507  volume =       18, 
     2508  number =       13, 
     2509  pages =        {2344--2360} 
    21722510} 
    21732511 
    21742512@BOOK{Madec_Bk08, 
    2175   title = {NEMO ocean engine}, 
    2176   publisher = {Note du P\^ole de mod\'{e}lisation, Institut Pierre-Simon Laplace 
    2177    (IPSL), France, No 27, ISSN No 1288-1619}, 
    2178   year = {2008}, 
    2179   author = {G. Madec} 
     2513  title =        {NEMO ocean engine}, 
     2514  publisher =    {Note du P\^ole de mod\'{e}lisation, Institut 
     2515                  Pierre-Simon Laplace (IPSL), France, No 27, ISSN No 
     2516                  1288-1619}, 
     2517  year =         2008, 
     2518  author =       {G. Madec} 
    21802519} 
    21812520 
    21822521@BOOK{Madec_HDR01, 
    2183   title = {Le Cycle des Masses d'Eau Oc\'{e}aniqueset sa variabilit\'{e} dans le Syst\'{e}me Climatique}, 
    2184   year = {2001}, 
    2185   author = {G. Madec}, 
    2186   pages = {63pp.}, 
    2187   series = {Habilitation \'{a} Diriger des Recherches, Universit\'{e} Pierre et Marie Curie} 
     2522  title =        {Le Cycle des Masses d'Eau Oc\'{e}aniqueset sa 
     2523                  variabilit\'{e} dans le Syst\'{e}me Climatique}, 
     2524  year =         2001, 
     2525  author =       {G. Madec}, 
     2526  pages =        {63pp.}, 
     2527  series =       {Habilitation \'{a} Diriger des Recherches, 
     2528                  Universit\'{e} Pierre et Marie Curie} 
    21882529} 
    21892530 
    21902531@PHDTHESIS{Madec_PhD90, 
    2191   author = {G. Madec}, 
    2192   title = {La formation d'eau profonde et son impact sur la circulation r\'{e}gionale 
    2193    en M\'{e}diterran\'{e}e Occidentale - une approche num\'{e}rique}, 
    2194   school = {Universit\'{e} Pierre et Marie Curie, Paris, France, 194pp.}, 
    2195   year = {1990}, 
    2196   month = {2 mai} 
     2532  author =       {G. Madec}, 
     2533  title =        {La formation d'eau profonde et son impact sur la 
     2534                  circulation r\'{e}gionale en M\'{e}diterran\'{e}e 
     2535                  Occidentale - une approche num\'{e}rique}, 
     2536  school =       {Universit\'{e} Pierre et Marie Curie, Paris, France, 
     2537                  194pp.}, 
     2538  year =         1990, 
     2539  month =        {2 mai} 
    21972540} 
    21982541 
    21992542@ARTICLE{Madec_al_DAO91, 
    2200   author = {G. Madec and M. Chartier and M. Cr\'{e}pon}, 
    2201   title = {Effect of thermohaline forcing variability on deep water formation 
    2202    in the Northwestern Mediterranean Sea - a high resulution three-dimensional 
    2203    study}, 
    2204   journal = DAO, 
    2205   year = {1991}, 
    2206   volume = {15}, 
    2207   pages = {301--332} 
     2543  author =       {G. Madec and M. Chartier and M. Cr\'{e}pon}, 
     2544  title =        {Effect of thermohaline forcing variability on deep 
     2545                  water formation in the Northwestern Mediterranean 
     2546                  Sea - a high resulution three-dimensional study}, 
     2547  journal =      DAO, 
     2548  year =         1991, 
     2549  volume =       15, 
     2550  pages =        {301--332} 
    22082551} 
    22092552 
    22102553@ARTICLE{Madec_al_JPO91, 
    2211   author = {G. Madec and M. Chartier and P. Delecluse and M. Cr\'{e}pon}, 
    2212   title = {A three-dimensional numerical study of deep water formation in the Northwestern Mediterranean Sea .}, 
    2213   journal = JPO, 
    2214   year = {1991}, 
    2215   volume = {21}, 
    2216   pages = {1349--1371} 
     2554  author =       {G. Madec and M. Chartier and P. Delecluse and 
     2555                  M. Cr\'{e}pon}, 
     2556  title =        {A three-dimensional numerical study of deep water 
     2557                  formation in the Northwestern Mediterranean Sea .}, 
     2558  journal =      JPO, 
     2559  year =         1991, 
     2560  volume =       21, 
     2561  pages =        {1349--1371} 
    22172562} 
    22182563 
    22192564@INBOOK{Madec_Crepon_Bk91, 
    2220   chapter = {Thermohaline-driven deep water formation in the Northwestern Mediterranean 
    2221    Sea}, 
    2222   pages = {241--265}, 
    2223   title = {Deep convection and deep water formation in the oceans}, 
    2224   publisher = {Elsevier Oceanographic Series, P.C. Chu and J.C. Gascard (Eds.)}, 
    2225   year = {1991}, 
    2226   author = {G. Madec and M. Cr\'{e}pon} 
     2565  chapter =      {Thermohaline-driven deep water formation in the 
     2566                  Northwestern Mediterranean Sea}, 
     2567  pages =        {241--265}, 
     2568  title =        {Deep convection and deep water formation in the 
     2569                  oceans}, 
     2570  publisher =    {Elsevier Oceanographic Series, P.C. Chu and 
     2571                  J.C. Gascard (Eds.)}, 
     2572  year =         1991, 
     2573  author =       {G. Madec and M. Cr\'{e}pon} 
    22272574} 
    22282575 
    22292576@ARTICLE{Madec1997, 
    2230   author = {G. Madec and P. Delecluse}, 
    2231   title = {The OPA/ARPEGE and OPA/LMD Global Ocean-Atmosphere Coupled Model}, 
    2232   journal = {Int. WOCE Newsletter}, 
    2233   year = {1997}, 
    2234   volume = {26}, 
    2235   pages = {12--15} 
     2577  author =       {G. Madec and P. Delecluse}, 
     2578  title =        {The OPA/ARPEGE and OPA/LMD Global Ocean-Atmosphere 
     2579                  Coupled Model}, 
     2580  journal =      {Int. WOCE Newsletter}, 
     2581  year =         1997, 
     2582  volume =       26, 
     2583  pages =        {12--15} 
    22362584} 
    22372585 
    22382586@TECHREPORT{Madec1998, 
    2239   author = {G. Madec and P. Delecluse and M. Imbard and C. Levy}, 
    2240   title = {OPA 8 Ocean General Circulation Model - Reference Manual}, 
    2241   institution = {LODYC/IPSL Note 11}, 
    2242   year = {1998} 
     2587  author =       {G. Madec and P. Delecluse and M. Imbard and C. Levy}, 
     2588  title =        {OPA 8 Ocean General Circulation Model - Reference 
     2589                  Manual}, 
     2590  institution =  {LODYC/IPSL Note 11}, 
     2591  year =         1998 
    22432592} 
    22442593 
    22452594@ARTICLE{Madec_Imbard_CD96, 
    2246   author = {G Madec and M Imbard}, 
    2247   title = {A global ocean mesh to overcome the north pole singularity}, 
    2248   journal = CD, 
    2249   year = {1996}, 
    2250   volume = {12}, 
    2251   pages = {381--388} 
     2595  author =       {G Madec and M Imbard}, 
     2596  title =        {A global ocean mesh to overcome the north pole 
     2597                  singularity}, 
     2598  journal =      CD, 
     2599  year =         1996, 
     2600  volume =       12, 
     2601  pages =        {381--388} 
    22522602} 
    22532603 
    22542604@ARTICLE{Madec_al_JPO96, 
    2255   author = {G. Madec and F. Lott and P. Delecluse and M. Cr\'{e}pon}, 
    2256   title = {Large-Scale Preconditioning of Deep-Water Formation in the Northwestern 
    2257    Mediterranean Sea}, 
    2258   journal = JPO, 
    2259   year = {1996}, 
    2260   volume = {26},  number = {8}, 
    2261   pages = {1393--1408}, 
     2605  author =       {G. Madec and F. Lott and P. Delecluse and 
     2606                  M. Cr\'{e}pon}, 
     2607  title =        {Large-Scale Preconditioning of Deep-Water Formation 
     2608                  in the Northwestern Mediterranean Sea}, 
     2609  journal =      JPO, 
     2610  year =         1996, 
     2611  volume =       26, 
     2612  number =       8, 
     2613  pages =        {1393--1408}, 
    22622614} 
    22632615 
    22642616@ARTICLE{Madec_al_OM88, 
    2265   author = {G. Madec and C. Rahier and M. Chartier}, 
    2266   title = {A comparison of two-dimensional elliptic solvers for the streamfunction 
    2267    in a multilevel OGCM}, 
    2268   journal = OM, 
    2269   year = {1988}, 
    2270   volume = {78}, 
    2271   pages = {1-6} 
     2617  author =       {G. Madec and C. Rahier and M. Chartier}, 
     2618  title =        {A comparison of two-dimensional elliptic solvers for 
     2619                  the streamfunction in a multilevel OGCM}, 
     2620  journal =      OM, 
     2621  year =         1988, 
     2622  volume =       78, 
     2623  pages =        {1-6} 
    22722624} 
    22732625 
    22742626@ARTICLE{Maes_al_CD98, 
    2275   author = {C. Maes and P. Delecluse and G. Madec}, 
    2276   title = {Impact of westerly wind bursts on the warm pool of the TOGA-COARE 
    2277    domain in an OGCM}, 
    2278   journal = CD, 
    2279   year = {1998}, 
    2280   volume = {14}, 
    2281   pages = {55--70} 
     2627  author =       {C. Maes and P. Delecluse and G. Madec}, 
     2628  title =        {Impact of westerly wind bursts on the warm pool of 
     2629                  the TOGA-COARE domain in an OGCM}, 
     2630  journal =      CD, 
     2631  year =         1998, 
     2632  volume =       14, 
     2633  pages =        {55--70} 
    22822634} 
    22832635 
    22842636@ARTICLE{Maes_al_MWR97, 
    2285   author = {C. Maes and G. Madec and P. Delecluse}, 
    2286   title = {Sensitivity of an Equatorial Pacific OGCM to the lateral diffusion}, 
    2287   journal = MWR, 
    2288   year = {1997}, 
    2289   volume = {125},  number = {5}, 
    2290   pages = {958--971} 
     2637  author =       {C. Maes and G. Madec and P. Delecluse}, 
     2638  title =        {Sensitivity of an Equatorial Pacific OGCM to the 
     2639                  lateral diffusion}, 
     2640  journal =      MWR, 
     2641  year =         1997, 
     2642  volume =       125, 
     2643  number =       5, 
     2644  pages =        {958--971} 
    22912645} 
    22922646 
    22932647@ARTICLE{Maggiore_al_PCE98, 
    2294   author = {A. Maggiore and  M. Zavatarelli and M. G. Angelucci and N. Pinardi}, 
    2295   title = {Surface heat and water fluxes in the Adriatic Sea: seasonal and interannual variability}, 
    2296   journal = {Phys Chem Earth}, 
    2297   year = {1998}, 
    2298   volume = {23}, 
    2299   pages = {561--567} 
     2648  author =       {A. Maggiore and M. Zavatarelli and M. G. Angelucci 
     2649                  and N. Pinardi}, 
     2650  title =        {Surface heat and water fluxes in the Adriatic Sea: 
     2651                  seasonal and interannual variability}, 
     2652  journal =      {Phys Chem Earth}, 
     2653  year =         1998, 
     2654  volume =       23, 
     2655  pages =        {561--567} 
    23002656} 
    23012657 
    23022658@ARTICLE{Maltrud1998, 
    2303   author = {M. E. Maltrud and R. D. Smith and A. J. Semtner and R. C. Malone}, 
    2304   title = {Global eddy-resolving ocean simulations driven by 1985-1995 atmospheric 
    2305    winds}, 
    2306   journal = JGR, 
    2307   year = {1998}, 
    2308   volume = {103},  number = {C13}, 
    2309   pages = {30,825--30,854} 
     2659  author =       {M. E. Maltrud and R. D. Smith and A. J. Semtner and 
     2660                  R. C. Malone}, 
     2661  title =        {Global eddy-resolving ocean simulations driven by 
     2662                  1985-1995 atmospheric winds}, 
     2663  journal =      JGR, 
     2664  year =         1998, 
     2665  volume =       103, 
     2666  number =       {C13}, 
     2667  pages =        {30,825--30,854} 
    23102668} 
    23112669 
    23122670@ARTICLE{Marchesiello2001, 
    2313   author = { P. Marchesiello and J. Mc Williams and A. Shchepetkin }, 
    2314   title = {Open boundary conditions for long-term integrations of Regional Oceanic 
    2315    Models}, 
    2316   journal = OM, 
    2317   year = {2001}, 
    2318   volume = {3}, 
    2319   pages = {1--20} 
     2671  author =       { P. Marchesiello and J. Mc Williams and 
     2672                  A. Shchepetkin }, 
     2673  title =        {Open boundary conditions for long-term integrations 
     2674                  of Regional Oceanic Models}, 
     2675  journal =      OM, 
     2676  year =         2001, 
     2677  volume =       3, 
     2678  pages =        {1--20} 
    23202679} 
    23212680 
    23222681@ARTICLE{Marsaleix_al_OM08, 
    2323   author = {P. Marsaleix and F. Auclair and J. W. Floor and M. J. Herrmann and 
    2324    C. Estournel and I. Pairaud and C. Ulses}, 
    2325   title = {Energy conservation issues in sigma-coordinate free-surface ocean 
    2326    models}, 
    2327   journal = OM, 
    2328   year = {2008}, 
    2329   volume = {20},  number = {1}, 
    2330   pages = {61--89}, 
    2331   doi = {10.1016/j.ocemod.2007.07.005}, 
     2682  author =       {P. Marsaleix and F. Auclair and J. W. Floor and 
     2683                  M. J. Herrmann and C. Estournel and I. Pairaud and 
     2684                  C. Ulses}, 
     2685  title =        {Energy conservation issues in sigma-coordinate 
     2686                  free-surface ocean models}, 
     2687  journal =      OM, 
     2688  year =         2008, 
     2689  volume =       20, 
     2690  number =       1, 
     2691  pages =        {61--89}, 
     2692  doi =          {10.1016/j.ocemod.2007.07.005}, 
    23322693} 
    23332694 
    23342695@Article{Marsh_GMD2015, 
    2335 AUTHOR = {R. Marsh and V. O. Ivchenko and N. Skliris and S. Alderson and G. R. Bigg and G. Madec and A. T. Blaker and Y. Aksenov and B. Sinha and A. C. Coward and J. Le Sommer and N. Merino and V. B. Zalesny}, 
    2336 TITLE = {NEMO-ICB (v1.0): interactive icebergs in the NEMO ocean model globally configured at eddy-permitting resolution}, 
    2337 JOURNAL = {Geoscientific Model Development}, 
    2338 VOLUME = {8}, 
    2339 YEAR = {2015}, 
    2340 NUMBER = {5}, 
    2341 PAGES = {1547--1562}, 
    2342 DOI = {10.5194/gmd-8-1547-2015} 
     2696  AUTHOR =       {R. Marsh and V. O. Ivchenko and N. Skliris and 
     2697                  S. Alderson and G. R. Bigg and G. Madec and 
     2698                  A. T. Blaker and Y. Aksenov and B. Sinha and 
     2699                  A. C. Coward and J. Le Sommer and N. Merino and 
     2700                  V. B. Zalesny}, 
     2701  TITLE =        {NEMO-ICB (v1.0): interactive icebergs in the NEMO 
     2702                  ocean model globally configured at eddy-permitting 
     2703                  resolution}, 
     2704  JOURNAL =      {Geoscientific Model Development}, 
     2705  VOLUME =       8, 
     2706  YEAR =         2015, 
     2707  NUMBER =       5, 
     2708  PAGES =        {1547--1562}, 
     2709  DOI =          {10.5194/gmd-8-1547-2015} 
    23432710} 
    23442711 
    23452712@article{Martin_Adcroft_OM10, 
    2346 author = {T. Martin and A. Adcroft}, 
    2347 title = {Parameterizing the fresh-water flux from land ice to ocean with interactive icebergs in a coupled climate model}, 
    2348 journal = OM, 
    2349 year = {2010}, 
    2350 volume = {34}, number = {3--4}, 
    2351 pages = {111--124}, 
    2352 issn = {1463-5003}, 
    2353 doi = {10.1016/j.ocemod.2010.05.001}, 
     2713  author =       {T. Martin and A. Adcroft}, 
     2714  title =        {Parameterizing the fresh-water flux from land ice to 
     2715                  ocean with interactive icebergs in a coupled climate 
     2716                  model}, 
     2717  journal =      OM, 
     2718  year =         2010, 
     2719  volume =       34, 
     2720  number =       {3--4}, 
     2721  pages =        {111--124}, 
     2722  issn =         {1463-5003}, 
     2723  doi =          {10.1016/j.ocemod.2010.05.001}, 
    23542724} 
    23552725 
    23562726@BOOK{MIT-GCM_2004, 
    2357   title = {MIT-gcm User Manual}, 
    2358   year = {2004}, 
    2359   editor = {MIT Department of EAPS}, 
    2360   author = {J. Marshall and A. Adcroft and J.-M. Campin and P. Heimbach and A. 
    2361    Molod and S. Dutkiewicz and H. Hill and M. Losch and B. Fox-Kemper 
    2362    and D. Menemenlis and D. Ferreira and E. Hill and M. Follows and 
    2363    C. Hill and C. Evangelinos and G. Forget} 
    2364    } 
     2727  title =        {MIT-gcm User Manual}, 
     2728  year =         2004, 
     2729  editor =       {MIT Department of EAPS}, 
     2730  author =       {J. Marshall and A. Adcroft and J.-M. Campin and 
     2731                  P. Heimbach and A.  Molod and S. Dutkiewicz and 
     2732                  H. Hill and M. Losch and B. Fox-Kemper and 
     2733                  D. Menemenlis and D. Ferreira and E. Hill and 
     2734                  M. Follows and C. Hill and C. Evangelinos and 
     2735                  G. Forget} 
     2736} 
    23652737 
    23662738@PHDTHESIS{Marti_PhD92, 
    2367   author = {O. Marti}, 
    2368   title = {Etude de l'oc\'{e}an mondial : mod\'{e}lisation de la circulation 
    2369    et du transport de traceurs anthropog\'{e}niques}, 
    2370   school = {Universit\'{e} Pierre et Marie Curie, Paris, France, 201pp}, 
    2371   year = {1992} 
     2739  author =       {O. Marti}, 
     2740  title =        {Etude de l'oc\'{e}an mondial : mod\'{e}lisation de 
     2741                  la circulation et du transport de traceurs 
     2742                  anthropog\'{e}niques}, 
     2743  school =       {Universit\'{e} Pierre et Marie Curie, Paris, France, 
     2744                  201pp}, 
     2745  year =         1992 
    23722746} 
    23732747 
    23742748@ARTICLE{Marti_al_CD10, 
    2375   author = {O. Marti and P. Braconnot and J.-L. Dufresne and J. Bellier and R. 
    2376    Benshila and S. Bony and P. Brockmann and P. Cadule and A. Caubel 
    2377    and F Codron and S. Denvil and L. Fairhead and T. Fichefet and M.-A. 
    2378    Filiberti and M.-A. Foujols and P. Friedlingstein and H. Goosse and 
    2379    J.-Y. Grandpeix and E. Guilyardi and F. Hourdin and G. Krinner and 
    2380    C. L\'{e}vy and G. Madec and J. Mignot and I. Musat and D. Swingedouw 
    2381    and C. Talandier}, 
    2382   title = {Key features of the IPSL ocean atmosphere model and its sensitivity 
    2383    to atmospheric resolution}, 
    2384   journal = CD, 
    2385   year = {2010}, 
    2386   volume = {34},  number = {1}, 
    2387   pages = {1--26}, 
    2388   doi = {10.1007/s00382-009-0640-6}, 
     2749  author =       {O. Marti and P. Braconnot and J.-L. Dufresne and 
     2750                  J. Bellier and R.  Benshila and S. Bony and 
     2751                  P. Brockmann and P. Cadule and A. Caubel and F 
     2752                  Codron and S. Denvil and L. Fairhead and T. Fichefet 
     2753                  and M.-A.  Filiberti and M.-A. Foujols and 
     2754                  P. Friedlingstein and H. Goosse and J.-Y. Grandpeix 
     2755                  and E. Guilyardi and F. Hourdin and G. Krinner and 
     2756                  C. L\'{e}vy and G. Madec and J. Mignot and I. Musat 
     2757                  and D. Swingedouw and C. Talandier}, 
     2758  title =        {Key features of the IPSL ocean atmosphere model and 
     2759                  its sensitivity to atmospheric resolution}, 
     2760  journal =      CD, 
     2761  year =         2010, 
     2762  volume =       34, 
     2763  number =       1, 
     2764  pages =        {1--26}, 
     2765  doi =          {10.1007/s00382-009-0640-6}, 
    23892766} 
    23902767 
    23912768@ARTICLE{Marti_al_JGR92, 
    2392   author = {O. Marti and G. Madec and P. Delecluse}, 
    2393   title = {Comment on "Net diffusivity in ocean general circulation models with 
    2394    nonuniform grids" by F. L. Yin and I. Y. Fung}, 
    2395   journal = JGR, 
    2396   year = {1992}, 
    2397   volume = {97}, 
    2398   pages = {12,763--12,766} 
     2769  author =       {O. Marti and G. Madec and P. Delecluse}, 
     2770  title =        {Comment on "Net diffusivity in ocean general 
     2771                  circulation models with nonuniform grids" by 
     2772                  F. L. Yin and I. Y. Fung}, 
     2773  journal =      JGR, 
     2774  year =         1992, 
     2775  volume =       97, 
     2776  pages =        {12,763--12,766} 
    23992777} 
    24002778 
    24012779@INBOOK{Masson_al_Bk08, 
    2402   chapter = {OPA9 - French experiments on the Earth Simulator and Teraflop Workbench 
    2403    tunings}, 
    2404   pages = {25-34}, 
    2405   title = {In High Performance computing on Vector System 2007, Stuttgart, Germany}, 
    2406   publisher = {Springer-Verlag}, 
    2407   year = {2008}, 
    2408   editor = {Resch M, Roller S, Lammers P, Furui T, Galle M, Bez W}, 
    2409   author = {S. Masson and M.-A. Foujols and P. Klein and G. Madec and L. Hua and M. Levy  
    2410   and H. Sasaki and K. Takahashi and F. Svensson}, 
    2411   doi = {10.1007/978-3-540-74384-2}, 
     2780  chapter =      {OPA9 - French experiments on the Earth Simulator and 
     2781                  Teraflop Workbench tunings}, 
     2782  pages =        {25-34}, 
     2783  title =        {In High Performance computing on Vector System 2007, 
     2784                  Stuttgart, Germany}, 
     2785  publisher =    {Springer-Verlag}, 
     2786  year =         2008, 
     2787  editor =       {Resch M, Roller S, Lammers P, Furui T, Galle M, Bez 
     2788                  W}, 
     2789  author =       {S. Masson and M.-A. Foujols and P. Klein and 
     2790                  G. Madec and L. Hua and M. Levy and H. Sasaki and 
     2791                  K. Takahashi and F. Svensson}, 
     2792  doi =          {10.1007/978-3-540-74384-2}, 
    24122793} 
    24132794 
    24142795@ARTICLE{Masson_al_GRL05, 
    2415   author = {S. Masson and J.-J. Luo and G. Madec and J. Vialard and F. Durand 
    2416    and S. Gualdi and E. Guilyardi and S. Behera and P. Delecluse and 
    2417    A. Navarra and T. Yamagata}, 
    2418   title = {Impact of barrier layer on winter-spring variability of the South-Eastern 
    2419    Arabian Sea}, 
    2420   journal = GRL, 
    2421   year = {2005}, 
    2422   volume = {32}, 
    2423   pages = {L07703}, 
    2424   doi = {10.1029/2004GL021980}, 
    2425 } 
    2426  
    2427 @Article{Mathiot2017, 
    2428 AUTHOR = {Mathiot, P. and Jenkins, A. and Harris, C. and Madec, G.}, 
    2429 TITLE = {Explicit representation and parametrised impacts of under ice shelf seas in the ${z}^{\ast}$ coordinate ocean model NEMO 3.6}, 
    2430 JOURNAL = {Geoscientific Model Development}, 
    2431 VOLUME = {10}, 
    2432 YEAR = {2017}, 
    2433 NUMBER = {7}, 
    2434 PAGES = {2849--2874}, 
    2435 URL = {https://www.geosci-model-dev.net/10/2849/2017/}, 
    2436 DOI = {10.5194/gmd-10-2849-2017} 
     2796  author =       {S. Masson and J.-J. Luo and G. Madec and J. Vialard 
     2797                  and F. Durand and S. Gualdi and E. Guilyardi and 
     2798                  S. Behera and P. Delecluse and A. Navarra and 
     2799                  T. Yamagata}, 
     2800  title =        {Impact of barrier layer on winter-spring variability 
     2801                  of the South-Eastern Arabian Sea}, 
     2802  journal =      GRL, 
     2803  year =         2005, 
     2804  volume =       32, 
     2805  pages =        {L07703}, 
     2806  doi =          {10.1029/2004GL021980}, 
    24372807} 
    24382808 
    24392809@ARTICLE{McDougall1987, 
    2440   author = {T. J. McDougall}, 
    2441   title = {Neutral Surfaces}, 
    2442   journal = JPO, 
    2443   year = {1987}, 
    2444   volume = {17},  number = {11}, 
    2445   pages = {1950--1964}, 
     2810  author =       {T. J. McDougall}, 
     2811  title =        {Neutral Surfaces}, 
     2812  journal =      JPO, 
     2813  year =         1987, 
     2814  volume =       17, 
     2815  number =       11, 
     2816  pages =        {1950--1964}, 
    24462817} 
    24472818 
    24482819@ARTICLE{McDougall_Taylor_JMR84, 
    2449   author = {T. J. McDougall and J. R. Taylor}, 
    2450   title = {Flux measurements across a finger interface at low values of the stability ratio}, 
    2451   journal = JMR, 
    2452   year = {1984}, 
    2453   volume = {42}, 
    2454   pages = {1--14} 
     2820  author =       {T. J. McDougall and J. R. Taylor}, 
     2821  title =        {Flux measurements across a finger interface at low 
     2822                  values of the stability ratio}, 
     2823  journal =      JMR, 
     2824  year =         1984, 
     2825  volume =       42, 
     2826  pages =        {1--14} 
    24552827} 
    24562828 
    24572829@ARTICLE{Mellor_Blumberg_JPO04, 
    2458 author = {G. Mellor and A. Blumberg}, 
    2459 title = {Wave Breaking and Ocean Surface Layer Thermal Response}, 
    2460 journal = JPO, 
    2461 volume = {34}, number = {3}, 
    2462 pages = {693--698}, 
    2463 year = {2004}, 
    2464 doi = {10.1175/2517.1}, 
     2830  author =       {G. Mellor and A. Blumberg}, 
     2831  title =        {Wave Breaking and Ocean Surface Layer Thermal 
     2832                  Response}, 
     2833  journal =      JPO, 
     2834  volume =       34, 
     2835  number =       3, 
     2836  pages =        {693--698}, 
     2837  year =         2004, 
     2838  doi =          {10.1175/2517.1}, 
    24652839} 
    24662840 
    24672841@ARTICLE{Mellor_Yamada_1982, 
    2468   author = {G. L. Mellor and T. Yamada}, 
    2469   title = {Development of a turbulence closure model for geophysical fluid problems}, 
    2470   journal = RGSP, 
    2471   year = {1982}, 
    2472   volume = {20}, 
    2473   pages = {851--875} 
     2842  author =       {G. L. Mellor and T. Yamada}, 
     2843  title =        {Development of a turbulence closure model for 
     2844                  geophysical fluid problems}, 
     2845  journal =      RGSP, 
     2846  year =         1982, 
     2847  volume =       20, 
     2848  pages =        {851--875} 
    24742849} 
    24752850 
    24762851@ARTICLE{Menkes_al_JPO06, 
    2477   author = {C. Menkes and J. Vialard and S C. Kennan and J.-P. Boulanger and G. Madec}, 
    2478   title = {A modelling study of the three-dimensional heat budget of Tropical 
    2479     Instability Waves in the Equatorial Pacific}, 
    2480   journal = JPO, 
    2481   year = {2006}, 
    2482   volume = {36},  number = {5}, 
    2483   pages = {847--865} 
     2852  author =       {C. Menkes and J. Vialard and S C. Kennan and 
     2853                  J.-P. Boulanger and G. Madec}, 
     2854  title =        {A modelling study of the three-dimensional heat 
     2855                  budget of Tropical Instability Waves in the 
     2856                  Equatorial Pacific}, 
     2857  journal =      JPO, 
     2858  year =         2006, 
     2859  volume =       36, 
     2860  number =       5, 
     2861  pages =        {847--865} 
    24842862} 
    24852863 
    24862864@ARTICLE{Merryfield1999, 
    2487   author = {W. J. Merryfield and G. Holloway and A. E. Gargett}, 
    2488   title = {A Global Ocean Model with Double-Diffusive Mixing}, 
    2489   journal = JPO, 
    2490   year = {1999}, 
    2491   volume = {29},  number = {6}, 
    2492   pages = {1124--1142} 
     2865  author =       {W. J. Merryfield and G. Holloway and A. E. Gargett}, 
     2866  title =        {A Global Ocean Model with Double-Diffusive Mixing}, 
     2867  journal =      JPO, 
     2868  year =         1999, 
     2869  volume =       29, 
     2870  number =       6, 
     2871  pages =        {1124--1142} 
    24932872} 
    24942873 
    24952874@BOOK{Mesinger_Arakawa_Bk76, 
    2496   title = {Numerical methods used in Atmospheric models}, 
    2497   publisher = {GARP Publication Series No 17}, 
    2498   year = {1976}, 
    2499   author = {F. Mesinger and A. Arakawa} 
     2875  title =        {Numerical methods used in Atmospheric models}, 
     2876  publisher =    {GARP Publication Series No 17}, 
     2877  year =         1976, 
     2878  author =       {F. Mesinger and A. Arakawa} 
    25002879} 
    25012880 
    25022881@ARTICLE{Morel_JGR88, 
    2503   author = {A. Morel}, 
    2504   title = {Optical modeling of the upper ocean in relation to its biogenous matter content (Case I waters)}, 
    2505   journal = JGR, 
    2506   year = {1988}, 
    2507   volume = {93}, 
    2508   pages = {10,749--10,768} 
     2882  author =       {A. Morel}, 
     2883  title =        {Optical modeling of the upper ocean in relation to 
     2884                  its biogenous matter content (Case I waters)}, 
     2885  journal =      JGR, 
     2886  year =         1988, 
     2887  volume =       93, 
     2888  pages =        {10,749--10,768} 
    25092889} 
    25102890 
    25112891@ARTICLE{Morel_Berthon_LO89, 
    2512   author = {A. Morel and J.-F. Berthon}, 
    2513   title = {Surface pigments, algal biomass profiles, and potential production of the euphotic layer:  
    2514            Relationships reinvestigated in view of remote-sensing applications}, 
    2515   journal = {Limnol. Oceanogr.}, 
    2516   year = {1989}, 
    2517   volume = {34(8)}, 
    2518   pages = {1545--1562} 
     2892  author =       {A. Morel and J.-F. Berthon}, 
     2893  title =        {Surface pigments, algal biomass profiles, and 
     2894                  potential production of the euphotic layer: 
     2895                  Relationships reinvestigated in view of 
     2896                  remote-sensing applications}, 
     2897  journal =      {Limnol. Oceanogr.}, 
     2898  year =         1989, 
     2899  volume =       {34(8)}, 
     2900  pages =        {1545--1562} 
    25192901} 
    25202902 
    25212903@ARTICLE{Morel_Maritorena_JGR01, 
    2522   author = {A. Morel and S. Maritorena}, 
    2523   title = {Bio-optical properties of oceanic waters: a reappraisal}, 
    2524   journal = JGR, 
    2525   year = {2001}, 
    2526   volume = {106}, number = {C4}, 
    2527   pages = {7163--7180} 
     2904  author =       {A. Morel and S. Maritorena}, 
     2905  title =        {Bio-optical properties of oceanic waters: a 
     2906                  reappraisal}, 
     2907  journal =      JGR, 
     2908  year =         2001, 
     2909  volume =       106, 
     2910  number =       {C4}, 
     2911  pages =        {7163--7180} 
    25282912} 
    25292913 
    25302914@ARTICLE{Moun_al_JPO02, 
    2531   author = {J.N. Moum and D.R. Caldwell and J.D. Nash and G.D. Gunderson}, 
    2532   title = {Observations of boundary mixing over the continental slope}, 
    2533   journal = JPO, 
    2534   year = {2002}, 
    2535   volume = {32}, number = {7}, 
    2536   pages = {2113--2130} 
     2915  author =       {J.N. Moum and D.R. Caldwell and J.D. Nash and 
     2916                  G.D. Gunderson}, 
     2917  title =        {Observations of boundary mixing over the continental 
     2918                  slope}, 
     2919  journal =      JPO, 
     2920  year =         2002, 
     2921  volume =       32, 
     2922  number =       7, 
     2923  pages =        {2113--2130} 
    25372924} 
    25382925 
    25392926@ARTICLE{Murray_JCP96, 
    2540   author = {R. J. Murray}, 
    2541   title = {Explicit Generation of Orthogonal Grids for Ocean Models}, 
    2542   journal = JCP, 
    2543   year = {1996}, 
    2544   volume = {126},  number = {2}, 
    2545   pages = {251--273}, 
     2927  author =       {R. J. Murray}, 
     2928  title =        {Explicit Generation of Orthogonal Grids for Ocean 
     2929                  Models}, 
     2930  journal =      JCP, 
     2931  year =         1996, 
     2932  volume =       126, 
     2933  number =       2, 
     2934  pages =        {251--273}, 
    25462935} 
    25472936 
    25482937@ARTICLE{Oddo_al_OS09, 
    2549   author = {P. Oddo and M. Adani and N. Pinardi and C. Fratianni and M. Tonani and D. Pettenuzzo}, 
    2550   title = {A nested Atlantic-Mediterranean Sea general circulation model for operational forecasting}, 
    2551   journal = OS, 
    2552   year = {2009}, 
    2553   volume = {5}, 
    2554   pages = {1--13}, 
     2938  author =       {P. Oddo and M. Adani and N. Pinardi and C. Fratianni 
     2939                  and M. Tonani and D. Pettenuzzo}, 
     2940  title =        {A nested Atlantic-Mediterranean Sea general 
     2941                  circulation model for operational forecasting}, 
     2942  journal =      OS, 
     2943  year =         2009, 
     2944  volume =       5, 
     2945  pages =        {1--13}, 
    25552946} 
    25562947 
    25572948@PHDTHESIS{Olivier_PhD01, 
    2558   author = {F. Olivier}, 
    2559   title = {Etude de l'activit\'{e} biologique et de la circulation oc\'{e}anique 
    2560    dans un jet g\'{e}ostrophique: le front Alm\'{e}ria-Oran}, 
    2561   school = {Universit\'{e} Pierre et Marie Curie, Paris, France}, 
    2562   year = {2001} 
     2949  author =       {F. Olivier}, 
     2950  title =        {Etude de l'activit\'{e} biologique et de la 
     2951                  circulation oc\'{e}anique dans un jet 
     2952                  g\'{e}ostrophique: le front Alm\'{e}ria-Oran}, 
     2953  school =       {Universit\'{e} Pierre et Marie Curie, Paris, France}, 
     2954  year =         2001 
    25632955} 
    25642956 
    25652957@ARTICLE{Osborn_JPO80, 
    2566   author = {T.R. Osborn}, 
    2567   title = {Estimates of the local rate of vertical diffusion from dissipation measurements}, 
    2568   journal = JPO, 
    2569   year = {1980}, 
    2570   volume = {10}, 
    2571   pages = {83--89} 
     2958  author =       {T.R. Osborn}, 
     2959  title =        {Estimates of the local rate of vertical diffusion 
     2960                  from dissipation measurements}, 
     2961  journal =      JPO, 
     2962  year =         1980, 
     2963  volume =       10, 
     2964  pages =        {83--89} 
    25722965} 
    25732966 
    25742967@ARTICLE{Pacanowski_Philander_JPO81, 
    2575   author = {R.C. Pacanowski and S.G.H. Philander}, 
    2576   title = {Parameterization of Vertical Mixing in Numerical Models of Tropical Oceans}, 
    2577   journal = JPO, 
    2578   year = {1981}, 
    2579   volume = {11},  number = {11}, 
    2580   pages = {1443--1451} 
     2968  author =       {R.C. Pacanowski and S.G.H. Philander}, 
     2969  title =        {Parameterization of Vertical Mixing in Numerical 
     2970                  Models of Tropical Oceans}, 
     2971  journal =      JPO, 
     2972  year =         1981, 
     2973  volume =       11, 
     2974  number =       11, 
     2975  pages =        {1443--1451} 
    25812976} 
    25822977 
    25832978@ARTICLE{Pacanowski_Gnanadesikan_MWR98, 
    2584   author = {R. C. Pacanowski and A. Gnanadesikan}, 
    2585   title = {Transient response in a z-level ocean model that resolves topography with partial-cells}, 
    2586   journal = MWR, 
    2587   year = {1998}, 
    2588   volume = {126}, 
    2589   pages = {3248--3270} 
     2979  author =       {R. C. Pacanowski and A. Gnanadesikan}, 
     2980  title =        {Transient response in a z-level ocean model that 
     2981                  resolves topography with partial-cells}, 
     2982  journal =      MWR, 
     2983  year =         1998, 
     2984  volume =       126, 
     2985  pages =        {3248--3270} 
    25902986} 
    25912987 
    25922988@ARTICLE{Park_al_JC09, 
    2593   author = {W. Park and N. Keenlyside and M. Latif and A. Str\¨{o}h and R. Redler and E. Roeckner and G. Madec}, 
    2594   title = {Tropical Pacific Climate and its Response to Global Warming in the 
    2595    Kiel Climate Model}, 
    2596   journal = JC, 
    2597   year = {2009}, 
    2598   volume = {22},  number = {1}, 
    2599   pages = {71--92}, 
    2600   doi = {10.1175/2008JCLI2261.1}, 
     2989  author =       {W. Park and N. Keenlyside and M. Latif and 
     2990                  A. Str\¨{o}h and R. Redler and E. Roeckner and 
     2991                  G. Madec}, 
     2992  title =        {Tropical Pacific Climate and its Response to Global 
     2993                  Warming in the Kiel Climate Model}, 
     2994  journal =      JC, 
     2995  year =         2009, 
     2996  volume =       22, 
     2997  number =       1, 
     2998  pages =        {71--92}, 
     2999  doi =          {10.1175/2008JCLI2261.1}, 
    26013000} 
    26023001 
    26033002@ARTICLE{Paulson1977, 
    2604   author = {C. A. Paulson and J. J. Simpson}, 
    2605   title = {Irradiance Measurements in the Upper Ocean}, 
    2606   journal = JPO, 
    2607   year = {1977}, 
    2608   volume = {7},  number = {6}, 
    2609   pages = {952--956} 
     3003  author =       {C. A. Paulson and J. J. Simpson}, 
     3004  title =        {Irradiance Measurements in the Upper Ocean}, 
     3005  journal =      JPO, 
     3006  year =         1977, 
     3007  volume =       7, 
     3008  number =       6, 
     3009  pages =        {952--956} 
    26103010} 
    26113011 
    26123012@ARTICLE{Payne_JAS72, 
    2613   author = {R. E. Payne}, 
    2614   title = {Albedo of the Sea Surface}, 
    2615   journal = JAS, 
    2616   year = {1972}, 
    2617   volume = {29}, 
    2618   pages = {959--970} 
     3013  author =       {R. E. Payne}, 
     3014  title =        {Albedo of the Sea Surface}, 
     3015  journal =      JAS, 
     3016  year =         1972, 
     3017  volume =       29, 
     3018  pages =        {959--970} 
    26193019} 
    26203020 
    26213021@ARTICLE{Penduff_al_OM06, 
    2622   author = {T. Penduff and B. Barnier and J.-M. Molines and G. Madec}, 
    2623   title = {On the use of current meter data to assess the realism of ocean model simulations}, 
    2624   journal = OM, 
    2625   year = {2006}, 
    2626   volume = {11},  number = {3--4}, 
    2627   pages = {399--416} 
     3022  author =       {T. Penduff and B. Barnier and J.-M. Molines and 
     3023                  G. Madec}, 
     3024  title =        {On the use of current meter data to assess the 
     3025                  realism of ocean model simulations}, 
     3026  journal =      OM, 
     3027  year =         2006, 
     3028  volume =       11, 
     3029  number =       {3--4}, 
     3030  pages =        {399--416} 
    26283031} 
    26293032 
    26303033@ARTICLE{Penduff_al_JGR00, 
    2631   author = {T. Penduff and B. Barnier and A. Colin de Verdi\`{e}re}, 
    2632   title = {Self-adapting open boundaries for a regional model of the eastern North Atlantic}, 
    2633   journal = JGR, 
    2634   year = {2000}, 
    2635   volume = {105}, 
    2636   pages = {11,279--11,297} 
     3034  author =       {T. Penduff and B. Barnier and A. Colin de 
     3035                  Verdi\`{e}re}, 
     3036  title =        {Self-adapting open boundaries for a regional model 
     3037                  of the eastern North Atlantic}, 
     3038  journal =      JGR, 
     3039  year =         2000, 
     3040  volume =       105, 
     3041  pages =        {11,279--11,297} 
    26373042} 
    26383043 
    26393044@ARTICLE{Penduff_al_OS07, 
    2640   author = {T. Penduff and J. Le Sommer and B. Barnier and A.M. Treguier and J. Molines and G. Madec}, 
    2641   title = {Influence of numerical schemes on current-topography interactions 
    2642    in 1/4$^{\circ}$ global ocean simulations}, 
    2643   journal = OS, 
    2644   year = {2007}, 
    2645   volume = {3}, 
    2646   pages = {509--524} 
     3045  author =       {T. Penduff and J. Le Sommer and B. Barnier and 
     3046                  A.M. Treguier and J. Molines and G. Madec}, 
     3047  title =        {Influence of numerical schemes on current-topography 
     3048                  interactions in 1/4$^{\circ}$ global ocean 
     3049                  simulations}, 
     3050  journal =      OS, 
     3051  year =         2007, 
     3052  volume =       3, 
     3053  pages =        {509--524} 
    26473054} 
    26483055 
    26493056@ARTICLE{Phillips1959, 
    2650   author = {R. S. Phillips}, 
    2651   title = {Dissipative Operators and Hyperbolic Systems of Partial Differential Equations}, 
    2652   journal = {Transactions of the American Mathematical Society}, 
    2653   year = {1959}, 
    2654   volume = {90},  number = {2}, 
    2655   pages = {193--254}, 
    2656   doi = {10.2307/1993202}, 
     3057  author =       {R. S. Phillips}, 
     3058  title =        {Dissipative Operators and Hyperbolic Systems of 
     3059                  Partial Differential Equations}, 
     3060  journal =      {Transactions of the American Mathematical Society}, 
     3061  year =         1959, 
     3062  volume =       90, 
     3063  number =       2, 
     3064  pages =        {193--254}, 
     3065  doi =          {10.2307/1993202}, 
    26573066} 
    26583067 
    26593068@ARTICLE{Le_Quere_al_GBC00, 
    2660   author = {C. Le Qu\'{e}r\'{e} and J. C. Orr and P. Monfray and O. Aumont and G. Madec}, 
    2661   title = {Interannual variability of the global and regional sea-air flux of C02 from 1979 to 1993}, 
    2662   journal = GBC, 
    2663   year = {2000}, 
    2664   volume = {14}, 
    2665   pages = {1247--1266} 
     3069  author =       {C. Le Qu\'{e}r\'{e} and J. C. Orr and P. Monfray and 
     3070                  O. Aumont and G. Madec}, 
     3071  title =        {Interannual variability of the global and regional 
     3072                  sea-air flux of C02 from 1979 to 1993}, 
     3073  journal =      GBC, 
     3074  year =         2000, 
     3075  volume =       14, 
     3076  pages =        {1247--1266} 
    26663077} 
    26673078 
    26683079@ARTICLE{Raynaud_al_GRL00, 
    2669   author = {S. Raynaud and S. Speich and E. Guilyardi and G. Madec}, 
    2670   title = {Impact of the ocean lateral diffusion on the ENSO-like variability of a global coupled GCM}, 
    2671   journal = GRL, 
    2672   year = {2000}, 
    2673   volume = {27},  number = {19}, 
    2674   pages = {3041--3044} 
     3080  author =       {S. Raynaud and S. Speich and E. Guilyardi and 
     3081                  G. Madec}, 
     3082  title =        {Impact of the ocean lateral diffusion on the 
     3083                  ENSO-like variability of a global coupled GCM}, 
     3084  journal =      GRL, 
     3085  year =         2000, 
     3086  volume =       27, 
     3087  number =       19, 
     3088  pages =        {3041--3044} 
    26753089} 
    26763090 
    26773091@ARTICLE{Redi_JPO82, 
    2678   author = {M. H. Redi}, 
    2679   title = {Oceanic isopycnal mixing by coordinate rotation}, 
    2680   journal = JPO, 
    2681   year = {1982}, 
    2682   volume = {13}, 
    2683   pages = {1154--1158} 
     3092  author =       {M. H. Redi}, 
     3093  title =        {Oceanic isopycnal mixing by coordinate rotation}, 
     3094  journal =      JPO, 
     3095  year =         1982, 
     3096  volume =       13, 
     3097  pages =        {1154--1158} 
    26843098} 
    26853099 
    26863100@ARTICLE{Reed_JPO77, 
    2687   author = {R. K. Reed}, 
    2688   title = {On estimating insolation over the ocean}, 
    2689   journal = JPO, 
    2690   year = {1977}, 
    2691   volume = {1}, 
    2692   pages = {874--971} 
     3101  author =       {R. K. Reed}, 
     3102  title =        {On estimating insolation over the ocean}, 
     3103  journal =      JPO, 
     3104  year =         1977, 
     3105  volume =       1, 
     3106  pages =        {874--971} 
    26933107} 
    26943108 
    26953109@ARTICLE{Reverdin1991, 
    2696   author = {G. Reverdin and P. Delecluse and C. L\'{e}vy and P. Andrich and A. Morli\`{e}re and J. M. Verstraete}, 
    2697   title = {The near surface tropical Atlantic in 1982-1984 : results from a numerical simulation and a data analysis}, 
    2698   journal = PO, 
    2699   year = {1991}, 
    2700   volume = {27}, 
    2701   pages = {273--340} 
     3110  author =       {G. Reverdin and P. Delecluse and C. L\'{e}vy and 
     3111                  P. Andrich and A. Morli\`{e}re and J. M. Verstraete}, 
     3112  title =        {The near surface tropical Atlantic in 1982-1984 : 
     3113                  results from a numerical simulation and a data 
     3114                  analysis}, 
     3115  journal =      PO, 
     3116  year =         1991, 
     3117  volume =       27, 
     3118  pages =        {273--340} 
    27023119} 
    27033120 
    27043121@BOOK{Richtmyer1967, 
    2705   title = {Difference methods for initial-value problems}, 
    2706   publisher = {Interscience Publisher, Second Edition}, 
    2707   year = {1967}, 
    2708   author = {R. D. Richtmyer and K. W. Morton}, 
    2709   pages = {405pp} 
     3122  title =        {Difference methods for initial-value problems}, 
     3123  publisher =    {Interscience Publisher, Second Edition}, 
     3124  year =         1967, 
     3125  author =       {R. D. Richtmyer and K. W. Morton}, 
     3126  pages =        {405pp} 
    27103127} 
    27113128 
    27123129@ARTICLE{Robert_JMSJ66, 
    2713   author = {A. J. Robert}, 
    2714   title = {The integration of a Low order spectral form of the primitive meteorological equations}, 
    2715   journal = JMSJ, 
    2716   year = {1966}, 
    2717   volume = {44},  number = {2} 
     3130  author =       {A. J. Robert}, 
     3131  title =        {The integration of a Low order spectral form of the 
     3132                  primitive meteorological equations}, 
     3133  journal =      JMSJ, 
     3134  year =         1966, 
     3135  volume =       44, 
     3136  number =       2 
    27183137} 
    27193138 
    27203139@ARTICLE{Rodgers_al_GRL04, 
    2721   author = {K. Rodgers and O. Aumont and G. Madec and C. Menkes}, 
    2722   title = {Radiocarbon as a thermocline proxy for the eastern equatorial Pacific}, 
    2723   journal = GRL, 
    2724   year = {2004}, 
    2725   volume = {31}, 
    2726   pages = {L14314}, 
    2727   doi = {10.1029/2004GL019764}, 
     3140  author =       {K. Rodgers and O. Aumont and G. Madec and C. Menkes}, 
     3141  title =        {Radiocarbon as a thermocline proxy for the eastern 
     3142                  equatorial Pacific}, 
     3143  journal =      GRL, 
     3144  year =         2004, 
     3145  volume =       31, 
     3146  pages =        {L14314}, 
     3147  doi =          {10.1029/2004GL019764}, 
    27283148} 
    27293149 
    27303150@ARTICLE{Rodgers_al_GRL03, 
    2731   author = {K. Rodgers and B. Blanke and G. Madec and O. Aumont and P. Ciais and J.-C. Dutay}, 
    2732   title = {Extratropical sources of equatorial pacific upwelling in an OGCM}, 
    2733   journal = GRL, 
    2734   year = {2003}, 
    2735   volume = {30},  number = {2}, 
    2736   doi = {10.1029/2002GL016003}, 
     3151  author =       {K. Rodgers and B. Blanke and G. Madec and O. Aumont 
     3152                  and P. Ciais and J.-C. Dutay}, 
     3153  title =        {Extratropical sources of equatorial pacific 
     3154                  upwelling in an OGCM}, 
     3155  journal =      GRL, 
     3156  year =         2003, 
     3157  volume =       30, 
     3158  number =       2, 
     3159  doi =          {10.1029/2002GL016003}, 
    27373160} 
    27383161 
    27393162@Article{Rodgers_2014, 
    2740 AUTHOR = {Rodgers, K. B. and Aumont, O. and Mikaloff Fletcher, S. E. and Plancherel, Y. and Bopp, L. and de Boyer Mont\'egut, C. and Iudicone, D. and Keeling, R. F. and Madec, G. and Wanninkhof, R.}, 
    2741 TITLE = {Strong sensitivity of Southern Ocean carbon uptake and nutrient cycling to wind stirring}, 
    2742 JOURNAL = {Biogeosciences}, 
    2743 VOLUME = {11}, 
    2744 YEAR = {2014}, 
    2745 NUMBER = {15}, 
    2746 PAGES = {4077--4098}, 
    2747 DOI = {10.5194/bg-11-4077-2014} 
     3163  AUTHOR =       {Rodgers, K. B. and Aumont, O. and Mikaloff Fletcher, 
     3164                  S. E. and Plancherel, Y. and Bopp, L. and de Boyer 
     3165                  Mont\'egut, C. and Iudicone, D. and Keeling, 
     3166                  R. F. and Madec, G. and Wanninkhof, R.}, 
     3167  TITLE =        {Strong sensitivity of Southern Ocean carbon uptake 
     3168                  and nutrient cycling to wind stirring}, 
     3169  JOURNAL =      {Biogeosciences}, 
     3170  VOLUME =       11, 
     3171  YEAR =         2014, 
     3172  NUMBER =       15, 
     3173  PAGES =        {4077--4098}, 
     3174  DOI =          {10.5194/bg-11-4077-2014} 
    27483175} 
    27493176 
    27503177@ARTICLE{Rodi_1987, 
    2751   author = {W. Rodi}, 
    2752   title = {Examples of calculation methods for flow and mixing in stratified fluids}, 
    2753   journal = JGR, 
    2754   year = {1987}, 
    2755   volume = {92},  number = {C5}, 
    2756   pages = {5305--5328} 
     3178  author =       {W. Rodi}, 
     3179  title =        {Examples of calculation methods for flow and mixing 
     3180                  in stratified fluids}, 
     3181  journal =      JGR, 
     3182  year =         1987, 
     3183  volume =       92, 
     3184  number =       {C5}, 
     3185  pages =        {5305--5328} 
    27573186} 
    27583187 
    27593188@INCOLLECTION{Roed1986, 
    2760   author = {L.P. Roed and C.K. Cooper}, 
    2761   title = {Open boundary conditions in numerical ocean models}, 
    2762   booktitle = {Advanced Physical Oceanography Numerical Modelling}, 
    2763   publisher = { NATO ASI Series, vol. 186.}, 
    2764   year = {1986}, 
    2765   editor = {J.J. O'Brien} 
     3189  author =       {L.P. Roed and C.K. Cooper}, 
     3190  title =        {Open boundary conditions in numerical ocean models}, 
     3191  booktitle =    {Advanced Physical Oceanography Numerical Modelling}, 
     3192  publisher =    { NATO ASI Series, vol. 186.}, 
     3193  year =         1986, 
     3194  editor =       {J.J. O'Brien} 
    27663195} 
    27673196 
    27683197@article{Roquet_OM2015, 
    2769 author = "F. Roquet and G. Madec and T.J. McDougall and P.M. Barker", 
    2770 title = "Accurate polynomial expressions for the density and specific volume of seawater using the TEOS-10 standard ", 
    2771 journal = OM, 
    2772 volume = "90", 
    2773 pages = "29--43", 
    2774 year = "2015", 
    2775 issn = "1463-5003", 
    2776 doi = "10.1016/j.ocemod.2015.04.002", 
     3198  author =       "F. Roquet and G. Madec and T.J. McDougall and 
     3199                  P.M. Barker", 
     3200  title =        "Accurate polynomial expressions for the density and 
     3201                  specific volume of seawater using the TEOS-10 
     3202                  standard ", 
     3203  journal =      OM, 
     3204  volume =       90, 
     3205  pages =        "29--43", 
     3206  year =         2015, 
     3207  issn =         "1463-5003", 
     3208  doi =          "10.1016/j.ocemod.2015.04.002", 
    27773209} 
    27783210 
    27793211@article{Roquet_JPO2015, 
    2780 author = "F. Roquet and G. Madec and L. Brodeau and J. Nycander", 
    2781 title = "Defining a Simplified Yet Realistic Equation of State for Seawater", 
    2782 journal = JPO, 
    2783 volume = "45", 
    2784 pages = "2564--2579", 
    2785 year = "2015", 
    2786 doi = "10.1175/JPO-D-15-0080.1", 
     3212  author =       "F. Roquet and G. Madec and L. Brodeau and 
     3213                  J. Nycander", 
     3214  title =        "Defining a Simplified Yet Realistic Equation of 
     3215                  State for Seawater", 
     3216  journal =      JPO, 
     3217  volume =       45, 
     3218  pages =        "2564--2579", 
     3219  year =         2015, 
     3220  doi =          "10.1175/JPO-D-15-0080.1", 
    27873221} 
    27883222 
    27893223@ARTICLE{Roullet_Madec_JGR00, 
    2790   author = {G. Roullet and G. Madec}, 
    2791   title = {salt conservation, free surface, and varying levels: a new formulation 
    2792    for ocean general circulation models}, 
    2793   journal = JGR, 
    2794   year = {2000}, 
    2795   volume = {105}, 
    2796   pages = {23,927--23,942} 
     3224  author =       {G. Roullet and G. Madec}, 
     3225  title =        {salt conservation, free surface, and varying levels: 
     3226                  a new formulation for ocean general circulation 
     3227                  models}, 
     3228  journal =      JGR, 
     3229  year =         2000, 
     3230  volume =       105, 
     3231  pages =        {23,927--23,942} 
    27973232} 
    27983233 
    27993234@ARTICLE{Rousset_GMD2015, 
    2800   author = {C. Rousset and M. Vancoppenolle and G. Madec and T. Fichefet and S. Flavoni  
    2801             and A. Barth\'{e}lemy and R. Benshila and J. Chanut and C. L\'{e}vy and S. Masson and F. Vivier }, 
    2802   title  = {The Louvain-La-Neuve sea-ice model LIM3.6: Global and regional capabilities}, 
    2803   journal= {Geoscientific Model Development}, 
    2804   year = {2015}, 
    2805   volume = {8}, pages={2991--3005}, 
    2806   doi = {10.5194/gmd-8-2991-2015}, 
     3235  author =       {C. Rousset and M. Vancoppenolle and G. Madec and 
     3236                  T. Fichefet and S. Flavoni and A. Barth\'{e}lemy and 
     3237                  R. Benshila and J. Chanut and C. L\'{e}vy and 
     3238                  S. Masson and F. Vivier }, 
     3239  title =        {The Louvain-La-Neuve sea-ice model LIM3.6: Global 
     3240                  and regional capabilities}, 
     3241  journal =      {Geoscientific Model Development}, 
     3242  year =         2015, 
     3243  volume =       8, 
     3244  pages =        {2991--3005}, 
     3245  doi =          {10.5194/gmd-8-2991-2015}, 
    28073246} 
    28083247 
    28093248@ARTICLE{Sadourny1975, 
    2810   author = {R. Sadourny}, 
    2811   title = {The Dynamics of Finite-Difference Models of the Shallow-Water Equations}, 
    2812   journal = JAS, 
    2813   year = {1975}, 
    2814   volume = {32},  number = {4}, 
    2815   pages = {680--689}, 
     3249  author =       {R. Sadourny}, 
     3250  title =        {The Dynamics of Finite-Difference Models of the 
     3251                  Shallow-Water Equations}, 
     3252  journal =      JAS, 
     3253  year =         1975, 
     3254  volume =       32, 
     3255  number =       4, 
     3256  pages =        {680--689}, 
    28163257} 
    28173258 
    28183259@ARTICLE{Sarmiento1982, 
    2819   author = {J. L. Sarmiento and K. Bryan}, 
    2820   title = {Ocean transport model for the North Atlantic}, 
    2821   journal = JGR, 
    2822   year = {1982}, 
    2823   volume = {87}, 
    2824   pages = {394--409} 
     3260  author =       {J. L. Sarmiento and K. Bryan}, 
     3261  title =        {Ocean transport model for the North Atlantic}, 
     3262  journal =      JGR, 
     3263  year =         1982, 
     3264  volume =       87, 
     3265  pages =        {394--409} 
    28253266} 
    28263267 
    28273268@ARTICLE{Saunders_JAS82, 
    2828   author={P. M. Saunders}, 
    2829   title={{The Temperature at the Ocean-air Interface}}, 
    2830   journal=JAS, 
    2831   year={1967}, 
    2832   volume={24}, 
    2833   pages={269-273}, 
    2834   doi = {10.1175/1520-0469(1967)024<0269:TTATOA>2.0.CO;2}, 
     3269  author =       {P. M. Saunders}, 
     3270  title =        {{The Temperature at the Ocean-air Interface}}, 
     3271  journal =      JAS, 
     3272  year =         1967, 
     3273  volume =       24, 
     3274  pages =        {269-273}, 
     3275  doi =          {10.1175/1520-0469(1967)024<0269:TTATOA>2.0.CO;2}, 
    28353276} 
    28363277 
    28373278@BOOK{Shchepetkin_McWilliams_Bk08, 
    2838   author = {A. F. Shchepetkin and J. C. McWilliams}, 
    2839   title = {Handbook of Numerical Analysis, Vol. XIV: Computational Methods for the Ocean and the Atmosphere, pp 121-183}, 
    2840   publisher = {P. G. Ciarlet, editor, R. Temam and J. Tribbia, guest eds., Elsevier Science}, 
    2841   year = {2008}, 
    2842   pages = {784} 
     3279  author =       {A. F. Shchepetkin and J. C. McWilliams}, 
     3280  title =        {Handbook of Numerical Analysis, Vol. XIV: 
     3281                  Computational Methods for the Ocean and the 
     3282                  Atmosphere, pp 121-183}, 
     3283  publisher =    {P. G. Ciarlet, editor, R. Temam and J. Tribbia, 
     3284                  guest eds., Elsevier Science}, 
     3285  year =         2008, 
     3286  pages =        784 
    28433287} 
    28443288 
    28453289@ARTICLE{Shchepetkin_McWilliams_OM05, 
    2846   author = {A. F. Shchepetkin and J. C. McWilliams}, 
    2847   title = {The regional oceanic modeling system (ROMS) - a split-explicit, free-surface, 
    2848    topography-following-coordinate oceanic modelr}, 
    2849   journal = OM, 
    2850   year = {2005}, 
    2851   volume = {9},  number = {4}, 
    2852   pages = {347--404} 
     3290  author =       {A. F. Shchepetkin and J. C. McWilliams}, 
     3291  title =        {The regional oceanic modeling system (ROMS) - a 
     3292                  split-explicit, free-surface, 
     3293                  topography-following-coordinate oceanic modelr}, 
     3294  journal =      OM, 
     3295  year =         2005, 
     3296  volume =       9, 
     3297  number =       4, 
     3298  pages =        {347--404} 
    28533299} 
    28543300 
    28553301@ARTICLE{Sacha2003, 
    2856   author = {A. F. Shchepetkin and J. C. McWilliams}, 
    2857   title = {A method for computing horizontal pressure-gradient force in an oceanic 
    2858    model with a nonaligned vertical coordinate}, 
    2859   journal = JGR, 
    2860   year = {2003}, 
    2861   volume = {108},  number = {C3}, 
    2862   pages = {3090}, 
    2863   doi = {10.1029/2001JC001047}, 
     3302  author =       {A. F. Shchepetkin and J. C. McWilliams}, 
     3303  title =        {A method for computing horizontal pressure-gradient 
     3304                  force in an oceanic model with a nonaligned vertical 
     3305                  coordinate}, 
     3306  journal =      JGR, 
     3307  year =         2003, 
     3308  volume =       108, 
     3309  number =       {C3}, 
     3310  pages =        3090, 
     3311  doi =          {10.1029/2001JC001047}, 
    28643312} 
    28653313 
    28663314@ARTICLE{Shchepetkin1996, 
    2867   author = {A. F. Shchepetkin and J. J. O'Brien}, 
    2868   title = {A Physically Consistent Formulation of Lateral Friction in Shallow-Water Equation Ocean Models}, 
    2869   journal = MWR, 
    2870   year = {1996}, 
    2871   volume = {124},  number = {6}, 
    2872   pages = {1285--1300} 
     3315  author =       {A. F. Shchepetkin and J. J. O'Brien}, 
     3316  title =        {A Physically Consistent Formulation of Lateral 
     3317                  Friction in Shallow-Water Equation Ocean Models}, 
     3318  journal =      MWR, 
     3319  year =         1996, 
     3320  volume =       124, 
     3321  number =       6, 
     3322  pages =        {1285--1300} 
    28733323} 
    28743324 
    28753325@ARTICLE{Siddorn_Furner_OM12, 
    2876   author = {J. Siddorn and R. Furner}, 
    2877   title = {An analytical stretching function that combines the best attributes of geopotential and terrain-following vertical coordinates}, 
    2878   journal = OM, 
    2879   year = {2012}, 
    2880   pages = {submitted}, 
     3326  author =       {J. Siddorn and R. Furner}, 
     3327  title =        {An analytical stretching function that combines the 
     3328                  best attributes of geopotential and 
     3329                  terrain-following vertical coordinates}, 
     3330  journal =      OM, 
     3331  year =         2012, 
     3332  pages =        {submitted}, 
    28813333} 
    28823334 
    28833335@ARTICLE{Simmons_al_OM04, 
    2884   author = {H. L. Simmons and S. R. Jayne and L. C. {St. Laurent} and A. J. Weaver}, 
    2885   title = {Tidally driven mixing in a numerical model of the ocean general circulation}, 
    2886   journal = OM, 
    2887   year = {2004}, 
    2888   pages = {245--263}, 
     3336  author =       {H. L. Simmons and S. R. Jayne and 
     3337                  L. C. {St. Laurent} and A. J. Weaver}, 
     3338  title =        {Tidally driven mixing in a numerical model of the 
     3339                  ocean general circulation}, 
     3340  journal =      OM, 
     3341  year =         2004, 
     3342  pages =        {245--263}, 
    28893343} 
    28903344 
    28913345@INBOOK{Smagorinsky_93, 
    2892   author = {Smagorinsky, J.}, 
    2893   chapter = {Some historical remarks on the use of non-linear viscosities}, 
    2894   title = {Large Eddy Simulation of Complex Engineering and Geophysical Flows}, 
    2895   pages = {3--36}, 
    2896   year = {1993}, 
    2897   publisher = {Cambridge University Press, B. Galperin and S. A. Orszag (eds.)}, 
     3346  author =       {Smagorinsky, J.}, 
     3347  chapter =      {Some historical remarks on the use of non-linear 
     3348                  viscosities}, 
     3349  title =        {Large Eddy Simulation of Complex Engineering and 
     3350                  Geophysical Flows}, 
     3351  pages =        {3--36}, 
     3352  year =         1993, 
     3353  publisher =    {Cambridge University Press, B. Galperin and 
     3354                  S. A. Orszag (eds.)}, 
    28983355} 
    28993356 
    29003357@ARTICLE{Song_Haidvogel_JCP94, 
    2901   author = {Y. Song and D. Haidvogel}, 
    2902   title = {A semi-implicit ocean circulation model using a generalized topography-following coordinate system}, 
    2903   journal = JCP, 
    2904   year = {1994}, 
    2905   volume = {115},  number = {1}, 
    2906   pages = {228--244} 
     3358  author =       {Y. Song and D. Haidvogel}, 
     3359  title =        {A semi-implicit ocean circulation model using a 
     3360                  generalized topography-following coordinate system}, 
     3361  journal =      JCP, 
     3362  year =         1994, 
     3363  volume =       115, 
     3364  number =       1, 
     3365  pages =        {228--244} 
    29073366} 
    29083367 
    29093368@ARTICLE{Song1998, 
    2910   author = {Y. T. Song}, 
    2911   title = {A General Pressure Gradient Formulation for Ocean Models. Part I: Scheme Design and Diagnostic Analysis}, 
    2912   journal = MWR, 
    2913   year = {1998}, 
    2914   volume = {126},  number = {12}, 
    2915   pages = {3213--3230} 
     3369  author =       {Y. T. Song}, 
     3370  title =        {A General Pressure Gradient Formulation for Ocean 
     3371                  Models. Part I: Scheme Design and Diagnostic 
     3372                  Analysis}, 
     3373  journal =      MWR, 
     3374  year =         1998, 
     3375  volume =       126, 
     3376  number =       12, 
     3377  pages =        {3213--3230} 
    29163378} 
    29173379 
    29183380@ARTICLE{SongWright1998, 
    2919   author = {Y. T. Song and D. G. Wright}, 
    2920   title = {A General Pressure Gradient Formulation for Ocean Models.  
    2921     Part II: Energy, Momentum, and Bottom Torque Consistency}, 
    2922   journal = MWR, 
    2923   year = {1998}, 
    2924   volume = {126},  number = {12}, 
    2925   pages = {3231--3247} 
     3381  author =       {Y. T. Song and D. G. Wright}, 
     3382  title =        {A General Pressure Gradient Formulation for Ocean 
     3383                  Models.  Part II: Energy, Momentum, and Bottom 
     3384                  Torque Consistency}, 
     3385  journal =      MWR, 
     3386  year =         1998, 
     3387  volume =       126, 
     3388  number =       12, 
     3389  pages =        {3231--3247} 
    29263390} 
    29273391 
    29283392@ARTICLE{Speer_al_Tel00, 
    2929   author = {K. Speer and E. Guilyardi and G. Madec}, 
    2930   title = {Southern Ocean transformation in a coupled model with and without eddy mass fluxes}, 
    2931   journal = {Tellus}, 
    2932   year = {2000}, 
    2933   volume = {52A},  number = {5}, 
    2934   pages = {554--565} 
     3393  author =       {K. Speer and E. Guilyardi and G. Madec}, 
     3394  title =        {Southern Ocean transformation in a coupled model 
     3395                  with and without eddy mass fluxes}, 
     3396  journal =      {Tellus}, 
     3397  year =         2000, 
     3398  volume =       {52A}, 
     3399  number =       5, 
     3400  pages =        {554--565} 
    29353401} 
    29363402 
    29373403@PHDTHESIS{Speich_PhD92, 
    2938   author = {S. Speich}, 
    2939   title = {Etude du for\c{c}age de la circulation g\'{e}n\'{e}rale oc\'{e}anique 
    2940    par les d\'{e}troits - cas de la mer d'Alboran}, 
    2941   school = {Universit\'{e} Pierre et Marie Curie, Paris, France}, 
    2942   year = {1992} 
     3404  author =       {S. Speich}, 
     3405  title =        {Etude du for\c{c}age de la circulation 
     3406                  g\'{e}n\'{e}rale oc\'{e}anique par les d\'{e}troits 
     3407                  - cas de la mer d'Alboran}, 
     3408  school =       {Universit\'{e} Pierre et Marie Curie, Paris, France}, 
     3409  year =         1992 
    29433410} 
    29443411 
    29453412@ARTICLE{Speich_al_GRL01, 
    2946   author = {S. Speich and B. Blanke and G. Madec}, 
    2947   title = {Warm and cold water paths of an OGCM thermohaline conveyor belt}, 
    2948   journal = GRL, 
    2949   year = {2001}, 
    2950   volume = {28},  number = {2}, 
    2951   pages = {311--314} 
     3413  author =       {S. Speich and B. Blanke and G. Madec}, 
     3414  title =        {Warm and cold water paths of an OGCM thermohaline 
     3415                  conveyor belt}, 
     3416  journal =      GRL, 
     3417  year =         2001, 
     3418  volume =       28, 
     3419  number =       2, 
     3420  pages =        {311--314} 
    29523421} 
    29533422 
    29543423@ARTICLE{Speich_al_JPO96, 
    2955   author = {S. Speich and G. Madec and M. Cr\'{e}pon}, 
    2956   title = {The circulation in the Alboran Sea - a sensitivity study}, 
    2957   journal = JPO, 
    2958   year = {1996}, 
    2959   volume = {26},  number = {3}, 
    2960   pages = {320--340} 
     3424  author =       {S. Speich and G. Madec and M. Cr\'{e}pon}, 
     3425  title =        {The circulation in the Alboran Sea - a sensitivity 
     3426                  study}, 
     3427  journal =      JPO, 
     3428  year =         1996, 
     3429  volume =       26, 
     3430  number =       3, 
     3431  pages =        {320--340} 
    29613432} 
    29623433 
    29633434@ARTICLE{St_Laurent_Garrett_JPO02, 
    2964   author = {L.C. {St. Laurent} and C. Garrett}, 
    2965   title = {The role of internal tides in mixing the deep ocean}, 
    2966   journal = JPO, 
    2967   pages = {2882--2899} 
     3435  author =       {L.C. {St. Laurent} and C. Garrett}, 
     3436  title =        {The role of internal tides in mixing the deep ocean}, 
     3437  journal =      JPO, 
     3438  pages =        {2882--2899} 
    29683439} 
    29693440 
    29703441@ARTICLE{St_Laurent_Nash_DSR04, 
    2971   author = {L.C. {St. Laurent} and J. D. Nash}, 
    2972   title = {An examination of the radiative and dissipative properties of deep ocean internal tides}, 
    2973   journal = DSR, 
    2974   year = {2004}, 
    2975   volume = {II},  number = {51}, 
    2976   pages = {3029--3042}, 
    2977   doi = {10.1016/j.dsr2.2004.09.008}, 
     3442  author =       {L.C. {St. Laurent} and J. D. Nash}, 
     3443  title =        {An examination of the radiative and dissipative 
     3444                  properties of deep ocean internal tides}, 
     3445  journal =      DSR, 
     3446  year =         2004, 
     3447  volume =       {II}, 
     3448  number =       51, 
     3449  pages =        {3029--3042}, 
     3450  doi =          {10.1016/j.dsr2.2004.09.008}, 
    29783451} 
    29793452 
    29803453@ARTICLE{St_Laurent_al_GRL02, 
    2981   author = {L.C. {St. Laurent} and H.L. Simmons and S.R. Jayne}, 
    2982   title = {Estimating tidally driven mixing in the deep ocean}, 
    2983   journal = GRL, 
    2984   year = {2002}, 
    2985   volume = {29}, 
    2986   pages = {2106}, 
    2987   doi = {10.1029/2002GL015633}, 
     3454  author =       {L.C. {St. Laurent} and H.L. Simmons and S.R. Jayne}, 
     3455  title =        {Estimating tidally driven mixing in the deep ocean}, 
     3456  journal =      GRL, 
     3457  year =         2002, 
     3458  volume =       29, 
     3459  pages =        2106, 
     3460  doi =          {10.1029/2002GL015633}, 
    29883461} 
    29893462 
    29903463@ARTICLE{Stacey_JPO99, 
    2991   author = {M. W. Stacey}, 
    2992   title = {Simulations of the wind-forced near-surface circulation in Knight Inlet:  
    2993              A parameterization of the roughness length}, 
    2994   journal = JPO, 
    2995   year = {1999}, 
    2996   volume = {29}, 
    2997   pages = {1363--1367}, 
     3464  author =       {M. W. Stacey}, 
     3465  title =        {Simulations of the wind-forced near-surface 
     3466                  circulation in Knight Inlet: A parameterization of 
     3467                  the roughness length}, 
     3468  journal =      JPO, 
     3469  year =         1999, 
     3470  volume =       29, 
     3471  pages =        {1363--1367}, 
    29983472} 
    29993473 
    30003474@ARTICLE{Steele2001, 
    3001   author = {M. Steele and R. Morley and W. Ermold}, 
    3002   title = {PHC- A Global Ocean Hydrography with a High-Quality Arctic Ocean}, 
    3003   journal = JC, 
    3004   year = {2001}, 
    3005   volume = {14},  number = {9}, 
    3006   pages = {2079--2087}, 
     3475  author =       {M. Steele and R. Morley and W. Ermold}, 
     3476  title =        {PHC- A Global Ocean Hydrography with a High-Quality 
     3477                  Arctic Ocean}, 
     3478  journal =      JC, 
     3479  year =         2001, 
     3480  volume =       14, 
     3481  number =       9, 
     3482  pages =        {2079--2087}, 
    30073483} 
    30083484 
    30093485@ARTICLE{Stein_Stein_Nat92, 
    3010   author = {C. A. Stein and S. Stein}, 
    3011   title = {A model for the global variation in oceanic depth and heat flow with lithospheric age}, 
    3012   journal = {Nature}, 
    3013   year = {1992}, 
    3014   volume = {359}, 
    3015   pages = {123--129} 
     3486  author =       {C. A. Stein and S. Stein}, 
     3487  title =        {A model for the global variation in oceanic depth 
     3488                  and heat flow with lithospheric age}, 
     3489  journal =      {Nature}, 
     3490  year =         1992, 
     3491  volume =       359, 
     3492  pages =        {123--129} 
    30163493} 
    30173494 
    30183495@INCOLLECTION{Stokes_1847, 
    3019   author    = {G.G. Stokes}, 
    3020   title     = {On the theory of oscillatory waves}, 
    3021   booktitle = {Transactions of the Cambridge Philosophy Society}, 
    3022   year      = {1847}, 
    3023   volume    = {8}, 
    3024   Pages     = {441--455} 
     3496  author =      {G.G. Stokes}, 
     3497  title =        {On the theory of oscillatory waves}, 
     3498  booktitle =    {Transactions of the Cambridge Philosophy Society}, 
     3499  year =         1847, 
     3500  volume =       8, 
     3501  Pages =        {441--455} 
    30253502} 
    30263503 
    30273504@ARTICLE{Takaya_al_JGR10, 
    3028   author = {Y. Takaya and J-R. Bidlot and A. C. M. Beljaars and  
     3505  author =       {Y. Takaya and J-R. Bidlot and A. C. M. Beljaars and 
    30293506                  P. A. E. M. Janssen}, 
    3030   title = {Refinements to a prognostic scheme of sea surface skin temperature}, 
    3031   journal = JGR, 
    3032   year   =   {2010}, 
    3033   Volume =   {115}, 
    3034   Pages  =   {C06009}, 
    3035   doi    = {10.1029/2009JC005985}, 
     3507  title =        {Refinements to a prognostic scheme of sea surface 
     3508                  skin temperature}, 
     3509  journal =      JGR, 
     3510  year =         2010, 
     3511  Volume =       115, 
     3512  Pages =        {C06009}, 
     3513  doi =          {10.1029/2009JC005985}, 
    30363514} 
    30373515 
    30383516@ARTICLE{Talagrand_JAS72, 
    3039   author = {O. Talagrand}, 
    3040   title = {On the damping of high-frequency motions in four-dimensional  
    3041            assimilation of meteorological data}, 
    3042   journal = JAS, 
    3043   year = {1972}, 
    3044   volume = {29}, 
    3045   pages = {1571-1574} 
     3517  author =       {O. Talagrand}, 
     3518  title =        {On the damping of high-frequency motions in 
     3519                  four-dimensional assimilation of meteorological 
     3520                  data}, 
     3521  journal =      JAS, 
     3522  year =         1972, 
     3523  volume =       29, 
     3524  pages =        {1571-1574} 
    30463525} 
    30473526 
    30483527@ARTICLE{Thiem_Berntsen_OM06, 
    3049   author = {O. Thiem and J. Berntsen}, 
    3050   title = {Internal pressure errors in sigma-coordinate ocean models due to anisotropy}, 
    3051   journal = OM, 
    3052   year = {2006}, 
    3053   volume = {12},  number = {1-2}, 
     3528  author =       {O. Thiem and J. Berntsen}, 
     3529  title =        {Internal pressure errors in sigma-coordinate ocean 
     3530                  models due to anisotropy}, 
     3531  journal =      OM, 
     3532  year =         2006, 
     3533  volume =       12, 
     3534  number =       {1-2}, 
    30543535} 
    30553536 
    30563537@ARTICLE{Timmermann_al_OM05, 
    3057   author = {R. Timmermann and H. Goosse and G. Madec and T. Fichefet and C. \'{E}the and V. Duli\`{e}re}, 
    3058   title = {On the representation of high latitude processes in the ORCA-LIM global coupled sea ice-ocean model}, 
    3059   journal = OM, 
    3060   year = {2005}, 
    3061   volume = {8}, 
    3062   pages = {175--201} 
     3538  author =       {R. Timmermann and H. Goosse and G. Madec and 
     3539                  T. Fichefet and C. \'{E}the and V. Duli\`{e}re}, 
     3540  title =        {On the representation of high latitude processes in 
     3541                  the ORCA-LIM global coupled sea ice-ocean model}, 
     3542  journal =      OM, 
     3543  year =         2005, 
     3544  volume =       8, 
     3545  pages =        {175--201} 
    30633546} 
    30643547 
    30653548@ARTICLE{Tonani_al_OS08, 
    3066   author = {M. Tonani and N. Pinardi and S. Dobricic and I. Pujol and C. Fratianni}, 
    3067   title = {A high-resolution free-surface model of the Mediterranean Sea}, 
    3068   journal = OS, 
    3069   year = {2008}, 
    3070   volume = {4}, 
    3071   pages = {1--14} 
     3549  author =       {M. Tonani and N. Pinardi and S. Dobricic and 
     3550                  I. Pujol and C. Fratianni}, 
     3551  title =        {A high-resolution free-surface model of the 
     3552                  Mediterranean Sea}, 
     3553  journal =      OS, 
     3554  year =         2008, 
     3555  volume =       4, 
     3556  pages =        {1--14} 
    30723557} 
    30733558 
    30743559@ARTICLE{Treguier_JGR92, 
    3075   author = {A.M. Tr\'{e}guier}, 
    3076   title = {Kinetic energy analysis of an eddy resolving, primitive equation North Atlantic model}, 
    3077   journal = JGR, 
    3078   year = {1992}, 
    3079   volume = {97}, 
    3080   pages = {687--701} 
     3560  author =       {A.M. Tr\'{e}guier}, 
     3561  title =        {Kinetic energy analysis of an eddy resolving, 
     3562                  primitive equation North Atlantic model}, 
     3563  journal =      JGR, 
     3564  year =         1992, 
     3565  volume =       97, 
     3566  pages =        {687--701} 
    30813567} 
    30823568 
    30833569@ARTICLE{Treguier_al_JGR01, 
    3084   author = {A.M. Tr\'{e}guier and B. Barnier and A.P. de Miranda and J.M. Molines 
    3085     and N. Grima and M. Imbard and G. Madec and C. Messager and T. Reynaud and S. Michel}, 
    3086   title = {An Eddy Permitting model of the Atlantic circulation: evaluating open boundary conditions}, 
    3087   journal = JGR, 
    3088   year = {2001}, 
    3089   volume = {106}, 
    3090   pages = {22,115--22,129} 
     3570  author =       {A.M. Tr\'{e}guier and B. Barnier and A.P. de Miranda 
     3571                  and J.M. Molines and N. Grima and M. Imbard and 
     3572                  G. Madec and C. Messager and T. Reynaud and 
     3573                  S. Michel}, 
     3574  title =        {An Eddy Permitting model of the Atlantic 
     3575                  circulation: evaluating open boundary conditions}, 
     3576  journal =      JGR, 
     3577  year =         2001, 
     3578  volume =       106, 
     3579  pages =        {22,115--22,129} 
    30913580} 
    30923581 
    30933582@ARTICLE{Treguier_al_DSR03, 
    3094   author = {A.-M. Tr\'{e}guier and O. Boedel and B. Barnier and G. Madec}, 
    3095   title = {Agulhas eddy fluxes in a 1/6^o Atlantic model}, 
    3096   journal = DSR, 
    3097   year = {2003}, 
    3098   pages = {251--280} 
     3583  author =       {A.-M. Tr\'{e}guier and O. Boedel and B. Barnier and 
     3584                  G. Madec}, 
     3585  title =        {Agulhas eddy fluxes in a 1/6^o Atlantic model}, 
     3586  journal =      DSR, 
     3587  year =         2003, 
     3588  pages =        {251--280} 
    30993589} 
    31003590 
    31013591@ARTICLE{Treguier1996, 
    3102   author = {A.-M. Tr\'{e}guier and J. Dukowicz and K. Bryan}, 
    3103   title = {Properties of nonuniform grids used in ocean general circulation models}, 
    3104   journal = JGR, 
    3105   year = {1996}, 
    3106   volume = {101}, 
    3107   pages = {20,877--20,881} 
     3592  author =       {A.-M. Tr\'{e}guier and J. Dukowicz and K. Bryan}, 
     3593  title =        {Properties of nonuniform grids used in ocean general 
     3594                  circulation models}, 
     3595  journal =      JGR, 
     3596  year =         1996, 
     3597  volume =       101, 
     3598  pages =        {20,877--20,881} 
    31083599} 
    31093600 
    31103601@ARTICLE{Treguier_al_OS07, 
    3111   author = {A.-M. Tr\'{e}guier and M. H. England and S. R. Rintoul and G. Madec and J. Le Sommer and J.-M. Molines}, 
    3112   title = {Southern Ocean overturning across streamlines in an eddying simulation of the Antarctic Circumpolar Current}, 
    3113   journal = OS, 
    3114   year = {2007}, 
    3115   volume = {4}, 
    3116   pages = {653--698} 
     3602  author =       {A.-M. Tr\'{e}guier and M. H. England and 
     3603                  S. R. Rintoul and G. Madec and J. Le Sommer and 
     3604                  J.-M. Molines}, 
     3605  title =        {Southern Ocean overturning across streamlines in an 
     3606                  eddying simulation of the Antarctic Circumpolar 
     3607                  Current}, 
     3608  journal =      OS, 
     3609  year =         2007, 
     3610  volume =       4, 
     3611  pages =        {653--698} 
    31173612} 
    31183613 
    31193614@ARTICLE{Treguier_al_OD06, 
    3120   author = {A.-M. Tr\'{e}guier and C. Gourcuff and P. Lherminier and H. Mercier and B. Barnier  
    3121   and G. Madec and J.-M. Molines and T. Penduff and L. Czeschel and C. Böning}, 
    3122   title = {Internal and forced variability along a section between Greenland 
    3123    and Portugal in the CLIPPER Atlantic model}, 
    3124   journal = OD, 
    3125   year = {2006}, 
    3126   volume = {56}, 
    3127   pages = {568--580}, 
    3128   doi = {10.1007/s10236-006-0069-y}, 
     3615  author =       {A.-M. Tr\'{e}guier and C. Gourcuff and P. Lherminier 
     3616                  and H. Mercier and B. Barnier and G. Madec and 
     3617                  J.-M. Molines and T. Penduff and L. Czeschel and 
     3618                  C. Böning}, 
     3619  title =        {Internal and forced variability along a section 
     3620                  between Greenland and Portugal in the CLIPPER 
     3621                  Atlantic model}, 
     3622  journal =      OD, 
     3623  year =         2006, 
     3624  volume =       56, 
     3625  pages =        {568--580}, 
     3626  doi =          {10.1007/s10236-006-0069-y}, 
    31293627} 
    31303628 
    31313629@ARTICLE{Treguier1997, 
    3132   author = {A. M. Tr\'{e}guier and I. M. Held and V. D. Larichev}, 
    3133   title = {Parameterization of Quasigeostrophic Eddies in Primitive Equation Ocean Models}, 
    3134   journal = JPO, 
    3135   year = {1997}, 
    3136   volume = {27},  number = {4}, 
    3137   pages = {567--580} 
     3630  author =       {A. M. Tr\'{e}guier and I. M. Held and 
     3631                  V. D. Larichev}, 
     3632  title =        {Parameterization of Quasigeostrophic Eddies in 
     3633                  Primitive Equation Ocean Models}, 
     3634  journal =      JPO, 
     3635  year =         1997, 
     3636  volume =       27, 
     3637  number =       4, 
     3638  pages =        {567--580} 
    31383639} 
    31393640 
    31403641@ARTICLE{Tu_Tsuang_GRL05, 
    3141   title={{Cool-skin simulation by a one-column ocean model}}, 
    3142   author={{C-Y}. Tu and {B-J}. Tsuang}, 
    3143   journal=GRL, 
    3144   year={2005}, 
    3145   volume={32}, 
    3146   pages={L22602}, 
    3147   doi = {10.1029/2005GL024252}, 
     3642  title =        {{Cool-skin simulation by a one-column ocean model}}, 
     3643  author =       {{C-Y}. Tu and {B-J}. Tsuang}, 
     3644  journal =      GRL, 
     3645  year =         2005, 
     3646  volume =       32, 
     3647  pages =        {L22602}, 
     3648  doi =          {10.1029/2005GL024252}, 
    31483649} 
    31493650 
    31503651@ARTICLE{Umlauf_Burchard_JMS03, 
    3151   author = {L. Umlauf and H. Burchard}, 
    3152   title = {A generic length-scale equation for geophysical turbulence models}, 
    3153   journal = JMS,  
    3154   year = {2003}, 
    3155   volume = {61},  number = {2}, 
    3156   pages = {235--265} 
     3652  author =       {L. Umlauf and H. Burchard}, 
     3653  title =        {A generic length-scale equation for geophysical 
     3654                  turbulence models}, 
     3655  journal =      JMS, 
     3656  year =         2003, 
     3657  volume =       61, 
     3658  number =       2, 
     3659  pages =        {235--265} 
    31573660} 
    31583661 
    31593662@ARTICLE{Umlauf_Burchard_CSR05, 
    3160   author = {L. Umlauf and H. Burchard}, 
    3161   title = {Second-order turbulence closure models for geophysical boundary layers. A review of recent work}, 
    3162   journal = JMS,  
    3163   year = {2005}, 
    3164   volume = {25}, 
    3165   pages = {795--827} 
     3663  author =       {L. Umlauf and H. Burchard}, 
     3664  title =        {Second-order turbulence closure models for 
     3665                  geophysical boundary layers. A review of recent 
     3666                  work}, 
     3667  journal =      JMS, 
     3668  year =         2005, 
     3669  volume =       25, 
     3670  pages =        {795--827} 
    31663671} 
    31673672 
    31683673@BOOK{UNESCO1983, 
    3169   title = {Algorithms for computation of fundamental property of sea water}, 
    3170   publisher = {Techn. Paper in Mar. Sci, 44, UNESCO}, 
    3171   year = {1983}, 
    3172   author = {UNESCO} 
     3674  title =        {Algorithms for computation of fundamental property 
     3675                  of sea water}, 
     3676  publisher =    {Techn. Paper in Mar. Sci, 44, UNESCO}, 
     3677  year =         1983, 
     3678  author =       {UNESCO} 
    31733679} 
    31743680 
    31753681@TECHREPORT{OASIS2006, 
    3176   author = {S. Valcke}, 
    3177   title = {OASIS3 User Guide (prism\_2-5)}, 
    3178   institution = {PRISM Support Initiative Report No 3, CERFACS, Toulouse, France}, 
    3179   year = {2006}, 
    3180   pages = {64pp} 
     3682  author =       {S. Valcke}, 
     3683  title =        {OASIS3 User Guide (prism\_2-5)}, 
     3684  institution =  {PRISM Support Initiative Report No 3, CERFACS, 
     3685                  Toulouse, France}, 
     3686  year =         2006, 
     3687  pages =        {64pp} 
    31813688} 
    31823689 
    31833690@TECHREPORT{Valcke_al_Rep00, 
    3184   author = {S. Valcke and L. Terray and A. Piacentini }, 
    3185   title = {The OASIS Coupled User Guide Version 2.4}, 
    3186   institution = {CERFACS}, 
    3187   year = {2000}, 
    3188   number = {TR/CMGC/00-10} 
     3691  author =       {S. Valcke and L. Terray and A. Piacentini }, 
     3692  title =        {The OASIS Coupled User Guide Version 2.4}, 
     3693  institution =  {CERFACS}, 
     3694  year =         2000, 
     3695  number =       {TR/CMGC/00-10} 
    31893696} 
    31903697 
    31913698@ARTICLE{Vancoppenolle_al_OM09b, 
    3192   author = {M. Vancoppenolle and T. Fichefet and H. Goosse}, 
    3193   title = {Simulating the mass balance and salinity of Arctic and Antarctic sea ice. 2.  
    3194      Importance of sea ice salinity variations}, 
    3195   journal = OM, 
    3196   year = {2009}, 
    3197   volume = {27}, 
    3198   pages = {54--69} 
     3699  author =       {M. Vancoppenolle and T. Fichefet and H. Goosse}, 
     3700  title =        {Simulating the mass balance and salinity of Arctic 
     3701                  and Antarctic sea ice. 2.  Importance of sea ice 
     3702                  salinity variations}, 
     3703  journal =      OM, 
     3704  year =         2009, 
     3705  volume =       27, 
     3706  pages =        {54--69} 
    31993707} 
    32003708 
    32013709@book{Vallis06, 
    3202 author = {Vallis, G. K.}, 
    3203 title = {Atmospheric and Oceanic Fluid Dynamics}, 
    3204 publisher = {Cambridge University Press}, 
    3205 address = {Cambridge, U.K.}, 
    3206 year = {2006}, 
    3207 pages = {745}, 
     3710  author =      {Vallis, G. K.}, 
     3711  title =        {Atmospheric and Oceanic Fluid Dynamics}, 
     3712  publisher =    {Cambridge University Press}, 
     3713  address =      {Cambridge, U.K.}, 
     3714  year =         2006, 
     3715  pages =        745, 
    32083716} 
    32093717 
    32103718@ARTICLE{Vancoppenolle_al_OM09a, 
    3211   author = {M. Vancoppenolle and T. Fichefet and H. Goosse and S. Bouillon and 
    3212    G. Madec and M. A. Morales Maqueda}, 
    3213   title = {Simulating the mass balance and salinity of Arctic and Antarctic 
    3214    sea ice. 1. Model description and validation}, 
    3215   journal = OM, 
    3216   year = {2009}, 
    3217   volume = {27}, 
    3218   pages = {33--53}, 
    3219   doi = {10.1016/j.ocemod.2008.10.005}, 
     3719  author =       {M. Vancoppenolle and T. Fichefet and H. Goosse and 
     3720                  S. Bouillon and G. Madec and M. A. Morales Maqueda}, 
     3721  title =        {Simulating the mass balance and salinity of Arctic 
     3722                  and Antarctic sea ice. 1. Model description and 
     3723                  validation}, 
     3724  journal =      OM, 
     3725  year =         2009, 
     3726  volume =       27, 
     3727  pages =        {33--53}, 
     3728  doi =          {10.1016/j.ocemod.2008.10.005}, 
    32203729} 
    32213730 
    32223731@ARTICLE{Vialard_al_JPO01, 
    3223   author = {J. Vialard and C. Menkes and J.-P. Boulanger and P. Delecluse and 
    3224    E. Guilyardi and M.J. McPhaden and G. Madec}, 
    3225   title = {A Model Study of Oceanic Mechanisms Affecting Equatorial Pacific 
    3226    Sea Surface Temperature During the 1997-98 El Niño}, 
    3227   journal = JPO, 
    3228   year = {2001}, 
    3229   volume = {31},  number = {7}, 
    3230   pages = {1649--1675} 
     3732  author =       {J. Vialard and C. Menkes and J.-P. Boulanger and 
     3733                  P. Delecluse and E. Guilyardi and M.J. McPhaden and 
     3734                  G. Madec}, 
     3735  title =        {A Model Study of Oceanic Mechanisms Affecting 
     3736                  Equatorial Pacific Sea Surface Temperature During 
     3737                  the 1997-98 El Niño}, 
     3738  journal =      JPO, 
     3739  year =         2001, 
     3740  volume =       31, 
     3741  number =       7, 
     3742  pages =        {1649--1675} 
    32313743} 
    32323744 
    32333745@ARTICLE{Warner_al_OM05, 
    3234   author = {J. C. Warner and C. R. Sherwood and H. G. Arango and R. P. Signell}, 
    3235   title = {Performance of four turbulence closure models implemented using a generic length scale method}, 
    3236   journal = OM, 
    3237   year = {2005}, 
    3238   volume = {8}, 
    3239   pages = {81--113}, 
    3240   doi = {10.1016/j.ocemod.2003.12.003}, 
     3746  author =       {J. C. Warner and C. R. Sherwood and H. G. Arango and 
     3747                  R. P. Signell}, 
     3748  title =        {Performance of four turbulence closure models 
     3749                  implemented using a generic length scale method}, 
     3750  journal =      OM, 
     3751  year =         2005, 
     3752  volume =       8, 
     3753  pages =        {81--113}, 
     3754  doi =          {10.1016/j.ocemod.2003.12.003}, 
    32413755} 
    32423756 
    32433757@ARTICLE{Weatherly_JMR84, 
    3244   author = {G. L. Weatherly}, 
    3245   title = {An estimate of bottom frictional dissipation by Gulf Stream fluctuations}, 
    3246   journal = JMR, 
    3247   year = {1984}, 
    3248   volume = {42},  number = {2}, 
    3249   pages = {289--301} 
     3758  author =       {G. L. Weatherly}, 
     3759  title =        {An estimate of bottom frictional dissipation by Gulf 
     3760                  Stream fluctuations}, 
     3761  journal =      JMR, 
     3762  year =         1984, 
     3763  volume =       42, 
     3764  number =       2, 
     3765  pages =        {289--301} 
    32503766} 
    32513767 
    32523768@ARTICLE{Weaver_Eby_JPO97, 
    3253   author = {A. J. Weaver and M. Eby}, 
    3254   title = {On the numerical implementation of advection schemes for use in conjuction 
    3255    with various mixing parameterizations in the GFDL ocean model}, 
    3256   journal = JPO, 
    3257   year = {1997}, 
    3258   volume = {27} 
     3769  author =       {A. J. Weaver and M. Eby}, 
     3770  title =        {On the numerical implementation of advection schemes 
     3771                  for use in conjuction with various mixing 
     3772                  parameterizations in the GFDL ocean model}, 
     3773  journal =      JPO, 
     3774  year =         1997, 
     3775  volume =       27 
    32593776} 
    32603777 
    32613778@ARTICLE{Webb_al_JAOT98, 
    3262   author = {D. J. Webb and B. A. de Cuevas and C. S. Richmond}, 
    3263   title = {Improved Advection Schemes for Ocean Models}, 
    3264   journal = JAOT, 
    3265   year = {1998}, 
    3266   volume = {15},  number = {5}, 
    3267   pages = {1171--1187}, 
     3779  author =       {D. J. Webb and B. A. de Cuevas and C. S. Richmond}, 
     3780  title =        {Improved Advection Schemes for Ocean Models}, 
     3781  journal =      JAOT, 
     3782  year =         1998, 
     3783  volume =       15, 
     3784  number =       5, 
     3785  pages =        {1171--1187}, 
    32683786} 
    32693787 
    32703788@ARTICLE{White_al_JCP09, 
    3271   author = {L. White and A. Adcroft and R. Hallberg}, 
    3272   title = {High-order regridding-remapping schemes for continuous isopycnal 
    3273    and generalized coordinates in ocean models}, 
    3274   journal = JC, 
    3275   year = {2009}, 
    3276   volume = {228}, 
    3277   pages = {8665--8692} 
     3789  author =       {L. White and A. Adcroft and R. Hallberg}, 
     3790  title =        {High-order regridding-remapping schemes for 
     3791                  continuous isopycnal and generalized coordinates in 
     3792                  ocean models}, 
     3793  journal =      JC, 
     3794  year =         2009, 
     3795  volume =       228, 
     3796  pages =        {8665--8692} 
    32783797} 
    32793798 
    32803799@ARTICLE{Wilcox_1988, 
    3281   author = {D. C. Wilcox}, 
    3282   title = {Reassessment of the scale-determining equation for advanced turbulence models}, 
    3283   journal = {AIAA journal}, 
    3284   year = {1988}, 
    3285   volume = {26},  number = {11}, 
    3286   pages = {1299--1310} 
     3800  author =       {D. C. Wilcox}, 
     3801  title =        {Reassessment of the scale-determining equation for 
     3802                  advanced turbulence models}, 
     3803  journal =      {AIAA journal}, 
     3804  year =         1988, 
     3805  volume =       26, 
     3806  number =       11, 
     3807  pages =        {1299--1310} 
    32873808} 
    32883809 
    32893810@ARTICLE{Willebrand_al_PO01, 
    3290   author = {J. Willebrand and B. Barnier and C. Boning and C. Dieterich and P. 
    3291    D. Killworth and C. Le Provost and Y. Jia and J.-M. Molines and A. L. New}, 
    3292   title = {Circulation characteristics in three eddy-permitting models of the North Atlantic}, 
    3293   journal = PO, 
    3294   year = {2001}, 
    3295   volume = {48},  number = {2}, 
    3296   pages = {123--161} 
     3811  author =       {J. Willebrand and B. Barnier and C. Boning and 
     3812                  C. Dieterich and P.  D. Killworth and C. Le Provost 
     3813                  and Y. Jia and J.-M. Molines and A. L. New}, 
     3814  title =        {Circulation characteristics in three eddy-permitting 
     3815                  models of the North Atlantic}, 
     3816  journal =      PO, 
     3817  year =         2001, 
     3818  volume =       48, 
     3819  number =       2, 
     3820  pages =        {123--161} 
    32973821} 
    32983822 
    32993823@ARTICLE{Williams_al_DAO09, 
    3300   author = {P.D. Williams and E. Guilyardi and G. Madec and S. Gualdi and E. Scoccimarro}, 
    3301   title = {The role of mean ocean salinity on climate}, 
    3302   journal = DAO, 
    3303   year = {2010}, 
    3304   volume = {49},  number = {2-3}, 
    3305   pages = {108--123}, 
    3306   doi = {10.1016/j.dynatmoce.2009.02.001}, 
     3824  author =       {P.D. Williams and E. Guilyardi and G. Madec and 
     3825                  S. Gualdi and E. Scoccimarro}, 
     3826  title =        {The role of mean ocean salinity on climate}, 
     3827  journal =      DAO, 
     3828  year =         2010, 
     3829  volume =       49, 
     3830  number =       {2-3}, 
     3831  pages =        {108--123}, 
     3832  doi =          {10.1016/j.dynatmoce.2009.02.001}, 
    33073833} 
    33083834 
    33093835@ARTICLE{Williams_al_GRL07, 
    3310   author = {P.D. Williams and E. Guilyardi and R. Sutton and J.M. Gregory and G. Madec}, 
    3311   title = {A new feedback on climate change from the hydrological cycle}, 
    3312   journal = GRL, 
    3313   year = {2007}, 
    3314   volume = {34}, 
    3315   pages = {L08706}, 
    3316   doi = {10.1029/2007GL029275}, 
     3836  author =       {P.D. Williams and E. Guilyardi and R. Sutton and 
     3837                  J.M. Gregory and G. Madec}, 
     3838  title =        {A new feedback on climate change from the 
     3839                  hydrological cycle}, 
     3840  journal =      GRL, 
     3841  year =         2007, 
     3842  volume =       34, 
     3843  pages =        {L08706}, 
     3844  doi =          {10.1029/2007GL029275}, 
    33173845} 
    33183846 
    33193847@ARTICLE{Williams_al_CD06, 
    3320   author = {P.D. Williams and E. Guilyardi and R. Sutton and J.M. Gregory and G. Madec}, 
    3321   title = {On the climate response of the low-latitude Pacific ocean to changes in the global freshwater cycle}, 
    3322   journal = CD, 
    3323   year = {2006}, 
    3324   volume = {27}, 
    3325   pages = {593--611} 
     3848  author =       {P.D. Williams and E. Guilyardi and R. Sutton and 
     3849                  J.M. Gregory and G. Madec}, 
     3850  title =        {On the climate response of the low-latitude Pacific 
     3851                  ocean to changes in the global freshwater cycle}, 
     3852  journal =      CD, 
     3853  year =         2006, 
     3854  volume =       27, 
     3855  pages =        {593--611} 
    33263856} 
    33273857 
    33283858@ARTICLE{Zalesak_JCP79, 
    3329   author = {S. T. Zalesak}, 
    3330   title = {Fully multidimensional flux corrected transport algorithms for fluids}, 
    3331   journal = JCP, 
    3332   year = {1979}, 
    3333   volume = {31} 
     3859  author =       {S. T. Zalesak}, 
     3860  title =        {Fully multidimensional flux corrected transport 
     3861                  algorithms for fluids}, 
     3862  journal =      JCP, 
     3863  year =         1979, 
     3864  volume =       31 
    33343865} 
    33353866 
    33363867@ARTICLE{Zhang_Endoh_JGR92, 
    3337   author = {Zhang, R.-H. and Endoh, M.}, 
    3338   title = {A free surface general circulation model for the tropical Pacific Ocean}, 
    3339   journal = JGR, 
    3340   year = {1992}, 
    3341   volume = {97}, 
    3342   pages = {11,237--11,255} 
    3343 } 
    3344  
    3345 @comment{jabref-meta: groupsversion:3;} 
    3346  
    3347 @comment{jabref-meta: groupstree: 
    3348 0 AllEntriesGroup:; 
    3349 1 ExplicitGroup:El Nino\;2\;blanketal97\;; 
    3350 2 ExplicitGroup:97/98 event\;0\;; 
    3351 2 ExplicitGroup:Forecast\;0\;; 
    3352 2 ExplicitGroup:GHG change\;0\;; 
    3353 2 ExplicitGroup:in GCMs\;0\;; 
    3354 2 ExplicitGroup:in MIPs\;0\;; 
    3355 2 ExplicitGroup:momentum balance\;0\;; 
    3356 2 ExplicitGroup:Obs analysis\;0\;; 
    3357 2 ExplicitGroup:Paleo\;0\;; 
    3358 2 ExplicitGroup:Previous events\;0\;; 
    3359 2 ExplicitGroup:Reviews\;0\;; 
    3360 2 ExplicitGroup:Simple models\;0\;Zhang_Endoh_JGR92\;; 
    3361 2 ExplicitGroup:SPL, SC, mean\;0\;; 
    3362 2 ExplicitGroup:Teleconnections\;0\;; 
    3363 2 ExplicitGroup:Low freq\;0\;; 
    3364 2 ExplicitGroup:Theory\;0\;; 
    3365 2 ExplicitGroup:Energetics\;0\;; 
    3366 1 ExplicitGroup:Diurnal in tropics\;0\;; 
    3367 1 ExplicitGroup:Indian\;0\;; 
    3368 1 ExplicitGroup:Atlantic\;0\;; 
    3369 1 ExplicitGroup:MJO, IO, TIW\;2\;; 
    3370 2 ExplicitGroup:Obs\;0\;; 
    3371 2 ExplicitGroup:GCM\;0\;; 
    3372 2 ExplicitGroup:Mechanims\;0\;; 
    3373 2 ExplicitGroup:TIW\;0\;; 
    3374 1 ExplicitGroup:Observations\;2\;; 
    3375 2 ExplicitGroup:ERBE\;0\;; 
    3376 2 ExplicitGroup:Tropical\;0\;; 
    3377 2 ExplicitGroup:Global\;0\;; 
    3378 2 ExplicitGroup:Clouds\;0\;; 
    3379 2 ExplicitGroup:Scale interactions\;0\;; 
    3380 1 ExplicitGroup:Mechanisms\;2\;; 
    3381 2 ExplicitGroup:CRF\;0\;; 
    3382 2 ExplicitGroup:Water vapor\;0\;; 
    3383 2 ExplicitGroup:Atmos mechanisms\;0\;; 
    3384 1 ExplicitGroup:GCMs\;2\;; 
    3385 2 ExplicitGroup:Uncertainty\;0\;; 
    3386 2 ExplicitGroup:Momentum balance\;0\;; 
    3387 1 ExplicitGroup:Climate change\;0\;; 
    3388 2 ExplicitGroup:IPCC AR4\;0\;; 
    3389 1 ExplicitGroup:Analysis tools\;0\;; 
    3390 1 KeywordGroup:EG publis\;0\;author\;guilyardi\;0\;0\;; 
    3391 } 
    3392  
     3868  author =       {Zhang, R.-H. and Endoh, M.}, 
     3869  title =        {A free surface general circulation model for the 
     3870                  tropical Pacific Ocean}, 
     3871  journal =      JGR, 
     3872  year =         1992, 
     3873  volume =       97, 
     3874  pages =        {11,237--11,255} 
     3875} 
  • NEMO/trunk/doc/latex/NEMO/main/NEMO_manual.tex

    r10442 r10495  
    11%% ============================================================================== 
    2 %% NEMO_book.tex: build the NEMO Reference Manual 
     2%% NEMO Reference Manual 
    33%% ============================================================================== 
    44 
    55 
    6 %% Run ../build_NEMO_manual.sh to generate the PDF version (with pdflatex) 
    7  
    8 %% Document layout 
    9 %% ============================================================================== 
    10  
    11 \documentclass[a4paper, 11pt]{book} 
     6%% Run ./PDF_creation.sh to generate the manual with latexmk 
    127 
    138 
     
    1510%% ============================================================================== 
    1611 
    17 %% Custom style 
     12%% Document layout 
     13\documentclass{book} 
     14 
     15%% Custom style (.sty) 
    1816\usepackage{../main/NEMO_manual} 
    19  
    20 \makeindex 
    21  
    22  
    23 %%  
    24 %% ============================================================================== 
    2517 
    2618%% Include references and index for single subfile compilation 
     
    2820\newcommand{\pindex}{\printindex} 
    2921 
     22\makeindex 
     23 
     24%% End of common preamble between main and sub-files 
    3025\begin{document} 
    3126 
     
    3934 
    4035%% Frontpage 
    41  
    4236\title{ 
    43 %\vspace{-6.0cm}\includegraphics[width=1.1\textwidth]{logo_ALL}            \\ 
    44 %\vspace{ 5.1cm}\includegraphics[width=0.9\textwidth]{NEMO_logo_Black}  \\ 
    45 \vspace{ 1.4cm}\rule{345pt}{1.5pt}                                      \\ 
    46 \vspace{0.45cm}{\Huge NEMO ocean engine}                                \\ 
    47 \rule{345pt}{1.5pt} 
     37  \includegraphics[height=0.05\textheight]{CMCC}\hfill 
     38  \includegraphics[height=0.05\textheight]{CNRS}\hfill 
     39  \includegraphics[height=0.05\textheight]{MOI} \hfill 
     40  \includegraphics[height=0.05\textheight]{UKMO}\hfill 
     41  \includegraphics[height=0.05\textheight]{NERC}       \\ 
     42  \includegraphics[ width=0.8\textwidth  ]{NEMO_grey}  \\ 
     43  {\Huge NEMO ocean engine}                            \\ 
    4844} 
    49  
    5045\author{ 
    5146  \Large Gurvan Madec and NEMO System Team 
     
    6257  \textit{ISSN 1288-1619} 
    6358} 
    64  
    6559\date{Version 4.0 -- January 2019} 
    6660%\date{\today} 
     
    7165 
    7266%% ToC i.e. Table of Contents 
    73  
    7467\dominitoc 
    7568\tableofcontents 
     
    8174\mainmatter 
    8275 
    83  
    8476%% Foreword 
    85  
    8677\subfile{../subfiles/foreword} 
    8778 
    88  
    89 % Introduction 
    90  
     79%% Introduction 
    9180\subfile{../subfiles/introduction} 
    9281 
    93  
    94 % Chapters 
    95  
     82%% Chapters 
    9683\subfile{../subfiles/chap_model_basics} 
    97  
    9884\subfile{../subfiles/chap_time_domain}   % Time discretisation (time stepping strategy) 
    99  
    10085\subfile{../subfiles/chap_DOM}           % Space discretisation 
    101  
    10286\subfile{../subfiles/chap_TRA}           % Tracer advection/diffusion equation 
    103  
    10487\subfile{../subfiles/chap_DYN}           % Dynamics : momentum equation 
    105  
    10688\subfile{../subfiles/chap_SBC}           % Surface Boundary Conditions 
    107  
    10889\subfile{../subfiles/chap_LBC}           % Lateral Boundary Conditions 
    109  
    11090\subfile{../subfiles/chap_LDF}           % Lateral diffusion 
    111  
    11291\subfile{../subfiles/chap_ZDF}           % Vertical diffusion 
    113  
    11492\subfile{../subfiles/chap_DIA}           % Outputs and Diagnostics 
    115  
    11693\subfile{../subfiles/chap_OBS}           % Observation operator 
    117  
    11894\subfile{../subfiles/chap_ASM}           % Assimilation increments 
    119  
    12095\subfile{../subfiles/chap_STO}           % Stochastic param. 
    121  
    12296\subfile{../subfiles/chap_misc}          % Miscellaneous topics 
    123  
    12497\subfile{../subfiles/chap_CONFIG}        % Predefined configurations 
    12598 
    126  
    12799%% Appendix 
    128  
    129100\appendix 
    130  
    131101\subfile{../subfiles/annex_A}             % Generalised vertical coordinate 
    132  
    133102\subfile{../subfiles/annex_B}             % Diffusive operator 
    134  
    135103\subfile{../subfiles/annex_C}             % Discrete invariants of the eqs. 
    136  
    137104\subfile{../subfiles/annex_iso}           % Isoneutral diffusion using triads 
    138  
    139105\subfile{../subfiles/annex_D}             % Coding rules 
    140106 
     
    142108%\subfile{../subfiles/chap_conservation}  % 
    143109%\subfile{../subfiles/annex_E}            % Notes on some on going staff 
    144 %\subfile{../subfiles/annex_Fox-Kemper}   % Notes on Fox-Kemper 
    145 %\subfile{../subfiles/annex_EVP}          % Notes on EVP 
    146110 
    147111 
     
    151115\backmatter 
    152116 
    153  
    154117%% Bibliography 
    155  
    156118\cleardoublepage 
    157119\phantomsection 
     
    161123 
    162124%% Index 
    163  
    164125\cleardoublepage 
    165126\phantomsection 
Note: See TracChangeset for help on using the changeset viewer.