You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/src/modules/barotropicqgql.md
+4-4
Original file line number
Diff line number
Diff line change
@@ -14,13 +14,13 @@ where overline above denotes a zonal mean, $\overline{\phi}(y, t) = \int \phi(x,
14
14
- Constantinou, N. C., Farrell, B. F., and Ioannou, P. J. (2014). [Emergence and equilibration of jets in beta-plane turbulence: applications of Stochastic Structural Stability Theory.](http://doi.org/10.1175/JAS-D-13-076.1)*J. Atmos. Sci.*, **71 (5)**, 1818-1842.
15
15
16
16
17
-
As in the [BarotropicQG module](barotropicqg.md), the flow is obtained through a streamfunction $\psi$ as $(u, \upsilon) = (-\partial_y\psi, \partial_x\psi)$. All flow fields can be obtained from the quasi-geostrophic potential vorticity (QGPV). Here the QGPV is
17
+
As in the [BarotropicQG module](barotropicqg.md), the flow is obtained through a streamfunction $\psi$ as $(u, v) = (-\partial_y\psi, \partial_x\psi)$. All flow fields can be obtained from the quasi-geostrophic potential vorticity (QGPV). Here the QGPV is
The dynamical variable is the component of the vorticity of the flow normal to the plane of motion, $\zeta\equiv \partial_x \upsilon- \partial_y u = \nabla^2\psi$. Also, we denote the topographic PV with $\eta\equiv f_0 h/H$. After we apply the eddy-mean flow decomposition above, the QGPV dynamics are:
23
+
The dynamical variable is the component of the vorticity of the flow normal to the plane of motion, $\zeta\equiv \partial_x v- \partial_y u = \nabla^2\psi$. Also, we denote the topographic PV with $\eta\equiv f_0 h/H$. After we apply the eddy-mean flow decomposition above, the QGPV dynamics are:
Copy file name to clipboardexpand all lines: docs/src/modules/singlelayerqg.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -3,11 +3,11 @@
3
3
### Basic Equations
4
4
5
5
This module solves the barotropic or equivalent barotropic quasi-geostrophic vorticity equation
6
-
on a beta-plane of variable fluid depth ``H - h(x, y)``. The flow is obtained through a streamfunction ``\psi`` as ``(u, \upsilon) = (-\partial_y \psi, \partial_x \psi)``. All flow
6
+
on a beta-plane of variable fluid depth ``H - h(x, y)``. The flow is obtained through a streamfunction ``\psi`` as ``(u, v) = (-\partial_y \psi, \partial_x \psi)``. All flow
7
7
fields can be obtained from the quasi-geostrophic potential vorticity (QGPV). Here the QGPV is
@@ -53,11 +53,11 @@ For the forced case ($f\ne 0$) parameters AbstractType is build with `ForcedPara
53
53
For the unforced case ($f=0$) variables AbstractType is build with `Vars` and it includes:
54
54
-`zeta`: Array of Floats; relative vorticity.
55
55
-`u`: Array of Floats; $x$-velocity, $u$.
56
-
-`v`: Array of Floats; $y$-velocity, $\upsilon$.
56
+
-`v`: Array of Floats; $y$-velocity, $v$.
57
57
-`sol`: Array of Complex; the solution, $\widehat{\zeta}$.
58
58
-`zetah`: Array of Complex; the Fourier transform $\widehat{\zeta}$.
59
59
-`uh`: Array of Complex; the Fourier transform $\widehat{u}$.
60
-
-`vh`: Array of Complex; the Fourier transform $\widehat{\upsilon}$.
60
+
-`vh`: Array of Complex; the Fourier transform $\widehat{v}$.
61
61
62
62
For the forced case ($f\ne 0$) variables AbstractType is build with `ForcedVars`. It includes all variables in `Vars` and additionally:
63
63
-`Fh`: Array of Complex; the Fourier transform $\widehat{f}$.
@@ -73,7 +73,7 @@ The nonlinear term $\mathcal{N}(\widehat{\zeta})$ is computed via functions:
73
73
74
74
-`calcN_forced!`: computes $- \widehat{\mathsf{J}(\psi, \zeta)}$ via `calcN_advection!` and then adds to it the forcing $\widehat{f}$ computed via `calcF!` function. Also saves the solution $\widehat{\zeta}$ of the previous time-step in array `prevsol`.
75
75
76
-
-`updatevars!`: uses `sol` to compute $\zeta$, $u$, $\upsilon$, $\widehat{u}$, and $\widehat{\upsilon}$ and stores them into corresponding arrays of `Vars`/`ForcedVars`.
76
+
-`updatevars!`: uses `sol` to compute $\zeta$, $u$, $v$, $\widehat{u}$, and $\widehat{v}$ and stores them into corresponding arrays of `Vars`/`ForcedVars`.
0 commit comments