🎉Community Raffle - Win $25

An exclusive raffle opportunity for active members like you! Complete your profile, answer questions and get your first accepted badge to enter the raffle.
Join and Win

Create A Node

User: "Altair Forum User"
Altair Employee
Updated by Altair Forum User

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?

Find more posts tagged with

Sort by:
1 - 2 of 21
    User: "Altair Forum User"
    Altair Employee
    OP
    Updated by Altair Forum User

    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
    Have a look in the online help for HyperMesh - Reference Guide, Utility Menu and Tcl/Tk, Programming HyperMesh with Tcl/Tk for more info.

    Cheers,

    Eric

    User: "Altair Forum User"
    Altair Employee
    OP
    Updated by Altair Forum User

    Thanks.