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_free_stream.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_constant
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
solver = DGSEM(polydeg = 3, surface_flux = FluxLaxFriedrichs(max_abs_speed_naive),
19
volume_integral = VolumeIntegralWeakForm())
20
21
# Mapping as described in https://arxiv.org/abs/2012.12040
22
function mapping(xi_, eta_, zeta_)
23
# Transform input variables between -1 and 1 onto [0,3]
24
xi = 1.5 * xi_ + 1.5
25
eta = 1.5 * eta_ + 1.5
26
zeta = 1.5 * zeta_ + 1.5
27
28
y = eta +
29
3 / 8 * (cos(1.5 * pi * (2 * xi - 3) / 3) *
30
cos(0.5 * pi * (2 * eta - 3) / 3) *
31
cos(0.5 * pi * (2 * zeta - 3) / 3))
32
33
x = xi +
34
3 / 8 * (cos(0.5 * pi * (2 * xi - 3) / 3) *
35
cos(2 * pi * (2 * y - 3) / 3) *
36
cos(0.5 * pi * (2 * zeta - 3) / 3))
37
38
z = zeta +
39
3 / 8 * (cos(0.5 * pi * (2 * x - 3) / 3) *
40
cos(pi * (2 * y - 3) / 3) *
41
cos(0.5 * pi * (2 * zeta - 3) / 3))
42
43
return SVector(x, y, z)
44
end
45
46
cells_per_dimension = (4, 4, 4)
47
48
mesh = StructuredMesh(cells_per_dimension, mapping, periodicity = true)
49
50
semi = SemidiscretizationHyperbolic(mesh, equations, initial_condition, solver;
51
boundary_conditions = boundary_condition_periodic)
52
53
###############################################################################
54
# ODE solvers, callbacks etc.
55
56
tspan = (0.0, 1.0)
57
ode = semidiscretize(semi, tspan)
58
59
summary_callback = SummaryCallback()
60
61
analysis_interval = 100
62
analysis_callback = AnalysisCallback(semi, interval = analysis_interval)
63
64
alive_callback = AliveCallback(analysis_interval = analysis_interval)
65
66
save_restart = SaveRestartCallback(interval = 100,
67
save_final_restart = true)
68
69
save_solution = SaveSolutionCallback(interval = 100,
70
save_initial_solution = true,
71
save_final_solution = true,
72
solution_variables = cons2prim)
73
74
stepsize_callback = StepsizeCallback(cfl = 1.3)
75
76
callbacks = CallbackSet(summary_callback,
77
analysis_callback, alive_callback,
78
save_restart, save_solution,
79
stepsize_callback)
80
81
###############################################################################
82
# run the simulation
83
84
sol = solve(ode, CarpenterKennedy2N54(williamson_condition = false);
85
dt = 1.0, # solve needs some value here but it will be overwritten by the stepsize_callback
86
ode_default_options()..., callback = callbacks);
87
88