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_euler_mortar.jl
5586 views
1
using OrdinaryDiffEqLowStorageRK
2
using Trixi
3
4
###############################################################################
5
# semidiscretization of the compressible Euler equations
6
7
equations = CompressibleEulerEquations3D(1.4)
8
9
initial_condition = initial_condition_convergence_test
10
# Up to version 0.13.0, `max_abs_speed_naive` was used as the default wave speed estimate of
11
# `const flux_lax_friedrichs = FluxLaxFriedrichs(), i.e., `FluxLaxFriedrichs(max_abs_speed = max_abs_speed_naive)`.
12
# In the `StepsizeCallback`, though, the less diffusive `max_abs_speeds` is employed which is consistent with `max_abs_speed`.
13
# Thus, we exchanged in PR#2458 the default wave speed used in the LLF flux to `max_abs_speed`.
14
# To ensure that every example still runs we specify explicitly `FluxLaxFriedrichs(max_abs_speed_naive)`.
15
# We remark, however, that the now default `max_abs_speed` is in general recommended due to compliance with the
16
# `StepsizeCallback` (CFL-Condition) and less diffusion.
17
solver = DGSEM(polydeg = 3, surface_flux = FluxLaxFriedrichs(max_abs_speed_naive))
18
19
coordinates_min = (0.0, 0.0, 0.0)
20
coordinates_max = (2.0, 2.0, 2.0)
21
refinement_patches = ((type = "box", coordinates_min = (0.5, 0.5, 0.5),
22
coordinates_max = (1.5, 1.5, 1.5)),)
23
mesh = TreeMesh(coordinates_min, coordinates_max,
24
initial_refinement_level = 2,
25
refinement_patches = refinement_patches,
26
n_cells_max = 10_000, periodicity = true)
27
28
semi = SemidiscretizationHyperbolic(mesh, equations, initial_condition, solver;
29
source_terms = source_terms_convergence_test,
30
boundary_conditions = boundary_condition_periodic)
31
32
###############################################################################
33
# ODE solvers, callbacks etc.
34
35
tspan = (0.0, 1.0)
36
ode = semidiscretize(semi, tspan)
37
38
summary_callback = SummaryCallback()
39
40
analysis_interval = 100
41
analysis_callback = AnalysisCallback(semi, interval = analysis_interval)
42
43
alive_callback = AliveCallback(analysis_interval = analysis_interval)
44
45
save_solution = SaveSolutionCallback(interval = 100,
46
save_initial_solution = true,
47
save_final_solution = true,
48
solution_variables = cons2prim)
49
50
stepsize_callback = StepsizeCallback(cfl = 0.6)
51
52
callbacks = CallbackSet(summary_callback,
53
analysis_callback, alive_callback,
54
save_solution,
55
stepsize_callback)
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