nodes
Altair Forum User
Altair Employee
Answers
-
-
Altair Forum User said:
How does hyper mesh define it's node ids? also, is there a way to define the nodes by coordinates?
I need to reference the node # in the script i'm writing and would like to be able to determine the node ID without having to look it up.
You can get node id by coordinates by:
set NodeId [hm_getclosestnode $xcoord $ycoord $zcoord]
To determine node id that you've just created:
set NodeId [hm_latestentityid nodes]
0 -
The reason i'm asking is i'm trying to create a script that automatically applies a load/constraint to a certain node after hypermesh has meshed the model without having to manually click on the node i want to apply the force/SPC to.
0