Eng-Tips is the largest engineering community on the Internet

Intelligent Work Forums for Engineering Professionals

  • Congratulations waross on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

"node"-variable

Status
Not open for further replies.

laserablaatio

Mechanical
Oct 23, 2006
18
FI
I'm studying an ansys batch file made by someone else and
found there a line like this:
tmpvar = NODE(0,940,300)

What is this NODE? Seems that it could be some kind of 3D-array (related to the nodes), which is accessed by its indices. However, I could not find any specific documentation on this.

Also, it is not listed when using the *STATUS -command.

Thanks for your help!
 
Replies continue below

Recommended for you

The command NODE(X,Y,Z) is an inline *GET function whcih finds the node number nearest to the specified X,Y,Z position in the active coordinate system. If you have two nodes which are coincident it will take the lower of the two. So, tmpvar = NODE(0,940,300) sets the scalar parameter tmpvar to the node number nearest that location.

-Brian
 
Thank you for the answer!
I also noticed the existence of other similar inline functions when reading through the *GET documentation.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top