Replies: 1 comment 5 replies
-
In principle, MFEM should work even when there are ranks with no elements, but there are some parts of the code that don't currently support this (see e.g. PR #4260 for some improvements to this). If you are running into problems with empty ranks, it should probably be considered a bug in MFEM and should be fixed. |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi all,
I'm working on a simple multidomain problem using domain decomposition.
I managed to extend the multidomain miniapp and solve the coupling between the two domains using Neumann-Dirichlet and a relaxation step.
I wanted to test on a geometry with 3 domains and developed the mesh for this in Gmsh.
The code seems to work in serial, but the problem I'm having in parallel seems related to the partitioning of the mesh.
Each domain has its own solver (advection-reaction-diffusion) and bchandler, which rely on the domain's ParSubMesh.
The code fails due to one or more ranks not having any elements of the specific domain.
Any suggestions in these regards?
Best,
Leo
Beta Was this translation helpful? Give feedback.
All reactions