Path: blob/main/examples/tree_1d_dgsem/elixir_euler_shockcapturing.jl
5586 views
using OrdinaryDiffEqLowStorageRK1using Trixi23###############################################################################4# semidiscretization of the compressible Euler equations56equations = CompressibleEulerEquations1D(1.4)78initial_condition = initial_condition_weak_blast_wave910# Up to version 0.13.0, `max_abs_speed_naive` was used as the default wave speed estimate of11# `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 the16# `StepsizeCallback` (CFL-Condition) and less diffusion.17surface_flux = FluxLaxFriedrichs(max_abs_speed_naive)18volume_flux = flux_shima_etal19basis = LobattoLegendreBasis(3)20indicator_sc = IndicatorHennemannGassner(equations, basis,21alpha_max = 0.5,22alpha_min = 0.001,23alpha_smooth = true,24variable = density_pressure)25volume_integral = VolumeIntegralShockCapturingHG(indicator_sc;26volume_flux_dg = volume_flux,27volume_flux_fv = surface_flux)28solver = DGSEM(basis, surface_flux, volume_integral)2930coordinates_min = -2.031coordinates_max = 2.032mesh = TreeMesh(coordinates_min, coordinates_max,33initial_refinement_level = 5,34n_cells_max = 10_000, periodicity = true)3536semi = SemidiscretizationHyperbolic(mesh, equations, initial_condition, solver;37boundary_conditions = boundary_condition_periodic)3839###############################################################################40# ODE solvers, callbacks etc.4142tspan = (0.0, 1.0)43ode = semidiscretize(semi, tspan)4445summary_callback = SummaryCallback()4647analysis_interval = 10048analysis_callback = AnalysisCallback(semi, interval = analysis_interval)4950alive_callback = AliveCallback(analysis_interval = analysis_interval)5152save_solution = SaveSolutionCallback(interval = 100,53save_initial_solution = true,54save_final_solution = true,55solution_variables = cons2prim)5657stepsize_callback = StepsizeCallback(cfl = 0.8)5859callbacks = CallbackSet(summary_callback,60analysis_callback, alive_callback,61save_solution,62stepsize_callback)6364###############################################################################65# run the simulation6667sol = solve(ode, CarpenterKennedy2N54(williamson_condition = false);68dt = 1.0, # solve needs some value here but it will be overwritten by the stepsize_callback69ode_default_options()..., callback = callbacks);707172