reading node grid comments
hi,
I need to mark all the nodes with comment. Iam using hm_getentityvalue for finding the comments. For a biw it taking almost 2.5 mins to read.Is their any other method so that I can reduce the time taken.
Answers
-
Altair Forum User said:
hi,
I need to mark all the nodes with comment. Iam using hm_getentityvalue for finding the comments. For a biw it taking almost 2.5 mins to read.Is their any other method so that I can reduce the time taken.
Hi, it costs much time to loop through nodes and filter which is commented. looping by tcl need to be avoid always. instead, let hm C code do that (much faster):
*createmark nodes 1 'equal to value' \$COMMENT_OPTION 2
=> will select all nodes that has comment option by 'Show in menu/export'
0 -
-
oh. I see.
let's check it tomorrow
sorry i misunderstand that it is hm comment
0 -
Hi
try *createmark nodes 1 'equal to value' \$GRID_COMMENT_OPTION 1
0 -
thanks tinh, this is working in case of full model. what if we want to mark displayed nodes with grid comments on .
0 -
hi
use createmark elems 2 displayed and markintersection elems 1 elems 2 to filter displayed nodes
0 -
hi tinh,
*createmark nodes 1 'equal to value' \$GRID_COMMENT_OPTION 1
*createmark nodes 2 'displayed'
*markintersection nodes 1 nodes 2
how do I get the intersection node ids
regards,
JAMIE
0 -
use hm_getmark nodes 1
0 -
thanks tinh. appreciate for your support.
0