The Siemens Community Catalyst program was co-created with our community to acknowledge technology leaders who consistently contribute to the Siemens Community. Nominations are accepted on a rolling basis.
hi,
Does anyone know how to create a node in hypermesh using tcl?
In macro, i use something like *createnode(1,1,1,0,0,0) in macro to create a node. But have no idea on how to do it in tcl.
Any idea?
You can basically use any 'macro' command in TCL, plus all the TCL commands for loops, logic, file management, etc. The main difference is for TCL, you have to remove all the parentheses and commas between data fields. To create a node in TCL, you would enter
*createnode 1 1 1 0 0 0
Cheers,
Eric
Thanks.