CaeSession Class

class NXOpen.CAE.CaeSession

Bases: object

This class provides access to all session related CAE functionality

To obtain an instance of this class, refer to NXOpen.Session

New in version NX7.5.0.

Methods

Method Description
GetDataContainer Returns a NXOpen.CAE.CaeDataContainer to be used for specifying input parameters operations like Simulation Import and Export.
ImportSimulation Creates a NXOpen.CAE.SimPart and a NXOpen.CAE.FemPart from solver specific data.

Method Detail

GetDataContainer

CaeSession.GetDataContainer

Returns a NXOpen.CAE.CaeDataContainer to be used for specifying input parameters operations like Simulation Import and Export.

Signature GetDataContainer()

Returns:the Cae Data Container
Return type:NXOpen.CAE.CaeDataContainer

New in version NX7.5.0.

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

ImportSimulation

CaeSession.ImportSimulation

Creates a NXOpen.CAE.SimPart and a NXOpen.CAE.FemPart from solver specific data.

Import is driven by that properties defined in the input NXOpen.CAE.CaeDataContainer propertyList. The exact properties can vary from solver to solver.

Signature ImportSimulation(solverName, propertyList)

Parameters:
  • solverName (str) – the solver name to indicate what type of data is being imported NOTE: The full Unicode character set is not supported for this parameter.
  • propertyList (NXOpen.CAE.CaeDataContainer) – the import parameters see GetDataContainer.
Returns:

Return type:

NXOpen.CAE.CaePart

New in version NX7.5.0.

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