Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adapt Svärd-Kalisch equations to Serre-Green-Naghdi equations #146

Merged
merged 19 commits into from
Aug 25, 2024
Merged
Show file tree
Hide file tree
Changes from 11 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/callbacks_step/analysis.jl
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ end
# the derivative of the velocity `v_x`.
function analyze(quantity::Union{typeof(energy_total_modified), typeof(entropy_modified)},
q, t, semi::Semidiscretization)
integrate_quantity(quantity, q, semi)
integrate_quantity!(semi.cache.tmp1, quantity, q, semi)
ranocha marked this conversation as resolved.
Show resolved Hide resolved
end

pretty_form_utf(::typeof(waterheight_total)) = "∫η"
Expand Down
34 changes: 32 additions & 2 deletions src/equations/equations.jl
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ of the correct length `nvariables(equations)`.
function bathymetry end

"""
lake_at_rest_error(q, equations::AbstractShallowWaterEquations)
lake_at_rest_error(q, equations::AbstractShallowWaterEquations)

Calculate the error for the "lake-at-rest" test case where the
[`waterheight_total`](@ref) ``\\eta = h + b`` should
Expand Down Expand Up @@ -272,10 +272,14 @@ contributions.
terms are present.
"""
function energy_total_modified(q_global, equations::AbstractShallowWaterEquations, cache)
e = similar(q_global.x[begin])
return energy_total_modified!(e, q_global, equations, cache)
end

function energy_total_modified!(e, q_global, equations::AbstractShallowWaterEquations, cache)
JoshuaLampert marked this conversation as resolved.
Show resolved Hide resolved
# `q_global` is an `ArrayPartition` of the primitive variables at all nodes
@assert nvariables(equations) == length(q_global.x)

e = similar(q_global.x[begin])
for i in eachindex(q_global.x[begin])
e[i] = energy_total(get_node_vars(q_global, equations, i), equations)
end
Expand All @@ -294,6 +298,8 @@ Alias for [`energy_total_modified`](@ref).
energy_total_modified(q_global, equations, cache)
end

@inline entropy_modified!(e, q_global, equations, cache) = energy_total_modified!(e, q_global, equations, cache)
JoshuaLampert marked this conversation as resolved.
Show resolved Hide resolved

varnames(::typeof(entropy_modified), equations) = ("U_modified",)

# Add methods to show some information on systems of equations.
Expand Down Expand Up @@ -448,3 +454,27 @@ abstract type AbstractSerreGreenNaghdiEquations{NDIMS, NVARS} <:
const AbstractSerreGreenNaghdiEquations1D = AbstractSerreGreenNaghdiEquations{1}
include("serre_green_naghdi_1d.jl")
include("hyperbolic_serre_green_naghdi_1d.jl")

function solve_system_matrix!(dv, system_matrix, rhs,
::Union{SvaerdKalischEquations1D,
SerreGreenNaghdiEquations1D},
D1, cache)
if issparse(system_matrix)
(; factorization) = cache
cholesky!(factorization, system_matrix; check = false)
if issuccess(factorization)
scale_by_mass_matrix!(rhs, D1)
# see https://github.com/JoshuaLampert/DispersiveShallowWater.jl/issues/122
dv .= factorization \ rhs
else
# The factorization may fail if the time step is too large
# and h becomes negative.
fill!(dv, NaN)
end
else
factorization = cholesky!(system_matrix)
scale_by_mass_matrix!(rhs, D1)
ldiv!(dv, factorization, rhs)
end
return nothing
end
10 changes: 4 additions & 6 deletions src/equations/hyperbolic_serre_green_naghdi_1d.jl
Original file line number Diff line number Diff line change
Expand Up @@ -433,7 +433,7 @@ end

# The entropy/energy takes the whole `q` for every point in space
"""
energy_total_modified(q_global, equations::HyperbolicSerreGreenNaghdiEquations1D, cache)
energy_total_modified!(q_global, equations::HyperbolicSerreGreenNaghdiEquations1D, cache)
JoshuaLampert marked this conversation as resolved.
Show resolved Hide resolved

Return the modified total energy of the primitive variables `q_global` for the
JoshuaLampert marked this conversation as resolved.
Show resolved Hide resolved
[`HyperbolicSerreGreenNaghdiEquations1D`](@ref).
Expand All @@ -450,9 +450,9 @@ the total modified energy is given by

`q_global` is a vector of the primitive variables at ALL nodes.
"""
function energy_total_modified(q_global,
equations::HyperbolicSerreGreenNaghdiEquations1D,
cache)
function energy_total_modified!(e, q_global,
equations::HyperbolicSerreGreenNaghdiEquations1D,
cache)
# unpack physical parameters and SBP operator `D1`
g = gravity_constant(equations)
(; lambda) = equations
Expand All @@ -464,8 +464,6 @@ function energy_total_modified(q_global,
@.. b = equations.eta0 - D
@.. h = eta - b

e = zero(h)

# 1/2 g eta^2 + 1/2 h v^2 + 1/6 h^3 w^2 + λ/6 h (1 - H/h)^2
@.. e = 1 / 2 * g * eta^2 + 1 / 2 * h * v^2 + 1 / 6 * h * w^2 +
lambda / 6 * h * (1 - H / h)^2
Expand Down
60 changes: 15 additions & 45 deletions src/equations/serre_green_naghdi_1d.jl
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ approximation, the Serre-Green-Naghdi equations are
+ \frac{1}{2} g (h^2)_x + g h b_x + \frac{1}{2} h (v^2)_x
+ p_x + \frac{3}{2} \frac{p}{h} b_x + \psi b_x &= 0,\\
p &= \frac{1}{3} h^3 v_{x}^2 - \frac{1}{3} h^3 v v_{xx}
+ \frac{1}{2} h^2 v (b_x v)_x,
+ \frac{1}{2} h^2 v (b_x v)_x,\\
\psi &= \frac{1}{4} h v (b_x v)_x.
\end{aligned}
```
Expand All @@ -57,8 +57,8 @@ References for the Serre-Green-Naghdi system can be found in
[DOI: 10.1017/S0022112076002425](https://doi.org/10.1017/S0022112076002425)

The semidiscretization implemented here conserves
- the total water mass (integral of h) as a linear invariant
- the total momentum (integral of h v) as a nonlinear invariant if the bathymetry is constant
- the total water mass (integral of ``h``) as a linear invariant
- the total momentum (integral of ``h v``) as a nonlinear invariant if the bathymetry is constant
- the total modified energy

for periodic boundary conditions (see Ranocha and Ricchiuto (2024)).
Expand Down Expand Up @@ -310,7 +310,7 @@ function create_cache(mesh,
end

function assemble_system_matrix!(cache, h, D1, D1mat,
equations::SerreGreenNaghdiEquations1D{BathymetryFlat})
::SerreGreenNaghdiEquations1D{BathymetryFlat})
(; M_h, M_h3_3) = cache

@.. M_h = h
Expand Down Expand Up @@ -355,28 +355,6 @@ function assemble_system_matrix!(cache, h, b_x, D1, D1mat,
Diagonal(M_h2_bx) * D1mat)
end

function solve_system_matrix!(dv, system_matrix, rhs,
::SerreGreenNaghdiEquations1D,
D1, cache)
if issparse(system_matrix)
(; factorization) = cache
cholesky!(factorization, system_matrix; check = false)
if issuccess(factorization)
scale_by_mass_matrix!(rhs, D1)
dv .= factorization \ rhs
else
# The factorization may fail if the time step is too large
# and h becomes negative.
fill!(dv, NaN)
end
else
factorization = cholesky!(system_matrix)
scale_by_mass_matrix!(rhs, D1)
ldiv!(dv, factorization, rhs)
end
return nothing
end

# Discretization that conserves
# - the total water mass (integral of h) as a linear invariant
# - the total momentum (integral of h v) as a nonlinear invariant for flat bathymetry
Expand Down Expand Up @@ -417,7 +395,7 @@ function rhs_sgn_central!(dq, q, equations, source_terms, cache, ::BathymetryFla
@trixi_timeit timer() "hyperbolic terms" begin
# Compute all derivatives required below
(; h, b, h_x, v_x, h2_x, hv_x, v2_x, h2_v_vx_x,
h_vx_x, p_x, tmp, M_h, M_h3_3) = cache
h_vx_x, p_x, tmp) = cache

@.. b = equations.eta0 - D
@.. h = eta - b
Expand Down Expand Up @@ -499,8 +477,7 @@ function rhs_sgn_upwind!(dq, q, equations, source_terms, cache, ::BathymetryFlat
@trixi_timeit timer() "hyperbolic terms" begin
# Compute all derivatives required below
(; h, b, h_x, v_x, v_x_upwind, h2_x, hv_x, v2_x,
h2_v_vx_x, h_vx_x, p_x, tmp,
M_h, M_h3_3) = cache
h2_v_vx_x, h_vx_x, p_x, tmp) = cache

@.. b = equations.eta0 - D
@.. h = eta - b
Expand Down Expand Up @@ -584,8 +561,7 @@ function rhs_sgn_central!(dq, q, equations, source_terms, cache,
@trixi_timeit timer() "hyperbolic terms" begin
# Compute all derivatives required below
(; h, h_x, v_x, h_hpb_x, b, b_x, hv_x, v2_x,
h2_v_vx_x, h_vx_x, p_h, p_x, tmp,
M_h_p_h_bx2, M_h3_3, M_h2_bx) = cache
h2_v_vx_x, h_vx_x, p_h, p_x, tmp) = cache
if equations.bathymetry_type isa BathymetryVariable
(; psi) = cache
end
Expand Down Expand Up @@ -692,8 +668,7 @@ function rhs_sgn_upwind!(dq, q, equations, source_terms, cache,
@trixi_timeit timer() "hyperbolic terms" begin
# Compute all derivatives required below
(; h, h_x, v_x, v_x_upwind, h_hpb_x, b, b_x, hv_x, v2_x,
h2_v_vx_x, h_vx_x, p_h, p_0, p_x, tmp,
M_h_p_h_bx2, M_h3_3, M_h2_bx) = cache
h2_v_vx_x, h_vx_x, p_h, p_0, p_x, tmp) = cache
if equations.bathymetry_type isa BathymetryVariable
(; psi) = cache
end
Expand Down Expand Up @@ -806,11 +781,11 @@ end
return SVector(eta, v, D)
end

@inline function waterheight_total(q, equations::AbstractSerreGreenNaghdiEquations1D)
@inline function waterheight_total(q, ::AbstractSerreGreenNaghdiEquations1D)
return q[1]
end

@inline function velocity(q, equations::AbstractSerreGreenNaghdiEquations1D)
@inline function velocity(q, ::AbstractSerreGreenNaghdiEquations1D)
return q[2]
end

Expand All @@ -819,7 +794,7 @@ end
return equations.eta0 - D
end

# The entropy/energy takes the whole `q` for every point in space
# The modified entropy/energy takes the whole `q` for every point in space
"""
energy_total_modified(q_global, equations::SerreGreenNaghdiEquations1D, cache)

Expand All @@ -846,7 +821,7 @@ For a [`bathymetry_variable`](@ref) the total modified energy has the additional
`q_global` is a vector of the primitive variables at ALL nodes.
`cache` needs to hold the SBP operators used by the `solver`.
"""
function energy_total_modified(q_global,
function energy_total_modified!(e, q_global,
ranocha marked this conversation as resolved.
Show resolved Hide resolved
equations::SerreGreenNaghdiEquations1D,
cache)
JoshuaLampert marked this conversation as resolved.
Show resolved Hide resolved
# unpack physical parameters and SBP operator `D1`
Expand All @@ -855,14 +830,9 @@ function energy_total_modified(q_global,

# `q_global` is an `ArrayPartition`. It collects the individual arrays for
# the total water height `eta = h + b` and the velocity `v`.
eta, v = q_global.x
let D = q_global.x[3]
@.. b = equations.eta0 - D
@.. h = eta - b
end

N = length(v)
e = zeros(eltype(q_global), N)
eta, v, D = q_global.x
@.. b = equations.eta0 - D
@.. h = eta - b

# 1/2 g eta^2 + 1/2 h v^2 + 1/6 h^3 w^2
# and + 1/8 h (v b_x)^2 for full bathymetry without mild-slope approximation
Expand Down
Loading
Loading