Skip to content
Snippets Groups Projects
Commit e2463e70 authored by Victor Stepanenko's avatar Victor Stepanenko
Browse files

A case for driving parameter botfric=0 added

parent 9ff56a73
No related branches found
No related tags found
No related merge requests found
This is XeTeX, Version 3.14159265-2.6-0.99992 (TeX Live 2015/Debian) (preloaded format=xelatex 2019.1.26) 16 APR 2019 09:05
This is pdfTeX, Version 3.14159265-2.6-1.40.16 (TeX Live 2015/Debian) (preloaded format=pdflatex 2019.1.26) 7 AUG 2019 20:47
entering extended mode
restricted \write18 enabled.
%&-line parsing enabled.
......@@ -124,7 +124,7 @@ Package: geometry 2010/09/12 v5.6 Page Geometry
(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/ifpdf.sty
Package: ifpdf 2011/01/30 v2.3 Provides the ifpdf switch (HO)
Package ifpdf Info: pdfTeX in PDF mode is not detected.
Package ifpdf Info: pdfTeX in PDF mode is detected.
)
(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/ifvtex.sty
Package: ifvtex 2010/03/01 v1.5 Detect VTeX and its facilities (HO)
......@@ -222,9 +222,9 @@ LaTeX Font Info: ... okay on input line 46.
\c@lstlisting=\count120
*geometry* driver: auto-detecting
*geometry* detected driver: xetex
*geometry* detected driver: pdftex
*geometry* verbose mode - [ preamble ] result:
* driver: xetex
* driver: pdftex
* paper: a4paper
* layout: <same size as paper>
* layoutoffset:(h,v)=(0.0pt,0.0pt)
......@@ -271,8 +271,9 @@ Package caption Info: End \AtBeginDocument code.
[1
]
{/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map}]
LaTeX Font Info: Try loading font information for OML+cmr on input line 66.
(/usr/share/texlive/texmf-dist/tex/latex/base/omlcmr.fd
File: omlcmr.fd 2014/09/29 v2.5h Standard LaTeX font definitions
)
......@@ -333,7 +334,8 @@ Overfull \hbox (14.67734pt too wide) in alignment at lines 370--414
[]
[6]
Missing character: There is no Е in font cmr10!
Missing character: There is no in font cmr10!
Missing character: There is no in font cmr10!
Overfull \hbox (14.67734pt too wide) in alignment at lines 414--459
[] []
......@@ -350,12 +352,27 @@ LaTeX Font Info: Font shape `OMS/cmr/m/n' in size <10> not available
[9]
(./users_guide.aux) )
Here is how much of TeX's memory you used:
3921 strings out of 493638
57852 string characters out of 6146796
151227 words of memory out of 5000000
7326 multiletter control sequences out of 15000+600000
3924 strings out of 493029
57961 string characters out of 6136234
155919 words of memory out of 5000000
7463 multiletter control sequences out of 15000+600000
5995 words of font info for 22 fonts, out of 8000000 for 9000
1328 hyphenation exceptions out of 8191
1141 hyphenation exceptions out of 8191
36i,8n,39p,563b,1088s stack positions out of 5000i,500n,10000p,200000b,80000s
</usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts
/cm/cmbx12.pfb></usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cm
mi10.pfb></usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmr10.pf
b></usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmr12.pfb></usr
/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmr17.pfb></usr/share/
texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmr7.pfb></usr/share/texlive/
texmf-dist/fonts/type1/public/amsfonts/cm/cmsl10.pfb></usr/share/texlive/texmf-
dist/fonts/type1/public/amsfonts/cm/cmsy10.pfb></usr/share/texlive/texmf-dist/f
onts/type1/public/amsfonts/cm/cmsy7.pfb></usr/share/texlive/texmf-dist/fonts/ty
pe1/public/amsfonts/cm/cmti10.pfb>
Output written on users_guide.pdf (9 pages, 162460 bytes).
PDF statistics:
74 PDF objects out of 1000 (max. 8388607)
52 compressed objects within 1 object stream
0 named destinations out of 1000 (max. 500000)
1 words of extra memory for PDF output out of 10000 (max. 10000000)
Output written on users_guide.pdf (9 pages).
No preview for this file type
No preview for this file type
......@@ -370,7 +370,7 @@ give significant speedup \\
\hline
\emph{dyn\_pgrad} & Dynamic pressure gradient: 0 -- off, 1 -- barotropic pressure gradient, 2 -- two-layer approximation for pressure gradient, 3 -- multilayer model for pressure gradient, 4 -- multilayer model for pressure gradient with automatic layer identification, 5 -- river case: pressure gradient is found from Manning's formula \\
\hline
\emph{botfric} & The law for friction at the sloping bottom: 1 - linear friction, 2 - quadratic friction \\
\emph{botfric} & The law for friction at the sloping bottom: 0 - no bottom friction, 1 - linear friction, 2 - quadratic friction \\
\hline
\emph{horvisc} & Horizontal viscosity, m$^2$/s, used to damp the 1-st horizontal velocity mode \\
\hline
......
......@@ -350,6 +350,8 @@ if (depth_area(1,2) >= 0.) then
do i = 2, M
select case (botfric%par)
case(0)
xx = 0.
case(1)
xx = clin_bot !linear drag
case(2)
......@@ -368,6 +370,8 @@ if (depth_area(1,2) >= 0.) then
enddo
select case (botfric%par)
case(0)
xx = 0.
case(1)
xx = clin_bot !linear drag
case(2)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment