NodeCreateBuilder Class

class NXOpen.CAE.NodeCreateBuilder

Bases: NXOpen.Builder

Represents a NXOpen.CAE.NodeCreateBuilder.

If you want to get the newly created node returned from this builder use the method NXOpen.CAE.NodeCreateBuilder.CommitNode() instead of Builder.Commit(). They do the same thing except no node is returned from Builder.Commit() since this node is of type NXOpen.CAE.FENode and not of type NXOpen.NXObject

To create a new instance of this class, use NXOpen.CAE.NodeElementManager.CreateNodeCreateBuilder()

New in version NX5.0.0.

Properties

Property Description
Csys Returns or sets the csys
Increment Returns or sets the increment
Label Returns or sets the label
PAngle Returns the p angle
Point Returns or sets the point
TAngle Returns the t angle
Tag Returns the Tag for this object.
NXOpen.CAE.NodeCreateBuilder.X Returns the x
NXOpen.CAE.NodeCreateBuilder.Y Returns the y
NXOpen.CAE.NodeCreateBuilder.Z Returns the z

Methods

Method Description
Commit Commits any edits that have been applied to the builder.
CommitNode Commits the Builder, which creates the node as it was defined and returns the newly create node.
Destroy Deletes the builder, and cleans up any objects created by the builder.
GetCommittedObjects For builders that create more than one object, this method returns the objects that are created by commit.
GetObject Returns the object currently being edited by this builder.
ShowResults Updates the model to reflect the result of an edit to the model for all builders that support showing results.
Validate Validate whether the inputs to the component are sufficient for commit to be called.

Property Detail

Csys

NodeCreateBuilder.Csys

Returns or sets the csys

-------------------------------------

Getter Method

Signature Csys()

Returns:
Return type:NXOpen.CoordinateSystem

New in version NX5.0.0.

License requirements: None.

-------------------------------------

Setter Method

Signature Csys(csys)

Parameters:csys (NXOpen.CoordinateSystem) –

New in version NX5.0.0.

License requirements: nx_masterfem (“Finite Element Modeling”)

Increment

NodeCreateBuilder.Increment

Returns or sets the increment

-------------------------------------

Getter Method

Signature Increment()

Returns:
Return type:int

New in version NX5.0.0.

License requirements: None.

-------------------------------------

Setter Method

Signature Increment(increment)

Parameters:increment (int) –

New in version NX5.0.0.

License requirements: nx_masterfem (“Finite Element Modeling”)

Label

NodeCreateBuilder.Label

Returns or sets the label

-------------------------------------

Getter Method

Signature Label()

Returns:
Return type:int

New in version NX5.0.0.

License requirements: None.

-------------------------------------

Setter Method

Signature Label(label)

Parameters:label (int) –

New in version NX5.0.0.

License requirements: nx_masterfem (“Finite Element Modeling”)

PAngle

NodeCreateBuilder.PAngle

Returns the p angle

-------------------------------------

Getter Method

Signature PAngle()

Returns:
Return type:NXOpen.Expression

New in version NX5.0.0.

License requirements: None.

Point

NodeCreateBuilder.Point

Returns or sets the point

-------------------------------------

Getter Method

Signature Point()

Returns:
Return type:NXOpen.Point

New in version NX5.0.0.

License requirements: None.

-------------------------------------

Setter Method

Signature Point(point)

Parameters:point (NXOpen.Point) –

New in version NX5.0.0.

License requirements: nx_masterfem (“Finite Element Modeling”)

TAngle

NodeCreateBuilder.TAngle

Returns the t angle

-------------------------------------

Getter Method

Signature TAngle()

Returns:
Return type:NXOpen.Expression

New in version NX5.0.0.

License requirements: None.

X

NodeCreateBuilder.X

Returns the x

-------------------------------------

Getter Method

Signature X()

Returns:
Return type:NXOpen.Expression

New in version NX5.0.0.

License requirements: None.

Y

NodeCreateBuilder.Y

Returns the y

-------------------------------------

Getter Method

Signature Y()

Returns:
Return type:NXOpen.Expression

New in version NX5.0.0.

License requirements: None.

Z

NodeCreateBuilder.Z

Returns the z

-------------------------------------

Getter Method

Signature Z()

Returns:
Return type:NXOpen.Expression

New in version NX5.0.0.

License requirements: None.

Method Detail

CommitNode

NodeCreateBuilder.CommitNode

Commits the Builder, which creates the node as it was defined and returns the newly create node.

The method Builder.Commit() will also do the same thing except no node are returned and Builder.GetCommittedObjects() can’t be used since this node is not of type NXOpen.NXObject

Signature CommitNode()

Returns:new Node
Return type:NXOpen.CAE.FENode

New in version NX8.0.3.

License requirements: nx_masterfem (“Finite Element Modeling”)

Validate

NodeCreateBuilder.Validate

Validate whether the inputs to the component are sufficient for commit to be called.

If the component is not in a state to commit then an exception is thrown. For example, if the component requires you to set some property, this method will throw an exception if you haven’t set it. This method throws a not-yet-implemented NXException for some components.

Signature Validate()

Returns:Was self validation successful
Return type:bool

New in version NX3.0.1.

License requirements: None.