Path: blob/main/examples/structured_1d_dgsem/elixir_euler_source_terms.jl
5585 views
# The same setup as tree_1d_dgsem/elixir_euler_source_terms.jl1# to verify the StructuredMesh implementation against TreeMesh23using OrdinaryDiffEqLowStorageRK4using Trixi56###############################################################################7# semidiscretization of the compressible Euler equations89equations = CompressibleEulerEquations1D(1.4)1011initial_condition = initial_condition_convergence_test1213# Note that the expected EOC of 5 is not reached with this flux.14# Using `flux_hll` instead yields the expected EOC.1516# Up to version 0.13.0, `max_abs_speed_naive` was used as the default wave speed estimate of17# `const flux_lax_friedrichs = FluxLaxFriedrichs(), i.e., `FluxLaxFriedrichs(max_abs_speed = max_abs_speed_naive)`.18# In the `StepsizeCallback`, though, the less diffusive `max_abs_speeds` is employed which is consistent with `max_abs_speed`.19# Thus, we exchanged in PR#2458 the default wave speed used in the LLF flux to `max_abs_speed`.20# To ensure that every example still runs we specify explicitly `FluxLaxFriedrichs(max_abs_speed_naive)`.21# We remark, however, that the now default `max_abs_speed` is in general recommended due to compliance with the22# `StepsizeCallback` (CFL-Condition) and less diffusion.23solver = DGSEM(polydeg = 4, surface_flux = FluxLaxFriedrichs(max_abs_speed_naive))2425coordinates_min = (0.0,)26coordinates_max = (2.0,)27cells_per_dimension = (16,)2829mesh = StructuredMesh(cells_per_dimension, coordinates_min, coordinates_max,30periodicity = true)3132semi = SemidiscretizationHyperbolic(mesh, equations, initial_condition, solver;33source_terms = source_terms_convergence_test,34boundary_conditions = boundary_condition_periodic)3536###############################################################################37# ODE solvers, callbacks etc.3839tspan = (0.0, 2.0)40ode = semidiscretize(semi, tspan)4142summary_callback = SummaryCallback()4344analysis_interval = 10045analysis_callback = AnalysisCallback(semi, interval = analysis_interval,46extra_analysis_errors = (:l2_error_primitive,47:linf_error_primitive))4849alive_callback = AliveCallback(analysis_interval = analysis_interval)5051save_solution = SaveSolutionCallback(interval = 100,52save_initial_solution = true,53save_final_solution = true,54solution_variables = cons2prim)5556stepsize_callback = StepsizeCallback(cfl = 0.8)5758callbacks = CallbackSet(summary_callback,59analysis_callback, alive_callback,60save_solution,61stepsize_callback)6263###############################################################################64# run the simulation6566sol = solve(ode, CarpenterKennedy2N54(williamson_condition = false);67dt = 1.0, # solve needs some value here but it will be overwritten by the stepsize_callback68ode_default_options()..., callback = callbacks);697071