-
Notifications
You must be signed in to change notification settings - Fork 114
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Variable CFL * Example * fix text * fix * CFL for coupled semi * nnews * Apply suggestions from code review Co-authored-by: Hendrik Ranocha <[email protected]> * Update src/callbacks_step/stepsize.jl Co-authored-by: Hendrik Ranocha <[email protected]> * shorten code * coupled glm * fmt * Update test/test_structured_2d.jl --------- Co-authored-by: Hendrik Ranocha <[email protected]>
- Loading branch information
1 parent
900322e
commit e35bb19
Showing
7 changed files
with
268 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,141 @@ | ||
using OrdinaryDiffEq | ||
using Trixi | ||
|
||
############################################################################### | ||
# semidiscretization of the compressible ideal GLM-MHD equations | ||
equations = IdealGlmMhdEquations2D(1.4) | ||
|
||
""" | ||
initial_condition_rotor(x, t, equations::IdealGlmMhdEquations2D) | ||
The classical MHD rotor test case. Here, the setup is taken from | ||
- Dominik Derigs, Gregor J. Gassner, Stefanie Walch & Andrew R. Winters (2018) | ||
Entropy Stable Finite Volume Approximations for Ideal Magnetohydrodynamics | ||
[doi: 10.1365/s13291-018-0178-9](https://doi.org/10.1365/s13291-018-0178-9) | ||
""" | ||
function initial_condition_rotor(x, t, equations::IdealGlmMhdEquations2D) | ||
# setup taken from Derigs et al. DMV article (2018) | ||
# domain must be [0, 1] x [0, 1], γ = 1.4 | ||
dx = x[1] - 0.5 | ||
dy = x[2] - 0.5 | ||
r = sqrt(dx^2 + dy^2) | ||
f = (0.115 - r) / 0.015 | ||
if r <= 0.1 | ||
rho = 10.0 | ||
v1 = -20.0 * dy | ||
v2 = 20.0 * dx | ||
elseif r >= 0.115 | ||
rho = 1.0 | ||
v1 = 0.0 | ||
v2 = 0.0 | ||
else | ||
rho = 1.0 + 9.0 * f | ||
v1 = -20.0 * f * dy | ||
v2 = 20.0 * f * dx | ||
end | ||
v3 = 0.0 | ||
p = 1.0 | ||
B1 = 5.0 / sqrt(4.0 * pi) | ||
B2 = 0.0 | ||
B3 = 0.0 | ||
psi = 0.0 | ||
return prim2cons(SVector(rho, v1, v2, v3, p, B1, B2, B3, psi), equations) | ||
end | ||
initial_condition = initial_condition_rotor | ||
|
||
surface_flux = (flux_lax_friedrichs, flux_nonconservative_powell) | ||
volume_flux = (flux_hindenlang_gassner, flux_nonconservative_powell) | ||
polydeg = 4 | ||
basis = LobattoLegendreBasis(polydeg) | ||
indicator_sc = IndicatorHennemannGassner(equations, basis, | ||
alpha_max = 0.5, | ||
alpha_min = 0.001, | ||
alpha_smooth = true, | ||
variable = density_pressure) | ||
volume_integral = VolumeIntegralShockCapturingHG(indicator_sc; | ||
volume_flux_dg = volume_flux, | ||
volume_flux_fv = surface_flux) | ||
solver = DGSEM(basis, surface_flux, volume_integral) | ||
|
||
# Affine type mapping to take the [-1,1]^2 domain from the mesh file | ||
# and put it onto the rotor domain [0,1]^2 and then warp it with a mapping | ||
# as described in https://arxiv.org/abs/2012.12040 | ||
function mapping_twist(xi, eta) | ||
y = 0.5 * (eta + 1.0) + | ||
0.05 * cos(1.5 * pi * (2.0 * xi - 1.0)) * cos(0.5 * pi * (2.0 * eta - 1.0)) | ||
x = 0.5 * (xi + 1.0) + 0.05 * cos(0.5 * pi * (2.0 * xi - 1.0)) * cos(2.0 * pi * y) | ||
return SVector(x, y) | ||
end | ||
|
||
mesh_file = Trixi.download("https://gist.githubusercontent.com/efaulhaber/63ff2ea224409e55ee8423b3a33e316a/raw/7db58af7446d1479753ae718930741c47a3b79b7/square_unstructured_2.inp", | ||
joinpath(@__DIR__, "square_unstructured_2.inp")) | ||
|
||
mesh = P4estMesh{2}(mesh_file, | ||
polydeg = 4, | ||
mapping = mapping_twist, | ||
initial_refinement_level = 1) | ||
|
||
boundary_condition = BoundaryConditionDirichlet(initial_condition) | ||
boundary_conditions = Dict(:all => boundary_condition) | ||
|
||
semi = SemidiscretizationHyperbolic(mesh, equations, initial_condition, solver, | ||
boundary_conditions = boundary_conditions) | ||
|
||
############################################################################### | ||
# ODE solvers, callbacks etc. | ||
|
||
tspan = (0.0, 0.15) | ||
ode = semidiscretize(semi, tspan) | ||
|
||
summary_callback = SummaryCallback() | ||
|
||
analysis_interval = 100 | ||
analysis_callback = AnalysisCallback(semi, interval = analysis_interval) | ||
|
||
alive_callback = AliveCallback(analysis_interval = analysis_interval) | ||
|
||
save_solution = SaveSolutionCallback(interval = 100, | ||
save_initial_solution = true, | ||
save_final_solution = true, | ||
solution_variables = cons2prim) | ||
|
||
amr_indicator = IndicatorLöhner(semi, | ||
variable = density_pressure) | ||
|
||
amr_controller = ControllerThreeLevel(semi, amr_indicator, | ||
base_level = 1, | ||
med_level = 3, med_threshold = 0.05, | ||
max_level = 5, max_threshold = 0.1) | ||
amr_callback = AMRCallback(semi, amr_controller, | ||
interval = 3, | ||
adapt_initial_condition = true, | ||
adapt_initial_condition_only_refine = true) | ||
|
||
# increase the CFL number linearly from cfl_0() at time 0 | ||
# to cfl_t_ramp() at time t = t_ramp(), keep it constant afterward | ||
cfl_0() = 0.5 | ||
cfl_t_ramp() = 1.2 | ||
t_ramp() = 0.1 | ||
cfl(t) = min(cfl_0() + (cfl_t_ramp() - cfl_0()) / t_ramp() * t, cfl_t_ramp()) | ||
|
||
stepsize_callback = StepsizeCallback(cfl = cfl) | ||
|
||
glm_speed_callback = GlmSpeedCallback(glm_scale = 0.5, cfl = cfl) | ||
|
||
callbacks = CallbackSet(summary_callback, | ||
analysis_callback, | ||
alive_callback, | ||
save_solution, | ||
amr_callback, | ||
stepsize_callback, | ||
glm_speed_callback) | ||
|
||
############################################################################### | ||
# run the simulation | ||
|
||
sol = solve(ode, | ||
CarpenterKennedy2N54(thread = OrdinaryDiffEq.True(), | ||
williamson_condition = false), | ||
dt = 1.0, # solve needs some value here but it will be overwritten by the stepsize_callback | ||
save_everystep = false, callback = callbacks); | ||
summary_callback() # print the timer summary |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.