[108] | 1 | \documentclass[a4paper,10pt]{article} |
---|
| 2 | %\usepackage{graphicx} |
---|
| 3 | \usepackage{natbib} % si appel à bibtex |
---|
| 4 | %\usepackage[francais]{babel} |
---|
| 5 | %\usepackage[latin1]{inputenc} % accents directs (é...), avec babel |
---|
| 6 | %\usepackage{rotating} |
---|
| 7 | |
---|
| 8 | \setlength{\hoffset}{-1.in} |
---|
| 9 | \setlength{\oddsidemargin}{3.cm} |
---|
| 10 | \setlength{\textwidth}{15.cm} |
---|
| 11 | \setlength{\marginparsep}{0.mm} |
---|
| 12 | \setlength{\marginparwidth}{0.mm} |
---|
| 13 | |
---|
| 14 | \setlength{\voffset}{-1.in} |
---|
| 15 | \setlength{\topmargin}{0.mm} |
---|
| 16 | \setlength{\headheight}{0.mm} |
---|
| 17 | \setlength{\headsep}{30.mm} |
---|
| 18 | \setlength{\textheight}{24.cm} |
---|
| 19 | \setlength{\footskip}{1.cm} |
---|
| 20 | |
---|
| 21 | \setlength{\parindent}{0.mm} |
---|
| 22 | \setlength{\parskip}{1 em} |
---|
| 23 | \newcommand{\ten}[1]{$\times 10^{#1}$~} |
---|
| 24 | \renewcommand{\baselinestretch}{1.} |
---|
| 25 | |
---|
| 26 | \begin{document} |
---|
| 27 | \pagestyle{plain} |
---|
| 28 | |
---|
| 29 | \begin{center} |
---|
| 30 | {\bf \LARGE |
---|
| 31 | Documentation for LMDZ, Planets version |
---|
| 32 | |
---|
| 33 | \vspace{1cm} |
---|
| 34 | \Large |
---|
| 35 | The upper boundary sponge layer |
---|
| 36 | } |
---|
| 37 | |
---|
| 38 | \vspace{1cm} |
---|
| 39 | S\'ebastien Lebonnois |
---|
| 40 | |
---|
| 41 | \vspace{1cm} |
---|
| 42 | Latest version: \today |
---|
| 43 | \end{center} |
---|
| 44 | |
---|
| 45 | %\section{Theoretical aspects} |
---|
| 46 | |
---|
| 47 | \section{Pratical aspects in the code} |
---|
| 48 | |
---|
| 49 | The sponge layer is applied at the upper boundary when the \textsf{ok\_strato} |
---|
| 50 | flag is set to {\em True} in \textsf{gcm.def} |
---|
| 51 | (this parameter also controls the application of a second step in the |
---|
| 52 | horizontal dissipation). |
---|
| 53 | |
---|
| 54 | The tendencies for the upper boundary sponge layer are computed separately in |
---|
| 55 | the \textsf{top\_bound.F} routine, called from \textsf{leapfrog.F}. |
---|
| 56 | These tendencies are \textsf{dutop}, \textsf{dvtop} and \textsf{dhtop}, in |
---|
| 57 | unit/s. |
---|
| 58 | |
---|
| 59 | Three parameters may be adjusted in the \textsf{gcm.def} file: |
---|
| 60 | \begin{itemize} |
---|
| 61 | \item \textsf{iflag\_top\_bound}: selects the affected layers. |
---|
| 62 | \begin{itemize} |
---|
| 63 | \item 1: only the top 4 layers are affected. In this case, the damping rate |
---|
| 64 | is divided by 2 in the second layer, 4 in the third and 8 in the fourth. |
---|
| 65 | \item 2: layers with pressure lower than 100 times the top pressure. |
---|
| 66 | In this case, the damping rate depends linearly on the pressure. |
---|
| 67 | \end{itemize} |
---|
| 68 | \item \textsf{mode\_top\_bound}: selects how the fields are affected. |
---|
| 69 | \begin{itemize} |
---|
| 70 | \item 0: No sponge layer is applied. |
---|
| 71 | \item 1: Zonal and meridional winds are damped to zero. |
---|
| 72 | \item 2: Zonal and meridional winds are damped to their zonally averaged value. |
---|
| 73 | \item 3: Temperature, zonal and meridional winds are damped to their zonally |
---|
| 74 | averaged value. |
---|
| 75 | \end{itemize} |
---|
| 76 | \item \textsf{tau\_top\_bound}: damping rate (in /s) in the top layer. |
---|
| 77 | \end{itemize} |
---|
| 78 | |
---|
| 79 | %\begin{thebibliography}{2} |
---|
| 80 | %\providecommand{\natexlab}[1]{#1} |
---|
| 81 | %\expandafter\ifx\csname urlstyle\endcsname\relax |
---|
| 82 | % \providecommand{\doi}[1]{doi:\discretionary{}{}{}#1}\else |
---|
| 83 | % \providecommand{\doi}{doi:\discretionary{}{}{}\begingroup |
---|
| 84 | % \urlstyle{rm}\Url}\fi |
---|
| 85 | |
---|
| 86 | %\end{thebibliography} |
---|
| 87 | |
---|
| 88 | \end{document} |
---|