Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
trixi-framework
GitHub Repository: trixi-framework/Trixi.jl
Path: blob/main/examples/structured_3d_dgsem/elixir_euler_source_terms.jl
5585 views
1
# The same setup as tree_3d_dgsem/elixir_euler_source_terms.jl
2
# to verify the StructuredMesh implementation against TreeMesh
3
4
using OrdinaryDiffEqLowStorageRK
5
using Trixi
6
7
###############################################################################
8
# semidiscretization of the compressible Euler equations
9
10
equations = CompressibleEulerEquations3D(1.4)
11
12
initial_condition = initial_condition_convergence_test
13
14
# Up to version 0.13.0, `max_abs_speed_naive` was used as the default wave speed estimate of
15
# `const flux_lax_friedrichs = FluxLaxFriedrichs(), i.e., `FluxLaxFriedrichs(max_abs_speed = max_abs_speed_naive)`.
16
# In the `StepsizeCallback`, though, the less diffusive `max_abs_speeds` is employed which is consistent with `max_abs_speed`.
17
# Thus, we exchanged in PR#2458 the default wave speed used in the LLF flux to `max_abs_speed`.
18
# To ensure that every example still runs we specify explicitly `FluxLaxFriedrichs(max_abs_speed_naive)`.
19
# We remark, however, that the now default `max_abs_speed` is in general recommended due to compliance with the
20
# `StepsizeCallback` (CFL-Condition) and less diffusion.
21
solver = DGSEM(polydeg = 3, surface_flux = FluxLaxFriedrichs(max_abs_speed_naive),
22
volume_integral = VolumeIntegralWeakForm())
23
24
# coordinates_min = (0.0, 0.0, 0.0)
25
# coordinates_max = (2.0, 2.0, 2.0)
26
f1(s, t) = SVector(0.0, s + 1.0, t + 1.0)
27
f2(s, t) = SVector(2.0, s + 1.0, t + 1.0)
28
f3(s, t) = SVector(s + 1.0, 0.0, t + 1.0)
29
f4(s, t) = SVector(s + 1.0, 2.0, t + 1.0)
30
f5(s, t) = SVector(s + 1.0, t + 1.0, 0.0)
31
f6(s, t) = SVector(s + 1.0, t + 1.0, 2.0)
32
33
cells_per_dimension = (4, 4, 4)
34
35
mesh = StructuredMesh(cells_per_dimension, (f1, f2, f3, f4, f5, f6), periodicity = true)
36
37
semi = SemidiscretizationHyperbolic(mesh, equations, initial_condition, solver;
38
source_terms = source_terms_convergence_test,
39
boundary_conditions = boundary_condition_periodic)
40
41
###############################################################################
42
# ODE solvers, callbacks etc.
43
44
tspan = (0.0, 5.0)
45
ode = semidiscretize(semi, tspan)
46
47
summary_callback = SummaryCallback()
48
49
analysis_interval = 100
50
analysis_callback = AnalysisCallback(semi, interval = analysis_interval)
51
52
alive_callback = AliveCallback(analysis_interval = analysis_interval)
53
54
save_solution = SaveSolutionCallback(interval = 100,
55
save_initial_solution = true,
56
save_final_solution = true,
57
solution_variables = cons2prim)
58
59
stepsize_callback = StepsizeCallback(cfl = 0.6)
60
61
callbacks = CallbackSet(summary_callback,
62
analysis_callback, alive_callback,
63
save_solution,
64
stepsize_callback)
65
66
###############################################################################
67
# run the simulation
68
69
sol = solve(ode, CarpenterKennedy2N54(williamson_condition = false);
70
dt = 1.0, # solve needs some value here but it will be overwritten by the stepsize_callback
71
ode_default_options()..., callback = callbacks);
72
73