MeshControlCollection Class¶
-
class
NXOpen.CAE.MeshControlCollection¶ Bases:
objectProvides methods for managing mesh controls:py:class:NXOpen.CAE.MeshControl in a fem part
To obtain an instance of this class, refer to
NXOpen.CAE.BaseFEModelNew in version NX5.0.0.
Methods¶
| Method | Description |
|---|---|
| CreateBuilder | Creates a mesh control builder for the mesh control object |
| CreateMmcCreateBuilder | Creates a builder for the MMC Create command. |
| FindObject | Finds the NXOpen.CAE.Mesh with the given identifier as recorded in a journal. |
Method Detail¶
CreateBuilder¶
-
MeshControlCollection.CreateBuilder¶ Creates a mesh control builder for the mesh control object
Signature
CreateBuilder(meshControl)Parameters: meshControl ( NXOpen.CAE.MeshControl) –NXOpen.CAE.MeshControlto be edited, if None then create a new oneReturns: MeshControl Builder Return type: NXOpen.CAE.MeshControlBuilderNew in version NX5.0.0.
License requirements: nx_masterfem (“Finite Element Modeling”)
CreateMmcCreateBuilder¶
-
MeshControlCollection.CreateMmcCreateBuilder¶ Creates a builder for the MMC Create command.
Signature
CreateMmcCreateBuilder(mmcCreate)Parameters: mmcCreate ( NXOpen.CAE.MeshMate) –NXOpen.CAE.MeshMateto be edited, if None then create a new oneReturns: MMCCreateBuilder Return type: NXOpen.CAE.MMCCreateBuilderNew in version NX6.0.0.
License requirements: nx_masterfem (“Finite Element Modeling”)
FindObject¶
-
MeshControlCollection.FindObject¶ Finds the
NXOpen.CAE.Meshwith the given identifier as recorded in a journal.An object may not return the same value as its JournalIdentifier in different versions of the software. However newer versions of the software should find the same object when FindObject is passed older versions of its journal identifier. In general, this method should not be used in handwritten code and exists to support record and playback of journals.
An exception will be thrown if no object can be found with the given journal identifier.
Signature
FindObject(journalIdentifier)Parameters: journalIdentifier (str) – MeshControl name Returns: mesh control with this identifier Return type: NXOpen.CAE.MeshControlNew in version NX3.0.0.
License requirements: nx_masterfem (“Finite Element Modeling”)