Supress list of lines
Hello,
I have a list of line id's that I'd like to suppress in Hypermesh via Tcl. Is this possible? I tried using the *edgesuppress command in a loop, but it appears the line id's get reassigned after the first suppression. I suppose it makes sense when they are connected to each other.
Thanks,
Bocaj22
Best Answer
-
Hello,
Use *edgesmarksuppress instead.
https://2022.help.altair.com/2022.1/hwdesktop/hwd/topics/reference/hm/_edgesmarksuppress.htm
This will take a mark instead of just an edge for input. So you can createmark from your list and then feed them all in at once.
p.s. Ignore the parentheses in the example. The command should just be run with spaces between arguments.
0
Answers
-
Hello,
Use *edgesmarksuppress instead.
https://2022.help.altair.com/2022.1/hwdesktop/hwd/topics/reference/hm/_edgesmarksuppress.htm
This will take a mark instead of just an edge for input. So you can createmark from your list and then feed them all in at once.
p.s. Ignore the parentheses in the example. The command should just be run with spaces between arguments.
0 -
Ben Buchanan said:
Hello,
Use *edgesmarksuppress instead.
https://2022.help.altair.com/2022.1/hwdesktop/hwd/topics/reference/hm/_edgesmarksuppress.htm
This will take a mark instead of just an edge for input. So you can createmark from your list and then feed them all in at once.
p.s. Ignore the parentheses in the example. The command should just be run with spaces between arguments.
Just what I was looking for, thanks!!
0