Does Amrex support Robin boundary conditions on Embedded Boundaries? #3390
-
Hi, the documentation says "AMReX supports multi-level solvers for use with embedded boundaries. These include 1) cell-centered solvers with homogeneous Neumann, homogeneous Dirichlet, or inhomogeneous Dirichlet boundary conditions on the EB faces, and 2) nodal solvers with homogeneous Neumann boundary conditions, or inflow velocity conditions on the EB faces." But it does not mention about Robin boundary condition. Does Amrex support Robin boundary conditions on Embedded Boundaries? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
The linear system solvers in amrex do not support Robin boundary conditions. However, you might be able to set up Hypre to do this using amrex::HypreSolver in amrex/Src/Extern/HYPRE. It requires you to fill the matrix explicitly. |
Beta Was this translation helpful? Give feedback.
The linear system solvers in amrex do not support Robin boundary conditions. However, you might be able to set up Hypre to do this using amrex::HypreSolver in amrex/Src/Extern/HYPRE. It requires you to fill the matrix explicitly.