LaminatePostReportBuilder Class

class NXOpen.CAE.LaminatePostReportBuilder

Bases: NXOpen.Builder

Represents a NXOpen.CAE.LaminatePostReport builder

There is no kf creator.

New in version NX8.0.0.

Properties

Property Description
Name Returns or sets the name of the laminate post report setup
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.
GetSelectedResults Get the selected results
GetSelectedSolutions Get the selected results
SetSelectedResults Set the selected results
SetSelectedSolutions Set the selected results
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

Name

LaminatePostReportBuilder.Name

Returns or sets the name of the laminate post report setup

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

Getter Method

Signature Name

Returns:
Return type:str

New in version NX8.0.0.

License requirements: nx_lam_composites (“Laminate Composites”)

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

Setter Method

Signature Name

Parameters:name (str) –

New in version NX8.0.0.

License requirements: nx_lam_composites (“Laminate Composites”)

Method Detail

GetSelectedResults

LaminatePostReportBuilder.GetSelectedResults

Get the selected results

Signature GetSelectedResults()

Returns:a tuple
Return type:A tuple consisting of (resultNames, loadcaseNames, iterationNames) resultNames is a list of str. loadcaseNames is a list of str. iterationNames is a list of str.

New in version NX8.0.0.

Deprecated since version NX11.0.0: Use NXOpen.CAE.LaminatePostReport.GetSelectedSolutions instead.

License requirements: nx_lam_composites (“Laminate Composites”)

GetSelectedSolutions

LaminatePostReportBuilder.GetSelectedSolutions

Get the selected results

Signature GetSelectedSolutions()

Returns:a tuple
Return type:A tuple consisting of (solutionNames, selectAllSubcases, loadcaseNames, iterationNames) solutionNames is a list of str. selectAllSubcases is a list of bool. loadcaseNames is a list of str. iterationNames is a list of str.

New in version NX11.0.0.

License requirements: nx_lam_composites (“Laminate Composites”)

SetSelectedResults

LaminatePostReportBuilder.SetSelectedResults

Set the selected results

Signature SetSelectedResults(resultNames, loadcaseNames, iterationNames)

Parameters:
  • resultNames (list of str) –
  • loadcaseNames (list of str) –
  • iterationNames (list of str) –

New in version NX8.0.0.

Deprecated since version NX11.0.0: Use NXOpen.CAE.LaminatePostReport.SetSelectedSolutions instead.

License requirements: nx_lam_composites (“Laminate Composites”)

SetSelectedSolutions

LaminatePostReportBuilder.SetSelectedSolutions

Set the selected results

Signature SetSelectedSolutions(solutionNames, selectAllSubcases, loadcaseNames, iterationNames)

Parameters:
  • solutionNames (list of str) –
  • selectAllSubcases (list of bool) –
  • loadcaseNames (list of str) –
  • iterationNames (list of str) –

New in version NX11.0.0.

License requirements: nx_lam_composites (“Laminate Composites”)

Validate

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