CfdLocalResolutionConstraintCollection Class

class NXOpen.CAE.CfdLocalResolutionConstraintCollection

Bases: object

Provides methods for managing Local Resolution Constraints:py:class:CAE.CfdLocalResolutionConstraint in a fem part

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

New in version NX9.0.0.

Methods

Method Description
CloneConstraint Clones a local resolution constraint.
CreateBuilder Creates a local resolution constraint builder
DeleteConstraint Delete a local resolution constraint.
Find Finds the CAE.CfdLocalResolutionConstraint with the given identifier as recorded in a journal.
FindObject Finds the CAE.CfdLocalResolutionConstraint with the given identifier as recorded in a journal.

Method Detail

CloneConstraint

CfdLocalResolutionConstraintCollection.CloneConstraint

Clones a local resolution constraint.

Signature CloneConstraint(source)

Parameters:source (NXOpen.CAE.CfdLocalResolutionConstraint) – Source local resolution constraint
Returns:Cloned local resolution constraint
Return type:NXOpen.CAE.CfdLocalResolutionConstraint

New in version NX9.0.0.

License requirements: nx_adv_fld_mod_solv (“NX Advanced Fluid Modeling - Full”) OR sc_acou_meshing (” SC Acoustic Meshing”)

CreateBuilder

CfdLocalResolutionConstraintCollection.CreateBuilder

Creates a local resolution constraint builder

Signature CreateBuilder(recipe)

Parameters:recipe (NXOpen.TaggedObject) – CfdLocalResolutionConstraint to be edited, if None or FluidDomainRecipe then create a new one
Returns:LocalResolutionConstraint Builder
Return type:NXOpen.CAE.CfdLocalResolutionConstraintBuilder

New in version NX9.0.0.

License requirements: nx_adv_fld_mod_solv (“NX Advanced Fluid Modeling - Full”) OR sc_acou_meshing (” SC Acoustic Meshing”)

DeleteConstraint

CfdLocalResolutionConstraintCollection.DeleteConstraint

Delete a local resolution constraint.

Signature DeleteConstraint(constraint)

Parameters:constraint (NXOpen.CAE.CfdLocalResolutionConstraint) – The local resolution constraint to be deleted

New in version NX9.0.0.

License requirements: nx_adv_fld_mod_solv (“NX Advanced Fluid Modeling - Full”) OR sc_acou_meshing (” SC Acoustic Meshing”)

Find

CfdLocalResolutionConstraintCollection.Find

Finds the CAE.CfdLocalResolutionConstraint with 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 Find 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 Find(journalIdentifier)

Parameters:journalIdentifier (str) – Local Resolution Constraint name
Returns:local resolution constraint with this identifier
Return type:NXOpen.CAE.CfdLocalResolutionConstraint

New in version NX11.0.0.

License requirements: None.

FindObject

CfdLocalResolutionConstraintCollection.FindObject

Finds the CAE.CfdLocalResolutionConstraint with 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) – Local Resolution Constraint name
Returns:local resolution constraint with this identifier
Return type:NXOpen.CAE.CfdLocalResolutionConstraint

New in version NX9.0.0.

License requirements: None.