Skip to content

Commit

Permalink
comment
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielDoehring committed Jan 5, 2024
1 parent 06fb60c commit 4a8ff77
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/p4est_2d_dgsem/elixir_euler_airfoil_mach2.jl
Original file line number Diff line number Diff line change
Expand Up @@ -73,10 +73,10 @@ boundary_symbols = [:PhysicalLine10, :PhysicalLine20, :PhysicalLine30, :Physical

mesh = P4estMesh{2}(mesh_file, polydeg = d, boundary_symbols = boundary_symbols)

boundary_conditions = Dict(:PhysicalLine10 => boundary_condition_supersonic_inflow,
boundary_conditions = Dict(:PhysicalLine10 => boundary_condition_supersonic_inflow, # Left boundary
:PhysicalLine20 => boundary_condition_outflow, # Right boundary
:PhysicalLine30 => boundary_condition_slip_wall, # Airfoil
:PhysicalLine40 => boundary_condition_outflow)
:PhysicalLine40 => boundary_condition_outflow) # Top and bottom boundary

semi = SemidiscretizationHyperbolic(mesh, equations, initial_condition, solver,
boundary_conditions = boundary_conditions)
Expand Down

0 comments on commit 4a8ff77

Please sign in to comment.