element sets and subdomains #3483
jessecarterMOOSE
started this conversation in
General
Replies: 1 comment 4 replies
-
No, as you mentioned an Elem can belong to exactly one subdomain, but it can belong to an arbitrary number of element sets (or "elemsets" as we refer to them in the code). elemsets are therefore similar to nodesets and sidesets, but they are not stored on the BoundaryInfo object... they are implemented using the "extra integer" support that was added relatively recently for Nodes and Elems, plus some bookkeeping from the Mesh. The AbaqusIO reader was written before we had elemset support, so it does not use them currently, but it could be updated to. |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Wanted to get some insight on the availability of element sets and subdomains in libmesh. Are these things different names for the same thing? I'm coming at this from an Abaqus perspective, so please bear with me. As the name implies, it appears an element can belong to exactly one subdomain. Is it then possible to have arbitrary collections of elements on the mesh, much like you can have arbitrary nodes in a node set?
The reason I'm asking is because the
AbaqusIO
reader appears to convert element sets to subdomains, which may not be what I want in some cases.Beta Was this translation helpful? Give feedback.
All reactions