-
Notifications
You must be signed in to change notification settings - Fork 110
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Syntax on BC #2096
Comments
I am not sure if I understand your question correctly. Do you want a moving wall? The function you are referencing is indeed the BC invoked by the solver, with |
The code Trixi.jl/examples/dgmulti_2d/elixir_navierstokes_convergence.jl Lines 188 to 189 in fa43fb2
sets the boundary condition at the boundary named Trixi.jl/examples/dgmulti_2d/elixir_navierstokes_convergence.jl Lines 22 to 26 in fa43fb2
|
I'm looking into the NS convergence test: https://github.com/trixi-framework/Trixi.jl/blob/main/examples/dgmulti_2d/elixir_navierstokes_convergence.jl
For the Euler hyperbolic system ya'll implement the Slip-Wall BC.
However, I'm not understanding this syntax in line 189:
# define inviscid boundary conditions boundary_conditions_hyperbolic = (; :top_bottom => boundary_condition_slip_wall)
In lines 22-23 the
top_bottom()
function is defined along with theDict()
.If I want the BC to be a Slip-Wall but with a velocity using
u_inner
defined here:https://trixi-framework.github.io/Trixi.jl/stable/reference-trixi/#Trixi.boundary_condition_slip_wall-Tuple{Any,%20AbstractVector,%20Any,%20Any,%20Any,%20CompressibleEulerEquations2D}
How would I go about doing that with the syntax given in this elixer example?
The text was updated successfully, but these errors were encountered: