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 11552 for NEMO – NEMO

Changeset 11552 for NEMO


Ignore:
Timestamp:
2019-09-16T17:38:22+02:00 (5 years ago)
Author:
nicolasmartin
Message:

add unbreakable space after \fortran & fninety

Location:
NEMO/trunk/doc/latex/NEMO/subfiles
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • NEMO/trunk/doc/latex/NEMO/subfiles/chap_DOM.tex

    r11543 r11552  
    270270    \caption{ 
    271271      \protect\label{fig:DOM_index_hor} 
    272       Horizontal integer indexing used in the \fortran code. 
     272      Horizontal integer indexing used in the \fortran\ code. 
    273273      The dashed area indicates the cell in which variables contained in arrays have the same $i$- and $j$-indices 
    274274    } 
     
    277277%>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
    278278 
    279 The array representation used in the \fortran code requires an integer indexing. 
     279The array representation used in the \fortran\ code requires an integer indexing. 
    280280However, the analytical definition of the mesh (see \autoref{subsec:DOM_cell}) is associated with the use of 
    281281integer values for $t$-points only while all the other points involve integer and a half values. 
     
    303303 
    304304In the vertical, the chosen indexing requires special attention since the direction of the $k$-axis in 
    305 the \fortran code is the reverse of that used in the semi -discrete equations and 
     305the \fortran\ code is the reverse of that used in the semi -discrete equations and 
    306306given in \autoref{subsec:DOM_cell}. 
    307307The sea surface corresponds to the $w$-level $k = 1$, which is the same index as the $t$-level just below 
     
    315315(compare the dashed area in \autoref{fig:DOM_index_hor} and \autoref{fig:DOM_index_vert}). 
    316316Since the scale factors are chosen to be strictly positive, 
    317 a \textit{minus sign} is included in the \fortran implementations of 
     317a \textit{minus sign} is included in the \fortran\ implementations of 
    318318\textit{all the vertical derivatives} of the discrete equations given in this manual in order to 
    319319accommodate the opposing vertical index directions in implementation and documentation. 
     
    325325    \caption{ 
    326326      \protect\label{fig:DOM_index_vert} 
    327       Vertical integer indexing used in the \fortran code. 
     327      Vertical integer indexing used in the \fortran\ code. 
    328328      Note that the $k$-axis is oriented downward. 
    329329      The dashed area indicates the cell in which variables contained in arrays have a common $k$-index. 
  • NEMO/trunk/doc/latex/NEMO/subfiles/chap_DYN.tex

    r11543 r11552  
    154154its physical meaning is not the same: 
    155155in the second case, $w$ is the velocity normal to the $s$-surfaces. 
    156 Note also that the $k$-axis is re-orientated downwards in the \fortran code compared to 
     156Note also that the $k$-axis is re-orientated downwards in the \fortran\ code compared to 
    157157the indexing used in the semi-discrete equations such as \autoref{eq:DYN_wzv} 
    158158(see \autoref{subsec:DOM_Num_Index_vertical}). 
  • NEMO/trunk/doc/latex/NEMO/subfiles/chap_LBC.tex

    r11551 r11552  
    659659These restrictions mean that data files used with versions of the 
    660660model prior to Version 3.4 may not work with Version 3.4 onwards. 
    661 A \fortran utility {\itshape bdy\_reorder} exists in the TOOLS directory which 
     661A \fortran\ utility {\itshape bdy\_reorder} exists in the TOOLS directory which 
    662662will re-order the data in old BDY data files. 
    663663 
  • NEMO/trunk/doc/latex/NEMO/subfiles/chap_OBS.tex

    r11543 r11552  
    967967For convenience some tools for viewing and processing of observation and feedback files are provided in 
    968968the \NEMO\ repository. 
    969 These tools include OBSTOOLS which are a collection of \fortran programs which are helpful to deal with feedback files. 
     969These tools include OBSTOOLS which are a collection of \fortran\ programs which are helpful to deal with feedback files. 
    970970They do such tasks as observation file conversion, printing of file contents, 
    971971some basic statistical analysis of feedback files. 
     
    976976\subsection{Obstools} 
    977977 
    978 A series of \fortran utilities is provided with \NEMO\ called OBSTOOLS. 
     978A series of \fortran\ utilities is provided with \NEMO\ called OBSTOOLS. 
    979979This are helpful in handling observation files and the feedback file output from the observation operator. A brief description of some of the utilities follows 
    980980 
  • NEMO/trunk/doc/latex/NEMO/subfiles/chap_TRA.tex

    r11543 r11552  
    13331333The coefficients are a polynomial function of temperature, salinity and depth which expression depends on 
    13341334the chosen EOS. 
    1335 They are computed through \textit{eos\_rab}, a \fortran function that can be found in \mdl{eosbn2}. 
     1335They are computed through \textit{eos\_rab}, a \fortran\ function that can be found in \mdl{eosbn2}. 
    13361336 
    13371337% ------------------------------------------------------------------------------------------------------------- 
     
    13551355thus the pressure dependent terms in \autoref{eq:TRA_eos_fzp} (last term) have been dropped. 
    13561356The freezing point is computed through \textit{eos\_fzp}, 
    1357 a \fortran function that can be found in \mdl{eosbn2}. 
     1357a \fortran\ function that can be found in \mdl{eosbn2}. 
    13581358 
    13591359% ------------------------------------------------------------------------------------------------------------- 
  • NEMO/trunk/doc/latex/NEMO/subfiles/chap_misc.tex

    r11543 r11552  
    211211configuration using the extended grid domain configuration file: \ifile{eORCA1\_domcfg.nc} 
    212212This file define a horizontal domain of 362x332.  The first row with 
    213 open ocean wet points in the non-isf bathymetry for this set is row 42 (\fortran indexing) 
     213open ocean wet points in the non-isf bathymetry for this set is row 42 (\fortran\ indexing) 
    214214then the formally correct setting for \np{open\_ocean\_jstart} is 41.  Using this value as 
    215215the first row to be read will result in a 362x292 domain which is the same size as the 
     
    268268\label{subsec:MISC_sign} 
    269269 
    270 The SIGN(A, B) is the \fortran intrinsic function delivers the magnitude of A with the sign of B. 
     270The SIGN(A, B) is the \fortran\ intrinsic function delivers the magnitude of A with the sign of B. 
    271271For example, SIGN(-3.0,2.0) has the value 3.0. 
    272272The problematic case is when the second argument is zero, because, on platforms that support IEEE arithmetic, 
     
    280280and the processor is capable of distinguishing between positive and negative zero, 
    281281and B is negative real zero. 
    282 Then SIGN delivers a negative result where, under \fninety rules, it used to return a positive result. 
     282Then SIGN delivers a negative result where, under \fninety\ rules, it used to return a positive result. 
    283283This change may be especially sensitive for the ice model, 
    284284so we overwrite the intrinsinc function with our own function simply performing :   \\ 
Note: See TracChangeset for help on using the changeset viewer.