Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
trixi-framework
GitHub Repository: trixi-framework/Trixi.jl
Path: blob/main/examples/tree_2d_dgsem/elixir_acoustics_gauss.jl
2055 views
1
using OrdinaryDiffEqLowStorageRK
2
using Trixi
3
4
###############################################################################
5
# semidiscretization of the acoustic perturbation equations
6
7
v_mean_global = (0.25, 0.25)
8
c_mean_global = 1.0
9
rho_mean_global = 1.0
10
equations = AcousticPerturbationEquations2D(v_mean_global, c_mean_global, rho_mean_global)
11
12
# Create DG solver with polynomial degree = 3 and (local) Lax-Friedrichs/Rusanov flux as surface flux
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
23
coordinates_min = (-1.0, -1.0) # minimum coordinates (min(x), min(y))
24
coordinates_max = (1.0, 1.0) # maximum coordinates (max(x), max(y))
25
26
# Create a uniformly refined mesh with periodic boundaries
27
mesh = TreeMesh(coordinates_min, coordinates_max,
28
initial_refinement_level = 4,
29
n_cells_max = 30_000) # set maximum capacity of tree data structure
30
31
# A semidiscretization collects data structures and functions for the spatial discretization
32
semi = SemidiscretizationHyperbolic(mesh, equations, initial_condition_gauss, solver)
33
34
###############################################################################
35
# ODE solvers, callbacks etc.
36
37
# Create ODE problem with time span from 0.0 to 1.0
38
tspan = (0.0, 1.0)
39
ode = semidiscretize(semi, tspan)
40
41
# At the beginning of the main loop, the SummaryCallback prints a summary of the simulation setup
42
# and resets the timers
43
summary_callback = SummaryCallback()
44
45
# The AnalysisCallback allows to analyse the solution in regular intervals and prints the results
46
analysis_callback = AnalysisCallback(semi, interval = 100)
47
48
# The SaveSolutionCallback allows to save the solution to a file in regular intervals
49
save_solution = SaveSolutionCallback(interval = 100,
50
solution_variables = cons2prim)
51
52
# The StepsizeCallback handles the re-calculation of the maximum Δt after each time step
53
stepsize_callback = StepsizeCallback(cfl = 0.5)
54
55
# Create a CallbackSet to collect all callbacks such that they can be passed to the ODE solver
56
callbacks = CallbackSet(summary_callback, analysis_callback, save_solution,
57
stepsize_callback)
58
59
###############################################################################
60
# run the simulation
61
62
# OrdinaryDiffEq's `solve` method evolves the solution in time and executes the passed callbacks
63
sol = solve(ode, CarpenterKennedy2N54(williamson_condition = false);
64
dt = 1.0, # solve needs some value here but it will be overwritten by the stepsize_callback
65
ode_default_options()..., callback = callbacks);
66
67