Changeset 10146
- Timestamp:
- 2018-09-20T18:06:07+02:00 (6 years ago)
- Location:
- NEMO/trunk/doc
- Files:
-
- 8 added
- 4 deleted
- 19 edited
- 4 copied
- 8 moved
Legend:
- Unmodified
- Added
- Removed
-
NEMO/trunk/doc/PDF_creation.sh
r10139 r10146 1 1 #!/bin/sh 2 2 3 ./inc/clean.sh4 ./inc/build.sh5 3 6 cd tex_main 7 pdflatex -shell-escape NEMO_manual 8 cd - 4 export opts='-shell-escape -interaction=nonstopmode' 5 model='NEMO' 6 7 clean() { 8 ## Delete latex build files 9 find latex -regextype posix-extended -regex ".*\.(aux|log|maf|mtc|out|toc).*" -exec rm {} \; 10 11 ## Remove 'minted' directories 12 find latex -type d -name '_minted*' -exec rm -r {} \; 13 14 ## HTML exports 15 find latex -type d -name 'html*' -exec rm -r {} \; 16 } 17 18 build() { 19 cd latex/$1/main 20 21 latex $opts $1'_manual' > /dev/null 22 makeindex -s $1'_manual'.ist $1'_manual' > /dev/null 23 bibtex $1'_manual' > /dev/null 24 #latex $opts $1'_manual' > /dev/null 25 pdflatex $opts $1'_manual' > /dev/null 26 27 mv $1'_manual'.pdf ../../.. 28 cd - 29 } 30 31 clean 32 build $model 9 33 10 34 exit 0 -
NEMO/trunk/doc/bin/nlsts_check.sh
r10139 r10146 1 1 #!/bin/sh 2 2 3 echo 'Namelists not included in the manual:' 3 if [[ $* != '' ]]; then 4 4 5 for nlst in nam*; do 6 [[ ! $( grep "forfile{../namelists/$nlst}" ../tex_sub/*.tex ) ]] && printf "$nlst " 5 if [[ $1 = 'all' ]]; then 6 models='NEMO SI3 TOP' 7 else 8 models=$1 9 fi 10 11 else 12 models='NEMO' 13 fi 14 15 for model in $models; do 16 [[ $model =~ ^(SI3|TOP)$ ]] && continue 17 echo 'Namelists not included in the '$model' manual:' 18 19 for nlst in $( ls namelists ); do 20 21 if [[ ! $( grep "\\nlst{$nlst}" ./latex/$model/subfiles/*.tex ) ]]; then 22 printf "$nlst " 23 fi 24 25 done 26 27 echo 28 7 29 done 8 30 9 echo10 11 31 exit 0 -
NEMO/trunk/doc/latex/NEMO/main/NEMO_manual.sty
r10125 r10146 30 30 31 31 \captionsetup{margin=10pt, font={small}, labelsep=colon, labelfont={bf}} 32 \graphicspath{{../ figures/}}32 \graphicspath{{../../../figures/}} 33 33 \hypersetup{ 34 34 pdftitle={NEMO ocean engine}, pdfauthor={Gurvan Madec, and the NEMO team}, … … 44 44 45 45 \pagestyle{fancy} 46 \bibliographystyle{../ tex_sub/ametsoc}46 \bibliographystyle{../main/ametsoc} 47 47 48 48 … … 168 168 169 169 \newcommand{\doi}[1]{\href{http://dx.doi.org/#1}{full-text}} 170 171 \newcommand{\nlst}[1]{\forfile{../../../namelists/#1}} -
NEMO/trunk/doc/latex/NEMO/main/NEMO_manual.tex
r9394 r10146 15 15 %% ============================================================================== 16 16 17 \usepackage{../tex_main/NEMO_manual} 18 \usepackage{../tex_sub/NEMO_minted} 17 %% Custom style 18 \usepackage{../main/NEMO_manual} 19 \usepackage{../main/NEMO_minted} 19 20 20 21 \makeindex … … 72 73 %% Abstract - Foreword 73 74 74 \subfile{../ tex_sub/abstract_foreword}75 \subfile{../subfiles/abstract_foreword} 75 76 76 77 77 78 % Introduction 78 79 79 \subfile{../ tex_sub/introduction}80 \subfile{../subfiles/introduction} 80 81 81 82 82 83 % Chapters 83 84 84 \subfile{../ tex_sub/chap_model_basics}85 \subfile{../subfiles/chap_model_basics} 85 86 86 \subfile{../ tex_sub/chap_time_domain}% Time discretisation (time stepping strategy)87 \subfile{../subfiles/chap_time_domain} % Time discretisation (time stepping strategy) 87 88 88 \subfile{../ tex_sub/chap_DOM}% Space discretisation89 \subfile{../subfiles/chap_DOM} % Space discretisation 89 90 90 \subfile{../ tex_sub/chap_TRA}% Tracer advection/diffusion equation91 \subfile{../subfiles/chap_TRA} % Tracer advection/diffusion equation 91 92 92 \subfile{../ tex_sub/chap_DYN}% Dynamics : momentum equation93 \subfile{../subfiles/chap_DYN} % Dynamics : momentum equation 93 94 94 \subfile{../ tex_sub/chap_SBC}% Surface Boundary Conditions95 \subfile{../subfiles/chap_SBC} % Surface Boundary Conditions 95 96 96 \subfile{../ tex_sub/chap_LBC}% Lateral Boundary Conditions97 \subfile{../subfiles/chap_LBC} % Lateral Boundary Conditions 97 98 98 \subfile{../ tex_sub/chap_LDF}% Lateral diffusion99 \subfile{../subfiles/chap_LDF} % Lateral diffusion 99 100 100 \subfile{../ tex_sub/chap_ZDF}% Vertical diffusion101 \subfile{../subfiles/chap_ZDF} % Vertical diffusion 101 102 102 \subfile{../ tex_sub/chap_DIA}% Outputs and Diagnostics103 \subfile{../subfiles/chap_DIA} % Outputs and Diagnostics 103 104 104 \subfile{../ tex_sub/chap_OBS}% Observation operator105 \subfile{../subfiles/chap_OBS} % Observation operator 105 106 106 \subfile{../ tex_sub/chap_ASM}% Assimilation increments107 \subfile{../subfiles/chap_ASM} % Assimilation increments 107 108 108 \subfile{../ tex_sub/chap_STO}% Stochastic param.109 \subfile{../subfiles/chap_STO} % Stochastic param. 109 110 110 \subfile{../ tex_sub/chap_misc}% Miscellaneous topics111 \subfile{../subfiles/chap_misc} % Miscellaneous topics 111 112 112 \subfile{../ tex_sub/chap_CONFIG}% Predefined configurations113 \subfile{../subfiles/chap_CONFIG} % Predefined configurations 113 114 114 115 … … 117 118 \appendix 118 119 119 \subfile{../ tex_sub/annex_A} % Generalised vertical coordinate120 \subfile{../subfiles/annex_A} % Generalised vertical coordinate 120 121 121 \subfile{../ tex_sub/annex_B} % Diffusive operator122 \subfile{../subfiles/annex_B} % Diffusive operator 122 123 123 \subfile{../ tex_sub/annex_C} % Discrete invariants of the eqs.124 \subfile{../subfiles/annex_C} % Discrete invariants of the eqs. 124 125 125 \subfile{../ tex_sub/annex_iso} % Isoneutral diffusion using triads126 \subfile{../subfiles/annex_iso} % Isoneutral diffusion using triads 126 127 127 \subfile{../ tex_sub/annex_D} % Coding rules128 \subfile{../subfiles/annex_D} % Coding rules 128 129 129 130 %% Not included 130 %\subfile{../ tex_sub/chap_conservation} %131 %\subfile{../ tex_sub/annex_E} % Notes on some on going staff132 %\subfile{../ tex_sub/annex_Fox-Kemper} % Notes on Fox-Kemper133 %\subfile{../ tex_sub/annex_EVP} % Notes on EVP131 %\subfile{../subfiles/chap_conservation} % 132 %\subfile{../subfiles/annex_E} % Notes on some on going staff 133 %\subfile{../subfiles/annex_Fox-Kemper} % Notes on Fox-Kemper 134 %\subfile{../subfiles/annex_EVP} % Notes on EVP 134 135 135 136 … … 145 146 \phantomsection 146 147 \addcontentsline{toc}{chapter}{Bibliography} 147 \bibliography{../ tex_main/NEMO_manual}148 \bibliography{../main/NEMO_manual} 148 149 149 150 -
NEMO/trunk/doc/latex/NEMO/main/NEMO_minted.sty
r10139 r10146 18 18 %% ============================================================================== 19 19 20 \newmint[forline]{fortran}{} 21 \newmint[xmlline]{xml}{} 22 \newmint[cmd]{console}{} 20 \newmint[forline]{fortran}{} % \forline|...| 21 \newmint[xmlline]{xml}{} % \xmlline|...| 22 \newmint[cmd]{console}{} % \cmd|...| 23 23 24 24 … … 26 26 %% ============================================================================== 27 27 28 \newminted[forlines]{fortran}{} 29 \newminted[xmllines]{xml}{} 30 \newminted[cmds]{console}{} 31 \newminted[clines]{c}{fontsize=\tiny} 28 \newminted[forlines]{fortran}{} % \begin{forlines} 29 \newminted[xmllines]{xml}{} % \begin{xmllines} 30 \newminted[cmds]{console}{} % \begin{cmds} 31 \newminted[clines]{c}{fontsize=\tiny} % \begin{clines} 32 32 33 33 34 34 %% File 35 35 36 \newmintedfile[forfile]{fortran}{fontsize=\tiny} 36 \newmintedfile[forfile]{fortran}{fontsize=\tiny} % \forfile{../namelists/nam...} 37 37 38 38 … … 40 40 %% ============================================================================== 41 41 42 \newmintinline[forcode]{fortran}{fontsize=auto, frame=lines} 43 \newmintinline[xmlcode]{xml}{ fontsize=auto, frame=lines}% \xmlcode{...}44 \newmintinline[snippet]{console}{fontsize=auto, frame=lines} 42 \newmintinline[forcode]{fortran}{fontsize=auto, frame=lines} % \forcode{...} 43 \newmintinline[xmlcode]{xml}{ fontsize=auto, frame=lines} % \xmlcode{...} 44 \newmintinline[snippet]{console}{fontsize=auto, frame=lines} % \snippet{...} -
NEMO/trunk/doc/latex/NEMO/subfiles/annex_iso.tex
r9414 r10146 11 11 \section{Choice of \protect\ngn{namtra\_ldf} namelist parameters} 12 12 %-----------------------------------------nam_traldf------------------------------------------------------ 13 \forfile{../namelists/namtra_ldf} 13 14 \nlst{namtra_ldf} 14 15 %--------------------------------------------------------------------------------------------------------- 15 16 -
NEMO/trunk/doc/latex/NEMO/subfiles/chap_ASM.tex
r9414 r10146 131 131 132 132 %------------------------------------------namasm----------------------------------------------------- 133 %\forfile{../namelists/namasm} 133 % 134 \nlst{nam_asminc} 134 135 %------------------------------------------------------------------------------------------------------------- 135 136 -
NEMO/trunk/doc/latex/NEMO/subfiles/chap_CONFIG.tex
r9407 r10146 26 26 27 27 %------------------------------------------namcfg---------------------------------------------------- 28 \forfile{../namelists/namcfg} 28 29 \nlst{namcfg} 29 30 %------------------------------------------------------------------------------------------------------------- 30 31 -
NEMO/trunk/doc/latex/NEMO/subfiles/chap_DIA.tex
r9414 r10146 1161 1161 1162 1162 %------------------------------------------namnc4---------------------------------------------------- 1163 \forfile{../namelists/namnc4} 1163 1164 \nlst{namnc4} 1164 1165 %------------------------------------------------------------------------------------------------------------- 1165 1166 … … 1264 1265 1265 1266 %------------------------------------------namtrd---------------------------------------------------- 1266 \forfile{../namelists/namtrd} 1267 1268 \nlst{namtrd} 1267 1269 %------------------------------------------------------------------------------------------------------------- 1268 1270 … … 1305 1307 \label{sec:FLO} 1306 1308 %--------------------------------------------namflo------------------------------------------------------- 1307 \forfile{../namelists/namflo} 1309 1310 \nlst{namflo} 1308 1311 %-------------------------------------------------------------------------------------------------------------- 1309 1312 … … 1408 1411 1409 1412 %------------------------------------------namdia_harm---------------------------------------------------- 1410 %\forfile{../namelists/namdia_harm} 1413 % 1414 \nlst{nam_diaharm} 1411 1415 %---------------------------------------------------------------------------------------------------------- 1412 1416 … … 1451 1455 1452 1456 %------------------------------------------namdct---------------------------------------------------- 1453 \forfile{../namelists/namdct} 1457 1458 \nlst{namdct} 1454 1459 %------------------------------------------------------------------------------------------------------------- 1455 1460 … … 1773 1778 1774 1779 %------------------------------------------namptr----------------------------------------- 1775 \forfile{../namelists/namptr} 1780 1781 \nlst{namptr} 1776 1782 %----------------------------------------------------------------------------------------- 1777 1783 … … 1814 1820 1815 1821 %------------------------------------------nam_dia25h------------------------------------- 1816 \forfile{../namelists/nam_dia25h} 1822 1823 \nlst{nam_dia25h} 1817 1824 %----------------------------------------------------------------------------------------- 1818 1825 … … 1828 1835 1829 1836 %------------------------------------------nam_diatmb----------------------------------------------------- 1830 \forfile{../namelists/nam_diatmb} 1837 1838 \nlst{nam_diatmb} 1831 1839 %---------------------------------------------------------------------------------------------------------- 1832 1840 -
NEMO/trunk/doc/latex/NEMO/subfiles/chap_DIU.tex
r9407 r10146 34 34 35 35 Both the cool skin and warm layer models are controlled through the namelist \ngn{namdiu}: 36 \forfile{../namelists/namdiu} 36 37 \nlst{namdiu} 37 38 This namelist contains only two variables: 38 39 \begin{description} -
NEMO/trunk/doc/latex/NEMO/subfiles/chap_DOM.tex
r9414 r10146 309 309 310 310 These fields can be read in an domain input file which name is setted in \np{cn\_domcfg} parameter specified in \ngn{namcfg}. 311 \forfile{../namelists/namcfg} 311 312 \nlst{namcfg} 312 313 or they can be defined in an analytical way in MY\_SRC directory of the configuration. 313 314 For Reference Configurations of NEMO input domain files are supplied by NEMO System Team. For analytical definition of input fields two routines are supplied: \mdl{userdef\_hgr} and \mdl{userdef\_zgr}. They are an example of GYRE configuration parameters, and they are available in NEMO/OPA\_SRC/USR directory, they provide the horizontal and vertical mesh. … … 428 429 \label{sec:DOM_zgr} 429 430 %-----------------------------------------nam_zgr & namdom------------------------------------------- 430 %\forfile{../namelists/namzgr} 431 \forfile{../namelists/namdom} 431 % 432 %\nlst{namzgr} 433 434 \nlst{namdom} 432 435 %------------------------------------------------------------------------------------------------------------- 433 436 … … 687 690 \label{subsec:DOM_zps} 688 691 %--------------------------------------------namdom------------------------------------------------------- 689 \forfile{../namelists/namdom} 692 693 \nlst{namdom} 690 694 %-------------------------------------------------------------------------------------------------------------- 691 695 … … 719 723 \label{subsec:DOM_sco} 720 724 %------------------------------------------nam_zgr_sco--------------------------------------------------- 721 %\forfile{../namelists/namzgr_sco} 725 % 726 %\nlst{namzgr_sco} 722 727 %-------------------------------------------------------------------------------------------------------------- 723 728 Options are defined in \ngn{namzgr\_sco}. … … 909 914 \label{sec:DTA_tsd} 910 915 %-----------------------------------------namtsd------------------------------------------- 911 \forfile{../namelists/namtsd} 916 917 \nlst{namtsd} 912 918 %------------------------------------------------------------------------------------------ 913 919 -
NEMO/trunk/doc/latex/NEMO/subfiles/chap_DYN.tex
r9414 r10146 160 160 \label{sec:DYN_adv_cor_vect} 161 161 %-----------------------------------------nam_dynadv---------------------------------------------------- 162 \forfile{../namelists/namdyn_adv} 162 163 \nlst{namdyn_adv} 163 164 %------------------------------------------------------------------------------------------------------------- 164 165 … … 179 180 \label{subsec:DYN_vor} 180 181 %------------------------------------------nam_dynvor---------------------------------------------------- 181 \forfile{../namelists/namdyn_vor} 182 183 \nlst{namdyn_vor} 182 184 %------------------------------------------------------------------------------------------------------------- 183 185 … … 386 388 \label{sec:DYN_adv_cor_flux} 387 389 %------------------------------------------nam_dynadv---------------------------------------------------- 388 \forfile{../namelists/namdyn_adv} 390 391 \nlst{namdyn_adv} 389 392 %------------------------------------------------------------------------------------------------------------- 390 393 … … 528 531 \label{sec:DYN_hpg} 529 532 %------------------------------------------nam_dynhpg--------------------------------------------------- 530 \forfile{../namelists/namdyn_hpg} 533 534 \nlst{namdyn_hpg} 531 535 %------------------------------------------------------------------------------------------------------------- 532 536 … … 724 728 \label{sec:DYN_spg} 725 729 %-----------------------------------------nam_dynspg---------------------------------------------------- 726 \forfile{../namelists/namdyn_spg} 730 731 \nlst{namdyn_spg} 727 732 %------------------------------------------------------------------------------------------------------------ 728 733 … … 784 789 \label{subsec:DYN_spg_ts} 785 790 %------------------------------------------namsplit----------------------------------------------------------- 786 %\forfile{../namelists/namsplit} 791 % 792 %\nlst{namsplit} 787 793 %------------------------------------------------------------------------------------------------------------- 788 794 … … 992 998 \label{sec:DYN_ldf} 993 999 %------------------------------------------nam_dynldf---------------------------------------------------- 994 \forfile{../namelists/namdyn_ldf} 1000 1001 \nlst{namdyn_ldf} 995 1002 %------------------------------------------------------------------------------------------------------------- 996 1003 … … 1135 1142 \label{sec:DYN_zdf} 1136 1143 %----------------------------------------------namzdf------------------------------------------------------ 1137 \forfile{../namelists/namzdf} 1144 1145 \nlst{namzdf} 1138 1146 %------------------------------------------------------------------------------------------------------------- 1139 1147 … … 1212 1220 1213 1221 %----------------------------------------------namdom---------------------------------------------------- 1214 \forfile{../namelists/namdom} 1222 1223 \nlst{namdom} 1215 1224 %------------------------------------------------------------------------------------------------------------- 1216 1225 -
NEMO/trunk/doc/latex/NEMO/subfiles/chap_LBC.tex
r9667 r10146 20 20 \label{sec:LBC_coast} 21 21 %--------------------------------------------nam_lbc------------------------------------------------------- 22 \forfile{../namelists/namlbc} 22 23 \nlst{namlbc} 23 24 %-------------------------------------------------------------------------------------------------------------- 24 25 … … 350 351 351 352 %-----------------------------------------nambdy-------------------------------------------- 352 \forfile{../namelists/nambdy} 353 354 \nlst{nambdy} 353 355 %----------------------------------------------------------------------------------------------- 354 356 %-----------------------------------------nambdy_index-------------------------------------------- 355 %\forfile{../namelists/nambdy_index} 357 % 358 %\nlst{nambdy_index} 356 359 %----------------------------------------------------------------------------------------------- 357 360 %-----------------------------------------nambdy_dta-------------------------------------------- 358 \forfile{../namelists/nambdy_dta} 361 362 \nlst{nambdy_dta} 359 363 %----------------------------------------------------------------------------------------------- 360 364 %-----------------------------------------nambdy_dta-------------------------------------------- 361 %\forfile{../namelists/nambdy_dta2} 365 % 366 %\nlst{nambdy_dta2} 362 367 %----------------------------------------------------------------------------------------------- 363 368 … … 631 636 632 637 %-----------------------------------------nambdy_tide-------------------------------------------- 633 \forfile{../namelists/nambdy_tide} 638 639 \nlst{nambdy_tide} 634 640 %----------------------------------------------------------------------------------------------- 635 641 -
NEMO/trunk/doc/latex/NEMO/subfiles/chap_LDF.tex
r9407 r10146 28 28 29 29 %-----------------------------------nam_traldf - nam_dynldf-------------------------------------------- 30 \forfile{../namelists/namtra_ldf} 31 \forfile{../namelists/namdyn_ldf} 30 31 \nlst{namtra_ldf} 32 33 \nlst{namdyn_ldf} 32 34 %-------------------------------------------------------------------------------------------------------------- 33 35 -
NEMO/trunk/doc/latex/NEMO/subfiles/chap_OBS.tex
r9407 r10146 84 84 85 85 %------------------------------------------namobs_example----------------------------------------------------- 86 %\forfile{../namelists/namobs_example} 86 % 87 %\nlst{namobs_example} 87 88 %------------------------------------------------------------------------------------------------------------- 88 89 … … 114 115 115 116 %------------------------------------------namobs-------------------------------------------------------- 116 \forfile{../namelists/namobs} 117 118 \nlst{namobs} 117 119 %------------------------------------------------------------------------------------------------------------- 118 120 -
NEMO/trunk/doc/latex/NEMO/subfiles/chap_SBC.tex
r10092 r10146 11 11 $\ $\newline % force a new ligne 12 12 %---------------------------------------namsbc-------------------------------------------------- 13 \forfile{../namelists/namsbc} 13 14 \nlst{namsbc} 14 15 %-------------------------------------------------------------------------------------------------------------- 15 16 $\ $\newline % force a new ligne … … 425 426 426 427 %---------------------------------------namsbc_ana-------------------------------------------------- 427 \forfile{../namelists/namsbc_sas} 428 429 \nlst{namsbc_sas} 428 430 %-------------------------------------------------------------------------------------------------------------- 429 431 … … 485 487 486 488 %---------------------------------------namsbc_ana-------------------------------------------------- 487 %\forfile{../namelists/namsbc_ana} 489 % 490 %\nlst{namsbc_ana} 488 491 %-------------------------------------------------------------------------------------------------------------- 489 492 … … 508 511 \label{sec:SBC_flx} 509 512 %------------------------------------------namsbc_flx---------------------------------------------------- 510 \forfile{../namelists/namsbc_flx} 513 514 \nlst{namsbc_flx} 511 515 %------------------------------------------------------------------------------------------------------------- 512 516 … … 547 551 \label{subsec:SBC_blk_core} 548 552 %------------------------------------------namsbc_core---------------------------------------------------- 549 %\forfile{../namelists/namsbc_core} 553 % 554 %\nlst{namsbc_core} 550 555 %------------------------------------------------------------------------------------------------------------- 551 556 … … 611 616 \label{subsec:SBC_blk_clio} 612 617 %------------------------------------------namsbc_clio---------------------------------------------------- 613 %\forfile{../namelists/namsbc_clio} 618 % 619 %\nlst{namsbc_clio} 614 620 %------------------------------------------------------------------------------------------------------------- 615 621 … … 651 657 \label{subsec:SBC_blk_mfs} 652 658 %------------------------------------------namsbc_mfs---------------------------------------------------- 653 %\forfile{../namelists/namsbc_mfs} 659 % 660 %\nlst{namsbc_mfs} 654 661 %---------------------------------------------------------------------------------------------------------- 655 662 … … 689 696 \label{sec:SBC_cpl} 690 697 %------------------------------------------namsbc_cpl---------------------------------------------------- 691 \forfile{../namelists/namsbc_cpl} 698 699 \nlst{namsbc_cpl} 692 700 %------------------------------------------------------------------------------------------------------------- 693 701 … … 727 735 \label{sec:SBC_apr} 728 736 %------------------------------------------namsbc_apr---------------------------------------------------- 729 \forfile{../namelists/namsbc_apr} 737 738 \nlst{namsbc_apr} 730 739 %------------------------------------------------------------------------------------------------------------- 731 740 … … 762 771 763 772 %------------------------------------------nam_tide--------------------------------------- 764 \forfile{../namelists/nam_tide} 773 774 \nlst{nam_tide} 765 775 %----------------------------------------------------------------------------------------- 766 776 … … 799 809 \label{sec:SBC_rnf} 800 810 %------------------------------------------namsbc_rnf---------------------------------------------------- 801 \forfile{../namelists/namsbc_rnf} 811 812 \nlst{namsbc_rnf} 802 813 %------------------------------------------------------------------------------------------------------------- 803 814 … … 914 925 \label{sec:SBC_isf} 915 926 %------------------------------------------namsbc_isf---------------------------------------------------- 916 \forfile{../namelists/namsbc_isf} 927 928 \nlst{namsbc_isf} 917 929 %-------------------------------------------------------------------------------------------------------- 918 930 Namelist variable in \ngn{namsbc}, \np{nn\_isf}, controls the ice shelf representation used. … … 995 1007 \label{sec:SBC_iscpl} 996 1008 %------------------------------------------namsbc_iscpl---------------------------------------------------- 997 \forfile{../namelists/namsbc_iscpl} 1009 1010 \nlst{namsbc_iscpl} 998 1011 %-------------------------------------------------------------------------------------------------------- 999 1012 Ice sheet/ocean coupling is done through file exchange at the restart step. NEMO, at each restart step, … … 1033 1046 \label{sec:ICB_icebergs} 1034 1047 %------------------------------------------namberg---------------------------------------------------- 1035 \forfile{../namelists/namberg} 1048 1049 \nlst{namberg} 1036 1050 %------------------------------------------------------------------------------------------------------------- 1037 1051 … … 1104 1118 \label{subsec:SBC_dcy} 1105 1119 %------------------------------------------namsbc_rnf---------------------------------------------------- 1106 %\forfile{../namelists/namsbc} 1120 % 1121 \nlst{namsbc} 1107 1122 %------------------------------------------------------------------------------------------------------------- 1108 1123 … … 1180 1195 \label{subsec:SBC_ssr} 1181 1196 %------------------------------------------namsbc_ssr---------------------------------------------------- 1182 \forfile{../namelists/namsbc_ssr} 1197 1198 \nlst{namsbc_ssr} 1183 1199 %------------------------------------------------------------------------------------------------------------- 1184 1200 … … 1298 1314 \label{subsec:SBC_wave} 1299 1315 %------------------------------------------namwave---------------------------------------------------- 1300 \forfile{../namelists/namsbc_wave} 1316 1317 \nlst{namsbc_wave} 1301 1318 %------------------------------------------------------------------------------------------------------------- 1302 1319 -
NEMO/trunk/doc/latex/NEMO/subfiles/chap_STO.tex
r9407 r10146 124 124 125 125 %---------------------------------------namsbc-------------------------------------------------- 126 \forfile{../namelists/namsto} 126 127 \nlst{namsto} 127 128 %-------------------------------------------------------------------------------------------------------------- 128 129 -
NEMO/trunk/doc/latex/NEMO/subfiles/chap_TRA.tex
r9407 r10146 66 66 \label{sec:TRA_adv} 67 67 %------------------------------------------namtra_adv----------------------------------------------------- 68 \forfile{../namelists/namtra_adv} 68 69 \nlst{namtra_adv} 69 70 %------------------------------------------------------------------------------------------------------------- 70 71 … … 425 426 \label{sec:TRA_ldf} 426 427 %-----------------------------------------nam_traldf------------------------------------------------------ 427 \forfile{../namelists/namtra_ldf} 428 429 \nlst{namtra_ldf} 428 430 %------------------------------------------------------------------------------------------------------------- 429 431 … … 639 641 \label{sec:TRA_zdf} 640 642 %--------------------------------------------namzdf--------------------------------------------------------- 641 \forfile{../namelists/namzdf} 643 644 \nlst{namzdf} 642 645 %-------------------------------------------------------------------------------------------------------------- 643 646 … … 762 765 \label{subsec:TRA_qsr} 763 766 %--------------------------------------------namqsr-------------------------------------------------------- 764 \forfile{../namelists/namtra_qsr} 767 768 \nlst{namtra_qsr} 765 769 %-------------------------------------------------------------------------------------------------------------- 766 770 … … 872 876 \label{subsec:TRA_bbc} 873 877 %--------------------------------------------nambbc-------------------------------------------------------- 874 \forfile{../namelists/nambbc} 878 879 \nlst{nambbc} 875 880 %-------------------------------------------------------------------------------------------------------------- 876 881 %>>>>>>>>>>>>>>>>>>>>>>>>>>>> … … 910 915 \label{sec:TRA_bbl} 911 916 %--------------------------------------------nambbl--------------------------------------------------------- 912 \forfile{../namelists/nambbl} 917 918 \nlst{nambbl} 913 919 %-------------------------------------------------------------------------------------------------------------- 914 920 … … 1069 1075 \label{sec:TRA_dmp} 1070 1076 %--------------------------------------------namtra_dmp------------------------------------------------- 1071 \forfile{../namelists/namtra_dmp} 1077 1078 \nlst{namtra_dmp} 1072 1079 %-------------------------------------------------------------------------------------------------------------- 1073 1080 … … 1153 1160 \label{sec:TRA_nxt} 1154 1161 %--------------------------------------------namdom----------------------------------------------------- 1155 \forfile{../namelists/namdom} 1162 1163 \nlst{namdom} 1156 1164 %-------------------------------------------------------------------------------------------------------------- 1157 1165 … … 1191 1199 \label{sec:TRA_eosbn2} 1192 1200 %--------------------------------------------nameos----------------------------------------------------- 1193 \forfile{../namelists/nameos} 1201 1202 \nlst{nameos} 1194 1203 %-------------------------------------------------------------------------------------------------------------- 1195 1204 -
NEMO/trunk/doc/latex/NEMO/subfiles/chap_ZDF.tex
r9407 r10146 52 52 \label{subsec:ZDF_cst} 53 53 %--------------------------------------------namzdf--------------------------------------------------------- 54 \forfile{../namelists/namzdf} 54 55 \nlst{namzdf} 55 56 %-------------------------------------------------------------------------------------------------------------- 56 57 … … 78 79 79 80 %--------------------------------------------namric--------------------------------------------------------- 80 \forfile{../namelists/namzdf_ric} 81 82 \nlst{namzdf_ric} 81 83 %-------------------------------------------------------------------------------------------------------------- 82 84 … … 136 138 137 139 %--------------------------------------------namzdf_tke-------------------------------------------------- 138 \forfile{../namelists/namzdf_tke} 140 141 \nlst{namzdf_tke} 139 142 %-------------------------------------------------------------------------------------------------------------- 140 143 … … 512 515 513 516 %--------------------------------------------namzdf_gls--------------------------------------------------------- 514 \forfile{../namelists/namzdf_gls} 517 518 \nlst{namzdf_gls} 515 519 %-------------------------------------------------------------------------------------------------------------- 516 520 … … 619 623 620 624 %--------------------------------------------namzdf_osm--------------------------------------------------------- 621 \forfile{../namelists/namzdf_osm} 625 626 \nlst{namzdf_osm} 622 627 %-------------------------------------------------------------------------------------------------------------- 623 628 … … 631 636 632 637 %--------------------------------------------namzdf-------------------------------------------------------- 633 \forfile{../namelists/namzdf} 638 639 \nlst{namzdf} 634 640 %-------------------------------------------------------------------------------------------------------------- 635 641 … … 651 657 652 658 %--------------------------------------------namzdf-------------------------------------------------------- 653 \forfile{../namelists/namzdf} 659 660 \nlst{namzdf} 654 661 %-------------------------------------------------------------------------------------------------------------- 655 662 … … 717 724 718 725 %--------------------------------------------namzdf-------------------------------------------------------- 719 \forfile{../namelists/namzdf} 726 727 \nlst{namzdf} 720 728 %-------------------------------------------------------------------------------------------------------------- 721 729 … … 775 783 776 784 %-------------------------------------------namzdf_ddm------------------------------------------------- 777 %\forfile{../namelists/namzdf_ddm} 785 % 786 %\nlst{namzdf_ddm} 778 787 %-------------------------------------------------------------------------------------------------------------- 779 788 … … 857 866 858 867 %--------------------------------------------nambfr-------------------------------------------------------- 859 %\forfile{../namelists/nambfr} 868 % 869 %\nlst{nambfr} 860 870 %-------------------------------------------------------------------------------------------------------------- 861 871 … … 1196 1206 1197 1207 %--------------------------------------------namzdf_tmx-------------------------------------------------- 1198 %\forfile{../namelists/namzdf_tmx} 1208 % 1209 %\nlst{namzdf_tmx} 1199 1210 %-------------------------------------------------------------------------------------------------------------- 1200 1211 … … 1318 1329 1319 1330 %--------------------------------------------namzdf_tmx_new------------------------------------------ 1320 %\forfile{../namelists/namzdf_tmx_new} 1331 % 1332 %\nlst{namzdf_tmx_new} 1321 1333 %-------------------------------------------------------------------------------------------------------------- 1322 1334 -
NEMO/trunk/doc/latex/NEMO/subfiles/chap_misc.tex
r9407 r10146 124 124 \noindent Add the logical switch to \ngn{namcfg} in the configuration namelist and set true: 125 125 %--------------------------------------------namcfg-------------------------------------------------------- 126 \forfile{../namelists/namcfg} 126 127 \nlst{namcfg} 127 128 %-------------------------------------------------------------------------------------------------------------- 128 129 … … 233 234 \label{sec:MISC_opt} 234 235 %--------------------------------------------namctl------------------------------------------------------- 235 \forfile{../namelists/namctl} 236 237 \nlst{namctl} 236 238 %-------------------------------------------------------------------------------------------------------------- 237 239 -
NEMO/trunk/doc/latex/NEMO/subfiles/chap_model_basics_zstar.tex
r9407 r10146 78 78 \label{sec:DYN_hpg_spg} 79 79 %-----------------------------------------nam_dynspg---------------------------------------------------- 80 \forfile{../namelists/nam_dynspg} 80 81 \nlst{nam_dynspg} 81 82 %------------------------------------------------------------------------------------------------------------ 82 83 Options are defined through the \ngn{nam\_dynspg} namelist variables. … … 115 116 \label{subsec:DYN_spg_ts} 116 117 %--------------------------------------------namdom---------------------------------------------------- 117 \forfile{../namelists/namdom} 118 119 \nlst{namdom} 118 120 %-------------------------------------------------------------------------------------------------------------- 119 121 The split-explicit free surface formulation used in OPA follows the one proposed by \citet{Griffies2004}. The general idea is to solve the free surface equation with a small time step, while the three dimensional prognostic variables are solved with a longer time step that is a multiple of \np{rdtbt} -
NEMO/trunk/doc/latex/NEMO/subfiles/chap_time_domain.tex
r9407 r10146 286 286 287 287 %--------------------------------------------namrun------------------------------------------- 288 \ forfile{../namelists/namrun}288 \nlst{namrun} 289 289 %-------------------------------------------------------------------------------------------------------------- 290 290 … … 337 337 \label{subsec:STP_time} 338 338 %--------------------------------------------namrun------------------------------------------- 339 \forfile{../namelists/namdom} 339 340 \nlst{namdom} 340 341 %-------------------------------------------------------------------------------------------------------------- 341 342
Note: See TracChangeset
for help on using the changeset viewer.