Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
trixi-framework
GitHub Repository: trixi-framework/Trixi.jl
Path: blob/main/examples/dgmulti_2d/elixir_mhd_weak_blast_wave.jl
2055 views
1
using OrdinaryDiffEqLowStorageRK
2
using Trixi
3
4
###############################################################################
5
# semidiscretization of the compressible ideal GLM-MHD equations
6
7
equations = IdealGlmMhdEquations2D(1.4)
8
9
initial_condition = initial_condition_weak_blast_wave
10
11
# Up to version 0.13.0, `max_abs_speed_naive` was used as the default wave speed estimate of
12
# `const flux_lax_friedrichs = FluxLaxFriedrichs(), i.e., `FluxLaxFriedrichs(max_abs_speed = max_abs_speed_naive)`.
13
# In the `StepsizeCallback`, though, the less diffusive `max_abs_speeds` is employed which is consistent with `max_abs_speed`.
14
# Thus, we exchanged in PR#2458 the default wave speed used in the LLF flux to `max_abs_speed`.
15
# To ensure that every example still runs we specify explicitly `FluxLaxFriedrichs(max_abs_speed_naive)`.
16
# We remark, however, that the now default `max_abs_speed` is in general recommended due to compliance with the
17
# `StepsizeCallback` (CFL-Condition) and less diffusion.
18
surface_flux = (FluxLaxFriedrichs(max_abs_speed_naive), flux_nonconservative_powell)
19
volume_flux = (flux_hindenlang_gassner, flux_nonconservative_powell)
20
dg = DGMulti(polydeg = 3, element_type = Quad(), approximation_type = Polynomial(),
21
surface_integral = SurfaceIntegralWeakForm(surface_flux),
22
volume_integral = VolumeIntegralFluxDifferencing(volume_flux))
23
24
cells_per_dimension = (16, 16)
25
mesh = DGMultiMesh(dg, cells_per_dimension,
26
coordinates_min = (-2.0, -2.0), coordinates_max = (2.0, 2.0),
27
periodicity = true)
28
semi = SemidiscretizationHyperbolic(mesh, equations, initial_condition, dg)
29
30
###############################################################################
31
# ODE solvers, callbacks etc.
32
33
tspan = (0.0, 0.4)
34
ode = semidiscretize(semi, tspan)
35
36
summary_callback = SummaryCallback()
37
38
analysis_interval = 100
39
analysis_callback = AnalysisCallback(semi, interval = analysis_interval, uEltype = real(dg))
40
alive_callback = AliveCallback(analysis_interval = analysis_interval)
41
42
cfl = 1.0
43
stepsize_callback = StepsizeCallback(cfl = cfl)
44
45
glm_speed_callback = GlmSpeedCallback(glm_scale = 0.5, cfl = cfl)
46
47
save_solution = SaveSolutionCallback(interval = analysis_interval,
48
solution_variables = cons2prim)
49
50
callbacks = CallbackSet(summary_callback,
51
analysis_callback,
52
stepsize_callback,
53
alive_callback,
54
glm_speed_callback,
55
save_solution)
56
57
###############################################################################
58
# run the simulation
59
60
sol = solve(ode, CarpenterKennedy2N54(williamson_condition = false);
61
dt = 1.0, # solve needs some value here but it will be overwritten by the stepsize_callback
62
ode_default_options()..., callback = callbacks);
63
64