How to build a lattice structure from a mesh file or some coordinate of beams?
Find more posts tagged with
Sort by:
1 - 8 of
81
Goto Geom page>> Surface>> Extract surface from FE. This should extract surfaces.
You can also use Lines option to extract lines using nodes.
Thanks for yours nice answer, and I have one more question 'How to do this things by tcl codes instead of interactive operation?'.Is there any examples or tutorials can help me do this thing? Thank you very much again!
Try
set ElemList {}
*createnode $x1 $y1 $z1
*createnode $x2 $y2 $z2
*createlist nodes 1 -1 -2
*createelement 2 1 1 1
lappend ElemList [hm_latestentityid elems]
#.... => repeat with other x, y, z coordinates
eval *createmark elems 1 $ElemList
*equivalence elems 1 0.1 1 0 0
eval *createmark elems 1 $ElemList
*configedit 1 bar2
Hi,
You can extract lines from the edges of mesh and use the same for meshing with beams.
I hope this helps.