Path: blob/main/examples/t8code_2d_dgsem/elixir_euler_free_stream.jl
2055 views
using OrdinaryDiffEqLowStorageRK1using Trixi23###############################################################################4# Semidiscretization of the compressible Euler equations.56equations = CompressibleEulerEquations2D(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))1819# Mapping as described in https://arxiv.org/abs/2012.12040 but reduced to 2D20function mapping(xi_, eta_)21# Transform input variables between -1 and 1 onto [0,3]22xi = 1.5 * xi_ + 1.523eta = 1.5 * eta_ + 1.52425y = eta + 3 / 8 * (cos(1.5 * pi * (2 * xi - 3) / 3) *26cos(0.5 * pi * (2 * eta - 3) / 3))2728x = xi + 3 / 8 * (cos(0.5 * pi * (2 * xi - 3) / 3) *29cos(2 * pi * (2 * y - 3) / 3))3031return SVector(x, y)32end3334###############################################################################35# Get the uncurved mesh from a file (downloads the file if not available locally)3637# Unstructured mesh with 48 cells of the square domain [-1, 1]^n38mesh_file = Trixi.download("https://gist.githubusercontent.com/efaulhaber/a075f8ec39a67fa9fad8f6f84342cbca/raw/a7206a02ed3a5d3cadacd8d9694ac154f9151db7/square_unstructured_1.inp",39joinpath(@__DIR__, "square_unstructured_1.inp"))4041mesh = T8codeMesh(mesh_file, 2; polydeg = 3,42mapping = mapping,43initial_refinement_level = 1)4445function adapt_callback(forest, ltreeid, eclass_scheme, lelemntid, elements, is_family,46user_data)47vertex = Vector{Cdouble}(undef, 3)4849Trixi.t8_element_vertex_reference_coords(eclass_scheme, elements[1], 0, vertex)5051level = Trixi.t8_element_level(eclass_scheme, elements[1])5253# TODO: Make this condition more general.54if vertex[1] < 1e-8 && vertex[2] < 1e-8 && level < 355# return true (refine)56return 157else58# return false (don't refine)59return 060end61end6263Trixi.adapt!(mesh, adapt_callback)6465semi = SemidiscretizationHyperbolic(mesh, equations, initial_condition, solver,66boundary_conditions = Dict(:all => BoundaryConditionDirichlet(initial_condition)))6768###############################################################################69# ODE solvers, callbacks etc.7071tspan = (0.0, 1.0)72ode = semidiscretize(semi, tspan)7374summary_callback = SummaryCallback()7576analysis_interval = 10077analysis_callback = AnalysisCallback(semi, interval = analysis_interval)7879alive_callback = AliveCallback(analysis_interval = analysis_interval)8081save_solution = SaveSolutionCallback(interval = 100,82save_initial_solution = true,83save_final_solution = true,84solution_variables = cons2prim)8586stepsize_callback = StepsizeCallback(cfl = 2.0)8788callbacks = CallbackSet(summary_callback,89analysis_callback, alive_callback,90save_solution,91stepsize_callback)9293###############################################################################94# run the simulation9596sol = solve(ode, CarpenterKennedy2N54(williamson_condition = false);97dt = 1.0, # solve needs some value here but it will be overwritten by the stepsize_callback98ode_default_options()..., callback = callbacks);99100101