Path: blob/main/examples/tree_2d_dgsem/elixir_euler_source_terms.jl
2055 views
using OrdinaryDiffEqLowStorageRK1using Trixi23###############################################################################4# semidiscretization of the compressible Euler equations56equations = CompressibleEulerEquations2D(1.4)78initial_condition = initial_condition_convergence_test9# Up to version 0.13.0, `max_abs_speed_naive` was used as the default wave speed estimate of10# `const flux_lax_friedrichs = FluxLaxFriedrichs(), i.e., `FluxLaxFriedrichs(max_abs_speed = max_abs_speed_naive)`.11# In the `StepsizeCallback`, though, the less diffusive `max_abs_speeds` is employed which is consistent with `max_abs_speed`.12# Thus, we exchanged in PR#2458 the default wave speed used in the LLF flux to `max_abs_speed`.13# To ensure that every example still runs we specify explicitly `FluxLaxFriedrichs(max_abs_speed_naive)`.14# We remark, however, that the now default `max_abs_speed` is in general recommended due to compliance with the15# `StepsizeCallback` (CFL-Condition) and less diffusion.16solver = DGSEM(polydeg = 3, surface_flux = FluxLaxFriedrichs(max_abs_speed_naive))1718coordinates_min = (0.0, 0.0)19coordinates_max = (2.0, 2.0)20mesh = TreeMesh(coordinates_min, coordinates_max,21initial_refinement_level = 4,22n_cells_max = 10_000)2324semi = SemidiscretizationHyperbolic(mesh, equations, initial_condition, solver,25source_terms = source_terms_convergence_test)2627###############################################################################28# ODE solvers, callbacks etc.2930tspan = (0.0, 2.0)31ode = semidiscretize(semi, tspan)3233summary_callback = SummaryCallback()3435analysis_interval = 10036analysis_callback = AnalysisCallback(semi, interval = analysis_interval)3738alive_callback = AliveCallback(analysis_interval = analysis_interval)3940save_solution = SaveSolutionCallback(interval = 100,41save_initial_solution = true,42save_final_solution = true,43solution_variables = cons2prim)4445stepsize_callback = StepsizeCallback(cfl = 1.0)4647callbacks = CallbackSet(summary_callback,48analysis_callback, alive_callback,49save_solution,50stepsize_callback)5152###############################################################################53# run the simulation5455sol = solve(ode, CarpenterKennedy2N54(williamson_condition = false);56dt = 1.0, # solve needs some value here but it will be overwritten by the stepsize_callback57ode_default_options()..., callback = callbacks);585960