Path: blob/main/examples/structured_3d_dgsem/elixir_euler_free_stream.jl
2055 views
using OrdinaryDiffEqLowStorageRK1using Trixi23###############################################################################4# semidiscretization of the compressible Euler equations56equations = CompressibleEulerEquations3D(1.4)78initial_condition = initial_condition_constant910# 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.17solver = DGSEM(polydeg = 3, surface_flux = FluxLaxFriedrichs(max_abs_speed_naive),18volume_integral = VolumeIntegralWeakForm())1920# Mapping as described in https://arxiv.org/abs/2012.1204021function mapping(xi_, eta_, zeta_)22# Transform input variables between -1 and 1 onto [0,3]23xi = 1.5 * xi_ + 1.524eta = 1.5 * eta_ + 1.525zeta = 1.5 * zeta_ + 1.52627y = eta +283 / 8 * (cos(1.5 * pi * (2 * xi - 3) / 3) *29cos(0.5 * pi * (2 * eta - 3) / 3) *30cos(0.5 * pi * (2 * zeta - 3) / 3))3132x = xi +333 / 8 * (cos(0.5 * pi * (2 * xi - 3) / 3) *34cos(2 * pi * (2 * y - 3) / 3) *35cos(0.5 * pi * (2 * zeta - 3) / 3))3637z = zeta +383 / 8 * (cos(0.5 * pi * (2 * x - 3) / 3) *39cos(pi * (2 * y - 3) / 3) *40cos(0.5 * pi * (2 * zeta - 3) / 3))4142return SVector(x, y, z)43end4445cells_per_dimension = (4, 4, 4)4647mesh = StructuredMesh(cells_per_dimension, mapping)4849semi = SemidiscretizationHyperbolic(mesh, equations, initial_condition, solver)5051###############################################################################52# ODE solvers, callbacks etc.5354tspan = (0.0, 1.0)55ode = semidiscretize(semi, tspan)5657summary_callback = SummaryCallback()5859analysis_interval = 10060analysis_callback = AnalysisCallback(semi, interval = analysis_interval)6162alive_callback = AliveCallback(analysis_interval = analysis_interval)6364save_restart = SaveRestartCallback(interval = 100,65save_final_restart = true)6667save_solution = SaveSolutionCallback(interval = 100,68save_initial_solution = true,69save_final_solution = true,70solution_variables = cons2prim)7172stepsize_callback = StepsizeCallback(cfl = 1.3)7374callbacks = CallbackSet(summary_callback,75analysis_callback, alive_callback,76save_restart, save_solution,77stepsize_callback)7879###############################################################################80# run the simulation8182sol = solve(ode, CarpenterKennedy2N54(williamson_condition = false);83dt = 1.0, # solve needs some value here but it will be overwritten by the stepsize_callback84ode_default_options()..., callback = callbacks);858687