如何在ANSYS中分离节点?
how to segregate nodes in ANSYS?
我在模型中选择了一些节点,类似于两个相距一定距离的补丁。如何使用 ANSYS APDL 代码分离这两个补丁?
The image shows selected nodes and local coordinate system created at location, lets say i want to keep only nodes which are near to local coordinate system and the also the nodal distance varies each and every time.
我认为您正在寻找从当前集中重新选择。
假设你的集合被选中并且 X 方向的补丁大小是 xwidth.
你得到最近的集合:
nsel,r,loc,X,-xwidth,xwidth
cm,set1,NODE
然后重新选择所有并取消选择第一组:
alls
cmsel,u,set
cm,set2,NODE
我在模型中选择了一些节点,类似于两个相距一定距离的补丁。如何使用 ANSYS APDL 代码分离这两个补丁? The image shows selected nodes and local coordinate system created at location, lets say i want to keep only nodes which are near to local coordinate system and the also the nodal distance varies each and every time.
我认为您正在寻找从当前集中重新选择。 假设你的集合被选中并且 X 方向的补丁大小是 xwidth.
你得到最近的集合:
nsel,r,loc,X,-xwidth,xwidth
cm,set1,NODE
然后重新选择所有并取消选择第一组:
alls
cmsel,u,set
cm,set2,NODE