Applying wall shear stress to embedded boundary #631
Replies: 1 comment 1 reply
-
|
I believe this will be hard to achieve unfortunately. Momentum diffusion in PeleLMeX is implemented implicitly through the AMReX EB LinOp/TensorOp class, which does not appear to support inhomogenous Neumann conditions on the EB: https://amrex-codes.github.io/amrex/docs_html/LinearSolvers.html#embedded-boundaries. You could perhaps hack something together with the EBInflow capability (see #515), which gets the interior state to set a Dirichlet condition on the exterior, so you could compute what the Dirichlet value needs to be to result in the shear stress you want in the tangential direction while ensuring the normal velocity is 0, but this may not be quite accurate when solving implicitly. It would also be quite cumbersome to handle EB boundaries not aligned with the grid in this manner. @esclapez and @drummerdoc - any thoughts on how this might be achieved? |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello,
I would like to impose a prescribed wall shear stress on an EB wall (cylindrical surface), while keeping no penetration at the wall.
Concretely, I want:
For a planar wall aligned with the grid, I would typically enforce this via ghost values in the first off-wall cell. With an EB curved boundary cutting cells, I’m not sure what the recommended approach is in PeleLMeX. Is there an existing mechanism in PeleLMeX to impose a Neumann condition for the tangential velocity components on EB faces (to represent a specified traction), while keeping
Thank you very much
Beta Was this translation helpful? Give feedback.
All reactions