Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
trixi-framework
GitHub Repository: trixi-framework/Trixi.jl
Path: blob/main/examples/tree_3d_dgsem/elixir_mhd_alfven_wave.jl
2055 views
1
using OrdinaryDiffEqLowStorageRK
2
using Trixi
3
4
###############################################################################
5
# semidiscretization of the compressible ideal GLM-MHD equations
6
7
equations = IdealGlmMhdEquations3D(5 / 3)
8
9
initial_condition = initial_condition_convergence_test
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
solver = DGSEM(polydeg = 3, surface_flux = surface_flux,
21
volume_integral = VolumeIntegralFluxDifferencing(volume_flux))
22
23
coordinates_min = (-1.0, -1.0, -1.0)
24
coordinates_max = (1.0, 1.0, 1.0)
25
mesh = TreeMesh(coordinates_min, coordinates_max,
26
initial_refinement_level = 2,
27
n_cells_max = 10_000)
28
29
semi = SemidiscretizationHyperbolic(mesh, equations, initial_condition, solver)
30
31
###############################################################################
32
# ODE solvers, callbacks etc.
33
34
tspan = (0.0, 1.0)
35
ode = semidiscretize(semi, tspan)
36
37
summary_callback = SummaryCallback()
38
39
analysis_interval = 100
40
analysis_callback = AnalysisCallback(semi, interval = analysis_interval)
41
alive_callback = AliveCallback(analysis_interval = analysis_interval)
42
43
save_solution = SaveSolutionCallback(interval = 10,
44
save_initial_solution = true,
45
save_final_solution = true,
46
solution_variables = cons2prim)
47
48
cfl = 1.5
49
stepsize_callback = StepsizeCallback(cfl = cfl)
50
51
glm_speed_callback = GlmSpeedCallback(glm_scale = 0.5, cfl = cfl)
52
53
callbacks = CallbackSet(summary_callback,
54
analysis_callback, alive_callback,
55
save_solution,
56
stepsize_callback,
57
glm_speed_callback)
58
59
###############################################################################
60
# run the simulation
61
62
sol = solve(ode, CarpenterKennedy2N54(williamson_condition = false);
63
dt = 1.0, # solve needs some value here but it will be overwritten by the stepsize_callback
64
ode_default_options()..., callback = callbacks);
65
66