Replies: 2 comments 4 replies
-
ping: @jandrej |
Beta Was this translation helpful? Give feedback.
-
If the volume boxes do not actually contain any volume elements, then one can represent this as a surface mesh in MFEM where the different surface parts are marked with different attributes. If the volume boxes contain volume elements, then this can be represented as one connected mesh where volume elements are assigned attributes based on the volume they belong to; the surfaces (including surfaces between different volumes) will be described as boundary elements where each boundary element is assigned an attribute based on the surface it belongs to. Given such (connected) mesh, one can then extract sub-components based on the attributes using the |
Beta Was this translation helpful? Give feedback.
-
I'm interested in translating some capability for particle transport on CAD-based surface mesh to MFEM. It relies on topological relathionships between surfaces to form volumes. The layout of the model looks like this:
The mesh is divided into groups of triangles and each group represents a surface. The volume is defined by relationships between its group and the surfaces the compose the volume. The volume groups are empty -- no triangles contained there.
This is a lean organization for the model b/c shared surfaces only need to be represented once and we can move particles from one volume to another based on these topological relathionships in the mesh model.
Is there a way to represent this type of structure in MFEM?
Beta Was this translation helpful? Give feedback.
All reactions