Generation of rigidlinks
Altair Forum User
Altair Employee
Hello,
I am trying to create rigids, but I am getting a segmentation error when i run the TCL-file.
I am new to tcl, so maybe someone can help me.
What i wanted to do is marking nodes 'by cone' and link them by rigid to a node i created.
*createmark nodes 2 'by cone' -12 -14 -10 -12 -14 0 10 10 1 inside 1 1 0
*createnode -12 -14 0 0 0 0
*createmark nodes 1 -1
set node1 [hm_getmark nodes 1 0];
*rigidlink node1 2 123456
When I am using a specific nodeID instead of 'node1' in the '*rigidlink' command, then I dont receive any errors. So this probably has to do something with the input of the independent node.
Regards,
Simon
0
Answers
-
Please replace 'node1' by '$node1'
0 -
Thanks!
0