Path: blob/main/examples/tree_1d_dgsem/elixir_mhd_alfven_wave.jl
2055 views
using OrdinaryDiffEqLowStorageRK1using Trixi23###############################################################################4# semidiscretization of the ideal MHD equations5gamma = 5 / 36equations = IdealGlmMhdEquations1D(gamma)78initial_condition = initial_condition_convergence_test910volume_flux = flux_hindenlang_gassner11# 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 = 4, surface_flux = FluxLaxFriedrichs(max_abs_speed_naive),19volume_integral = VolumeIntegralFluxDifferencing(volume_flux))2021coordinates_min = 0.022coordinates_max = 1.023mesh = TreeMesh(coordinates_min, coordinates_max,24initial_refinement_level = 2,25n_cells_max = 10_000)2627semi = SemidiscretizationHyperbolic(mesh, equations, initial_condition, solver)2829###############################################################################30# ODE solvers, callbacks etc.3132tspan = (0.0, 2.0)33ode = semidiscretize(semi, tspan)3435summary_callback = SummaryCallback()3637analysis_interval = 10038analysis_callback = AnalysisCallback(semi, interval = analysis_interval,39extra_analysis_errors = (:l2_error_primitive,40:linf_error_primitive),41extra_analysis_integrals = (entropy, energy_total,42energy_kinetic,43energy_internal,44energy_magnetic,45cross_helicity))4647alive_callback = AliveCallback(analysis_interval = analysis_interval)4849save_solution = SaveSolutionCallback(interval = 100,50save_initial_solution = true,51save_final_solution = true,52solution_variables = cons2prim)5354stepsize_callback = StepsizeCallback(cfl = 1.0)5556callbacks = CallbackSet(summary_callback,57analysis_callback, alive_callback,58save_solution,59stepsize_callback)6061###############################################################################62# run the simulation6364sol = solve(ode, CarpenterKennedy2N54(williamson_condition = false);65dt = 1.0, # solve needs some value here but it will be overwritten by the stepsize_callback66ode_default_options()..., callback = callbacks);676869