how to get ID of selected components on Hyperview
Ali Arapoğlu
Altair Community Member
Hello everyone,
Im writing a script but I need to get ID's of selected components on Hyperworks.
Just like HyperMesh command: *createmarkpanel components 1 "Select components". But its now working on Hyperview.
Is there any way to do this?
0
Answers
-
Hello @Ali Arapoğlu ,
entty selection is more complex in HyperView than in HyperMesh if you use native core tcl commands.
That said, if you use hwc instead, you should get mre easily a tcl code including selection of parts:
tcl hwc open animation modelandresult path/bullet.op2 path/bullet.op2
tcl hwc mark clear | mark component 3,5
tcl hwc result scalar load type=Displacement marked=true | mark clearFor more information regarding hwc, please look at the article below:
Hope this helps,
Michael
1