multilayer.h
📄 View in API Reference (Doxygen) · View on basilisk.fr
Multilayer Saint-Venant system with mass exchanges
The Saint-Venant system is extended to multiple layers following Audusse et al, 2011 as
with
with $\mathrm{layer}_l$ the relative thickness of the layers satisfying
The momentum equation in each layer is thus
where $G_{l+1/2}$ is the relative vertical transport velocity between layers and the second term corresponds to viscous friction between layers.
These last two terms are the only difference with the one layer system.
The horizontal velocity in each layer is stored in *ul* and the vertical velocity between layers in *wl*.
vector * ul = NULL;
scalar * wl = NULL;
double * layer;
The index of the layer is set as a field attribute.
attribute {
int l;
}
Viscous friction between layers
Boundary conditions on the top and bottom layers need to be added to close the system for the viscous stresses. We chose to impose a Neumann condition on the top boundary i.e.
and a Navier slip condition on the bottom i.e.
By default the viscosity is zero and we impose free-slip on the top boundary and no-slip on the bottom boundary i.e. $\dot{u}_t = 0$, $\lambda_b = 0$, $u_b = 0$.
double nu = 0.;
const scalar lambda0[] = 0, dut0[] = 0, u_b0[] = 0;
(const) scalar lambda_b = lambda0, dut = dut0, u_b = u_b0;
// fixme: should be able to replace the two lines above with:
// (const) scalar lambda_b[] = 0, dut[] = 0, u_b[] = 0;
For stability, we discretise the viscous friction term implicitly as
which can be expressed as the linear system
where $\mathbf{M}$ is a tridiagonal matrix. The lower, principal and upper diagonals are *a*, *b* and *c* respectively.
void vertical_viscosity (Point point, double h, vector * ul, double dt)
{
if (nu) {
double a[nl], b[nl], c[nl], rhs[nl];
foreach_dimension() {
The *rhs* of the tridiagonal system is $h_lu_l = h\mathrm{layer}_lu_l$.
int l = 0;
for (vector u in ul)
rhs[l] = h*layer[l]*u.x[], l++;
The lower, principal and upper diagonals $a$, $b$ and $c$ are given by
for (l = 1; l < nl - 1; l++) {
a[l] = - 2.*nu*dt/(h*(layer[l-1] + layer[l]));
c[l] = - 2.*nu*dt/(h*(layer[l] + layer[l+1]));
b[l] = layer[l]*h - a[l] - c[l];
}
For the top layer the boundary conditions give the (ghost) boundary value
which gives the diagonal coefficient and right-hand-side
a[nl-1] = - 2.*nu*dt/(h*(layer[max(0,nl-2)] + layer[nl-1]));
b[nl-1] = layer[nl-1]*h - a[nl-1];
rhs[nl-1] += nu*dt*dut[];
For the bottom layer, the boundary conditions give the (ghost) boundary value $u_{- 1}$
which gives the diagonal coefficient and right-hand-side
c[0] = - 2.*dt*nu/(h*(layer[0] + layer[min(1,nl-1)]));
b[0] = layer[0]*h - c[0] + 2.*nu*dt/(2.*lambda_b[] + h*layer[0]);
rhs[0] += 2.*nu*dt/(2.*lambda_b[] + h*layer[0])*u_b[];
We can now solve the tridiagonal system using the Thomas algorithm.
for (l = 1; l < nl; l++) {
b[l] -= a[l]*c[l-1]/b[l-1];
rhs[l] -= a[l]*rhs[l-1]/b[l-1];
}
vector u = ul[nl-1];
u.x[] = a[nl-1] = rhs[nl-1]/b[nl-1];
for (l = nl - 2; l >= 0; l--) {
u = ul[l];
u.x[] = a[l] = (rhs[l] - c[l]*a[l+1])/b[l];
}
}
}
}
Fluxes between layers
The relative vertical velocity between layers $l$ and $l+1$ is defined as (eq. (2.22) of Audusse et al, 2011)
with
void vertical_fluxes (vector * evolving, vector * updates,
scalar * divl, scalar dh)
{
foreach() {
double Gi = 0., sumjl = 0.;
for (int l = 0; l < nl - 1; l++) {
scalar div = divl[l];
Gi += div[] + layer[l]*dh[];
sumjl += layer[l];
scalar w = div;
w[] = dh[]*sumjl - Gi;
foreach_dimension() {
To compute the vertical advection term, we need an estimate of the velocity at $l+1/2$. This is obtained using simple upwinding according to the sign of the interface velocity $\mathrm{Gi} = G_{l+1/2}$ and the values of the velocity in the $l$ and $l+1$ layers. Note that the inequality of upwinding is consistent with equs. (5.110) of Audusse et al, 2011 and (77) of Audusse et al, 2011b but not with eq. (2.23) of Audusse et al, 2011.
scalar ub = evolving[l].x, ut = evolving[l + 1].x;
double ui = Gi < 0. ? ub[] : ut[];
The flux at $l+1/2$ is then added to the updates of the bottom layer and substracted from the updates of the top layer.
double flux = Gi*ui;
scalar du_b = updates[l].x, du_t = updates[l + 1].x;
du_b[] += flux/layer[l];
du_t[] -= flux/layer[l + 1];
To compute the vertical velocity we use the definition of the mass flux term (eq. 2.13 of Audusse et al, 2011):
We can write the vertical position of the interface as:
so that the vertical velocity is:
w[] += ui*((zb[1] - zb[-1]) + (h[1] - h[-1])*sumjl)/(2.*Delta);
}
}
}
}