Path: blob/main/examples/tree_3d_dgsem/elixir_mhd_alfven_wave.jl
2055 views
using OrdinaryDiffEqLowStorageRK1using Trixi23###############################################################################4# semidiscretization of the compressible ideal GLM-MHD equations56equations = IdealGlmMhdEquations3D(5 / 3)78initial_condition = initial_condition_convergence_test910# 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)19solver = DGSEM(polydeg = 3, surface_flux = surface_flux,20volume_integral = VolumeIntegralFluxDifferencing(volume_flux))2122coordinates_min = (-1.0, -1.0, -1.0)23coordinates_max = (1.0, 1.0, 1.0)24mesh = TreeMesh(coordinates_min, coordinates_max,25initial_refinement_level = 2,26n_cells_max = 10_000)2728semi = SemidiscretizationHyperbolic(mesh, equations, initial_condition, solver)2930###############################################################################31# ODE solvers, callbacks etc.3233tspan = (0.0, 1.0)34ode = semidiscretize(semi, tspan)3536summary_callback = SummaryCallback()3738analysis_interval = 10039analysis_callback = AnalysisCallback(semi, interval = analysis_interval)40alive_callback = AliveCallback(analysis_interval = analysis_interval)4142save_solution = SaveSolutionCallback(interval = 10,43save_initial_solution = true,44save_final_solution = true,45solution_variables = cons2prim)4647cfl = 1.548stepsize_callback = StepsizeCallback(cfl = cfl)4950glm_speed_callback = GlmSpeedCallback(glm_scale = 0.5, cfl = cfl)5152callbacks = CallbackSet(summary_callback,53analysis_callback, alive_callback,54save_solution,55stepsize_callback,56glm_speed_callback)5758###############################################################################59# run the simulation6061sol = solve(ode, CarpenterKennedy2N54(williamson_condition = false);62dt = 1.0, # solve needs some value here but it will be overwritten by the stepsize_callback63ode_default_options()..., callback = callbacks);646566