Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
trixi-framework
GitHub Repository: trixi-framework/Trixi.jl
Path: blob/main/examples/tree_1d_dgsem/elixir_euler_shockcapturing.jl
2055 views
1
using OrdinaryDiffEqLowStorageRK
2
using Trixi
3
4
###############################################################################
5
# semidiscretization of the compressible Euler equations
6
7
equations = CompressibleEulerEquations1D(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)
19
volume_flux = flux_shima_etal
20
basis = LobattoLegendreBasis(3)
21
indicator_sc = IndicatorHennemannGassner(equations, basis,
22
alpha_max = 0.5,
23
alpha_min = 0.001,
24
alpha_smooth = true,
25
variable = density_pressure)
26
volume_integral = VolumeIntegralShockCapturingHG(indicator_sc;
27
volume_flux_dg = volume_flux,
28
volume_flux_fv = surface_flux)
29
solver = DGSEM(basis, surface_flux, volume_integral)
30
31
coordinates_min = -2.0
32
coordinates_max = 2.0
33
mesh = TreeMesh(coordinates_min, coordinates_max,
34
initial_refinement_level = 5,
35
n_cells_max = 10_000)
36
37
semi = SemidiscretizationHyperbolic(mesh, equations, initial_condition, solver)
38
39
###############################################################################
40
# ODE solvers, callbacks etc.
41
42
tspan = (0.0, 1.0)
43
ode = semidiscretize(semi, tspan)
44
45
summary_callback = SummaryCallback()
46
47
analysis_interval = 100
48
analysis_callback = AnalysisCallback(semi, interval = analysis_interval)
49
50
alive_callback = AliveCallback(analysis_interval = analysis_interval)
51
52
save_solution = SaveSolutionCallback(interval = 100,
53
save_initial_solution = true,
54
save_final_solution = true,
55
solution_variables = cons2prim)
56
57
stepsize_callback = StepsizeCallback(cfl = 0.8)
58
59
callbacks = CallbackSet(summary_callback,
60
analysis_callback, alive_callback,
61
save_solution,
62
stepsize_callback)
63
64
###############################################################################
65
# run the simulation
66
67
sol = solve(ode, CarpenterKennedy2N54(williamson_condition = false);
68
dt = 1.0, # solve needs some value here but it will be overwritten by the stepsize_callback
69
ode_default_options()..., callback = callbacks);
70
71