How to embed a beam element in 3d solid elements? #28680
Replies: 2 comments
-
Hello The Gmsh reader must not be supporting these mixed dimensional mesh if it is not working. The
|
Beta Was this translation helpful? Give feedback.
-
Dear @xiekai-mc , The MSH file format does not differentiate between "sidesets" and "elements of lower dimensionality". Your beam is embedded in volume elements - this is here considered as "element of lower dimensionality". So Moose needs a hint, if those lines are sidesets (default) or elements. You can do that by (1) appending "lower_dimensional_block" to the name of the beam or (2) after the name (the second option looks nicer, but you have to edit the msh file):
(Do not copy the |
Beta Was this translation helpful? Give feedback.
-
I am trying to embed fibers (modeled with 1D beam elements later) in the matrix (3d solid elements), like this in Gmsh
I have reviewed similar discussions #24887 and #24174, but I feel that they do not address this issue.
I can generate 1D mesh and 3d mesh separately in Gmsh. For example
However, the 1D boundary "fiber" in the 3D mesh is not loaded using
FileMeshGenerator
.So it seems I cannot use
StitchedMeshGenerator
either, because I cannot find the corresponding boundary positions between the two meshes.Could you provide any suggestions or hints? Thank you.
Beta Was this translation helpful? Give feedback.
All reactions