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_eulermulti_convergence_es.jl
2055 views
1
using OrdinaryDiffEqLowStorageRK
2
using Trixi
3
4
###############################################################################
5
# semidiscretization of the compressible Euler multicomponent equations
6
equations = CompressibleEulerMulticomponentEquations1D(gammas = (1.4, 1.4, 1.4, 1.4),
7
gas_constants = (0.4, 0.4, 0.4, 0.4))
8
9
initial_condition = initial_condition_convergence_test
10
11
volume_flux = flux_ranocha
12
# Up to version 0.13.0, `max_abs_speed_naive` was used as the default wave speed estimate of
13
# `const flux_lax_friedrichs = FluxLaxFriedrichs(), i.e., `FluxLaxFriedrichs(max_abs_speed = max_abs_speed_naive)`.
14
# In the `StepsizeCallback`, though, the less diffusive `max_abs_speeds` is employed which is consistent with `max_abs_speed`.
15
# Thus, we exchanged in PR#2458 the default wave speed used in the LLF flux to `max_abs_speed`.
16
# To ensure that every example still runs we specify explicitly `FluxLaxFriedrichs(max_abs_speed_naive)`.
17
# We remark, however, that the now default `max_abs_speed` is in general recommended due to compliance with the
18
# `StepsizeCallback` (CFL-Condition) and less diffusion.
19
solver = DGSEM(polydeg = 3, surface_flux = FluxLaxFriedrichs(max_abs_speed_naive),
20
volume_integral = VolumeIntegralFluxDifferencing(volume_flux))
21
22
coordinates_min = (-1.0,)
23
coordinates_max = (1.0,)
24
mesh = TreeMesh(coordinates_min, coordinates_max,
25
initial_refinement_level = 3,
26
n_cells_max = 30_000)
27
28
semi = SemidiscretizationHyperbolic(mesh, equations, initial_condition, solver,
29
source_terms = source_terms_convergence_test)
30
31
###############################################################################
32
# ODE solvers, callbacks etc.
33
34
tspan = (0.0, 0.4)
35
ode = semidiscretize(semi, tspan)
36
37
summary_callback = SummaryCallback()
38
39
analysis_interval = 100
40
analysis_callback = AnalysisCallback(semi, interval = analysis_interval)
41
42
alive_callback = AliveCallback(analysis_interval = analysis_interval)
43
44
save_solution = SaveSolutionCallback(interval = 100,
45
save_initial_solution = true,
46
save_final_solution = true,
47
solution_variables = cons2prim)
48
49
stepsize_callback = StepsizeCallback(cfl = 0.5)
50
51
callbacks = CallbackSet(summary_callback,
52
analysis_callback, alive_callback,
53
save_solution,
54
stepsize_callback)
55
56
###############################################################################
57
# run the simulation
58
59
sol = solve(ode, CarpenterKennedy2N54(williamson_condition = false);
60
dt = 1.0, # solve needs some value here but it will be overwritten by the stepsize_callback
61
ode_default_options()..., callback = callbacks);
62
63