PostJtExportBuilder Class

class NXOpen.CAE.PostJtExportBuilder

Bases: NXOpen.Builder

Represents a NXOpen.CAE.PostJtExportBuilder used for exporting JTs of Result Types in Post Processing

To create a new instance of this class, use NXOpen.CAE.ResultManager.CreatePostJtBuilder()

New in version NX8.5.0.

Properties

Property Description
Component Returns or sets the component of the builder
Jtdatasetname Returns or sets the jtdatasetname of the builder
Jtfilename Returns or sets the jtfilename of the builder
Layer Returns or sets the layer of the builder
Ply Returns or sets the ply and layer of the builder
Result Returns or sets the result of the builder
ResultType Returns or sets the result type of the builder
Tag Returns the Tag for this object.

Methods

Method Description
Commit Commits any edits that have been applied to the builder.
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

Component

PostJtExportBuilder.Component

Returns or sets the component of the builder

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

Getter Method

Signature Component()

Returns:
Return type:NXOpen.CAE.ResultComponent

New in version NX8.5.0.

License requirements: nx_masterfem (“Finite Element Modeling”) OR nx_design_sim (“NX Design Simulation”)

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

Setter Method

Signature Component(component)

Parameters:component (NXOpen.CAE.ResultComponent) –

New in version NX8.5.0.

License requirements: nx_masterfem (“Finite Element Modeling”) OR nx_design_sim (“NX Design Simulation”)

Jtdatasetname

PostJtExportBuilder.Jtdatasetname

Returns or sets the jtdatasetname of the builder

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

Getter Method

Signature Jtdatasetname()

Returns:
Return type:str

New in version NX8.5.0.

License requirements: nx_masterfem (“Finite Element Modeling”) OR nx_design_sim (“NX Design Simulation”)

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

Setter Method

Signature Jtdatasetname(jtdatasetname)

Parameters:jtdatasetname (str) –

New in version NX8.5.0.

License requirements: nx_masterfem (“Finite Element Modeling”) OR nx_design_sim (“NX Design Simulation”)

Jtfilename

PostJtExportBuilder.Jtfilename

Returns or sets the jtfilename of the builder

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

Getter Method

Signature Jtfilename()

Returns:
Return type:str

New in version NX8.5.0.

License requirements: nx_masterfem (“Finite Element Modeling”) OR nx_design_sim (“NX Design Simulation”)

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

Setter Method

Signature Jtfilename(jtfilename)

Parameters:jtfilename (str) –

New in version NX8.5.0.

License requirements: nx_masterfem (“Finite Element Modeling”) OR nx_design_sim (“NX Design Simulation”)

Layer

PostJtExportBuilder.Layer

Returns or sets the layer of the builder

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

Getter Method

Signature Layer()

Returns:
Return type:int

New in version NX8.5.0.

License requirements: nx_masterfem (“Finite Element Modeling”) OR nx_design_sim (“NX Design Simulation”)

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

Setter Method

Signature Layer(layer)

Parameters:layer (int) –

New in version NX8.5.0.

License requirements: nx_masterfem (“Finite Element Modeling”) OR nx_design_sim (“NX Design Simulation”)

Ply

PostJtExportBuilder.Ply

Returns or sets the ply and layer of the builder

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

Getter Method

Signature Ply()

Returns:
Return type:int

New in version NX8.5.0.

License requirements: nx_masterfem (“Finite Element Modeling”) OR nx_design_sim (“NX Design Simulation”)

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

Setter Method

Signature Ply(ply)

Parameters:ply (int) –

New in version NX8.5.0.

License requirements: nx_masterfem (“Finite Element Modeling”) OR nx_design_sim (“NX Design Simulation”)

Result

PostJtExportBuilder.Result

Returns or sets the result of the builder

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

Getter Method

Signature Result()

Returns:
Return type:NXOpen.CAE.Result

New in version NX8.5.0.

License requirements: nx_masterfem (“Finite Element Modeling”) OR nx_design_sim (“NX Design Simulation”)

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

Setter Method

Signature Result(result)

Parameters:result (NXOpen.CAE.Result) –

New in version NX8.5.0.

License requirements: nx_masterfem (“Finite Element Modeling”) OR nx_design_sim (“NX Design Simulation”)

ResultType

PostJtExportBuilder.ResultType

Returns or sets the result type of the builder

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

Getter Method

Signature ResultType()

Returns:
Return type:NXOpen.CAE.BaseResultType

New in version NX8.5.0.

License requirements: nx_masterfem (“Finite Element Modeling”) OR nx_design_sim (“NX Design Simulation”)

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

Setter Method

Signature ResultType(resulttype)

Parameters:resulttype (NXOpen.CAE.BaseResultType) –

New in version NX8.5.0.

License requirements: nx_masterfem (“Finite Element Modeling”) OR nx_design_sim (“NX Design Simulation”)

Method Detail

Validate

PostJtExportBuilder.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.