Wall Boundary Conditions around a cylinder #1763
Unanswered
giakbottacini
asked this question in
Q&A
Replies: 1 comment
-
Seems like Neumann BC. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
I'm solving the compressible Euler equations around a cylinder in a 2D domain. I need to impose the normal velocity at the cylinder equal to 0, is it possible using deepxde?
For now i impose an homogeneous Dirichlet in this way
bc_c1 = dde.icbc.DirichletBC(spatial_domain, lambda x: 0, boundary_cylinder, component=0)
bc_c2 = dde.icbc.DirichletBC(spatial_domain, lambda x: 0, boundary_cylinder, component=1)
on both horizontal and vertical velocity but is not right in a case of zero viscosity as this.
Thank you.
Giacomo
Beta Was this translation helpful? Give feedback.
All reactions