Generating 1D lower dimensional block and adding it to 3D filemesh #24887
-
Hi :) |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 23 replies
-
Hello I m not sure we have tried to do this before but on paper it's possible. then you can either combine (detached meshes) using a CombineMeshGenerator or stitch them (you ll need a nodeset to stitch the polyline to on the multiD mesh) Guillaume |
Beta Was this translation helpful? Give feedback.
-
Ah I see! Thanks a lot! ... maybe this did the trick.. need to test if the mesh actually works for my simulation but in paraview it looks good!
|
Beta Was this translation helpful? Give feedback.
-
Hey guys! I have an additional question/situation regarding this stitching process. Coming from a different filemesh (structured mesh based on an eclipse model using this python tool to convert it to exodus: https://github.com/cpgr/em2ex) I now get an error that says stitching is not possible due to the mesh type. See attached the error, as well as the Mesh file and the input I use with --mesh-only to test the stitching. Is it generally true that its not possible to add a lower 1D block to a structured 3D-hex-mesh? Are there any workarounds to this? Cheers |
Beta Was this translation helpful? Give feedback.
-
I have a related follow up question! Cant find information on these types just that for libmesh TRUSS elements end up being treated like EDGE2: But I'm wondering what the difference is between EDGE2 and TRUSS for my actual simulation? Is it something related to degrees of freedom? Where can I find more info on this? |
Beta Was this translation helpful? Give feedback.
Hello
I m not sure we have tried to do this before but on paper it's possible.
Use a FileMeshGenerator to load your mesh
Use a ParsedCurveGenerator to create the 1D line (for example)
then you can either combine (detached meshes) using a CombineMeshGenerator or stitch them (you ll need a nodeset to stitch the polyline to on the multiD mesh)
Guillaume