Path: blob/main/examples/tree_1d_dgsem/elixir_euler_source_terms.jl
2055 views
using OrdinaryDiffEqLowStorageRK1using Trixi23###############################################################################4# semidiscretization of the compressible Euler equations56equations = CompressibleEulerEquations1D(1.4)78initial_condition = initial_condition_convergence_test910# Note that the expected EOC of 5 is not reached with this flux.11# Using `flux_hll` instead yields the expected EOC.1213# Up to version 0.13.0, `max_abs_speed_naive` was used as the default wave speed estimate of14# `const flux_lax_friedrichs = FluxLaxFriedrichs(), i.e., `FluxLaxFriedrichs(max_abs_speed = max_abs_speed_naive)`.15# In the `StepsizeCallback`, though, the less diffusive `max_abs_speeds` is employed which is consistent with `max_abs_speed`.16# Thus, we exchanged in PR#2458 the default wave speed used in the LLF flux to `max_abs_speed`.17# To ensure that every example still runs we specify explicitly `FluxLaxFriedrichs(max_abs_speed_naive)`.18# We remark, however, that the now default `max_abs_speed` is in general recommended due to compliance with the19# `StepsizeCallback` (CFL-Condition) and less diffusion.20solver = DGSEM(polydeg = 4, surface_flux = FluxLaxFriedrichs(max_abs_speed_naive))2122coordinates_min = 0.023coordinates_max = 2.024mesh = TreeMesh(coordinates_min, coordinates_max,25initial_refinement_level = 4,26n_cells_max = 10_000)2728semi = SemidiscretizationHyperbolic(mesh, equations, initial_condition, solver,29source_terms = source_terms_convergence_test)3031###############################################################################32# ODE solvers, callbacks etc.3334tspan = (0.0, 2.0)35ode = semidiscretize(semi, tspan)3637summary_callback = SummaryCallback()3839analysis_interval = 10040analysis_callback = AnalysisCallback(semi, interval = analysis_interval,41extra_analysis_errors = (:l2_error_primitive,42:linf_error_primitive))4344alive_callback = AliveCallback(analysis_interval = analysis_interval)4546save_solution = SaveSolutionCallback(interval = 100,47save_initial_solution = true,48save_final_solution = true,49solution_variables = cons2prim)5051stepsize_callback = StepsizeCallback(cfl = 0.8)5253time_series = TimeSeriesCallback(semi, [0.0, 0.33, 1.0], interval = 10)5455callbacks = CallbackSet(summary_callback,56analysis_callback, alive_callback,57save_solution,58time_series,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