TCL Command to get dependent nodes of RBE2 Elements
sanket_patil
Altair Community Member
Hello Everyone,
is there any command to get dependent nodes of RBE2 elements?
Regards,
Sanket
0
Answers
-
Try:
set dependent_Nodes [hm_nodelist $eid]
0 -
First query all node ids. Now one of this is the independent node
hm_getvalue elems id=6804209 dataname=nodes
807424 795935 795947 795965 807150 807423 807428 807518 807521Query the independent node:
hm_getvalue elems id=6804209 dataname=independentnode.id
807424
Now you can remove the independent node from the list and take the rest of'em. Those are your dependent nodes!
0 -
0