Path: blob/main/examples/dgmulti_2d/elixir_mhd_weak_blast_wave.jl
2055 views
using OrdinaryDiffEqLowStorageRK1using Trixi23###############################################################################4# semidiscretization of the compressible ideal GLM-MHD equations56equations = IdealGlmMhdEquations2D(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), flux_nonconservative_powell)18volume_flux = (flux_hindenlang_gassner, flux_nonconservative_powell)19dg = DGMulti(polydeg = 3, element_type = Quad(), approximation_type = Polynomial(),20surface_integral = SurfaceIntegralWeakForm(surface_flux),21volume_integral = VolumeIntegralFluxDifferencing(volume_flux))2223cells_per_dimension = (16, 16)24mesh = DGMultiMesh(dg, cells_per_dimension,25coordinates_min = (-2.0, -2.0), coordinates_max = (2.0, 2.0),26periodicity = true)27semi = SemidiscretizationHyperbolic(mesh, equations, initial_condition, dg)2829###############################################################################30# ODE solvers, callbacks etc.3132tspan = (0.0, 0.4)33ode = semidiscretize(semi, tspan)3435summary_callback = SummaryCallback()3637analysis_interval = 10038analysis_callback = AnalysisCallback(semi, interval = analysis_interval, uEltype = real(dg))39alive_callback = AliveCallback(analysis_interval = analysis_interval)4041cfl = 1.042stepsize_callback = StepsizeCallback(cfl = cfl)4344glm_speed_callback = GlmSpeedCallback(glm_scale = 0.5, cfl = cfl)4546save_solution = SaveSolutionCallback(interval = analysis_interval,47solution_variables = cons2prim)4849callbacks = CallbackSet(summary_callback,50analysis_callback,51stepsize_callback,52alive_callback,53glm_speed_callback,54save_solution)5556###############################################################################57# run the simulation5859sol = solve(ode, CarpenterKennedy2N54(williamson_condition = false);60dt = 1.0, # solve needs some value here but it will be overwritten by the stepsize_callback61ode_default_options()..., callback = callbacks);626364