Path: blob/main/examples/tree_1d_dgsem/elixir_eulermulti_es.jl
2055 views
using OrdinaryDiffEqLowStorageRK1using Trixi23###############################################################################4# semidiscretization of the compressible Euler multicomponent equations5equations = CompressibleEulerMulticomponentEquations1D(gammas = (1.4, 1.4),6gas_constants = (0.4, 0.4))78initial_condition = initial_condition_weak_blast_wave910volume_flux = flux_ranocha11# Up to version 0.13.0, `max_abs_speed_naive` was used as the default wave speed estimate of12# `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 the17# `StepsizeCallback` (CFL-Condition) and less diffusion.18solver = DGSEM(polydeg = 3, surface_flux = FluxLaxFriedrichs(max_abs_speed_naive),19volume_integral = VolumeIntegralFluxDifferencing(volume_flux))2021coordinates_min = (-2.0,)22coordinates_max = (2.0,)23mesh = TreeMesh(coordinates_min, coordinates_max,24initial_refinement_level = 5,25n_cells_max = 10_000)2627semi = SemidiscretizationHyperbolic(mesh, equations, initial_condition, solver)2829###############################################################################30# ODE solvers, callbacks etc.3132tspan = (0.0, 0.4)33ode = semidiscretize(semi, tspan)3435summary_callback = SummaryCallback()3637analysis_interval = 1003839analysis_callback = AnalysisCallback(semi, interval = analysis_interval,40extra_analysis_integrals = (Trixi.density,))4142alive_callback = AliveCallback(analysis_interval = analysis_interval)4344save_restart = SaveRestartCallback(interval = 100,45save_final_restart = true)4647save_solution = SaveSolutionCallback(interval = 100,48save_initial_solution = true,49save_final_solution = true,50solution_variables = cons2prim)5152stepsize_callback = StepsizeCallback(cfl = 0.8)5354callbacks = CallbackSet(summary_callback,55analysis_callback, alive_callback,56save_restart, save_solution,57stepsize_callback)5859###############################################################################60# run the simulation6162sol = solve(ode, CarpenterKennedy2N54(williamson_condition = false);63dt = 1.0, # solve needs some value here but it will be overwritten by the stepsize_callback64ode_default_options()..., callback = callbacks);656667