This module solves the layered quasi-geostrophic equations on a beta-plane of variable fluid
depth H - h(x, y)
. The flow in each layer is obtained through a streamfunction \psi_j
as
(u_j, \upsilon_j) = (-\partial_y \psi_j, \partial_x \psi_j)
, j = 1, \dots, n
, where n
is the number of fluid layers.
The QGPV in each layer is
where q_j
incorporates the relative vorticity in each layer \nabla^2\psi_j
and the
vortex stretching terms:
with
In view of the relationships above, when we convert to Fourier space q
's and \psi
's are
related via the matrix equation
where
Including an imposed zonal flow U_j(y)
in each layer, the equations of motion are:
with
The eddy kinetic energy in each layer and the eddy potential energy that corresponds to each
fluid interface is computed via energies()
:
GeophysicalFlows.MultilayerQG.energies
The lateral eddy fluxes in each layer and the vertical fluxes across fluid interfaces are
computed via fluxes()
:
GeophysicalFlows.MultilayerQG.fluxes
Matrices \mathbb{S}_{\boldsymbol{k}}
as well as \mathbb{S}^{-1}_{\boldsymbol{k}}
are included
in params
as params.S
and params.S⁻¹
respectively. Additionally, the background PV gradients
\partial_x Q
and \partial_y Q
are also included in the params
as params.Qx
and params.Qy
.
You can get \widehat{\psi}_j
from \widehat{q}_j
with streamfunctionfrompv!(psih, qh, params, grid)
,
while to get \widehat{q}_j
from \widehat{\psi}_j
you need to call pvfromstreamfunction!(qh, psih, params, grid)
.
The equations of motion are time-stepped forward in Fourier space:
In doing so the Jacobian is computed in the conservative form: \mathsf{J}(f,g) = \partial_y [ (\partial_x f) g] -\partial_x[ (\partial_y f) g]
.
Equations are formulated using sol = qh
.
Thus:
examples/multilayerqg_2layer.jl
: A script that simulates the growth and equilibration of baroclinic eddy turbulence in the Phillips 2-layer model.