SignalCollection Class

class NXOpen.Mechatronics.SignalCollection

Bases: object

Represents a collection of Signal.

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

New in version NX11.0.0.

Methods

Method Description
CreateSignalBuilder Creates a NXOpen.Mechatronics.SignalBuilder.
FindObject Finds the NXOpen.Mechatronics.Signal with the given name.

Method Detail

CreateSignalBuilder

SignalCollection.CreateSignalBuilder

Creates a NXOpen.Mechatronics.SignalBuilder.

Signature CreateSignalBuilder(symbolTable)

Parameters:symbolTable (NXOpen.Mechatronics.Signal) – NXOpen.Mechatronics.Signal to be edited, if None then create a new one
Returns:
Return type:NXOpen.Mechatronics.SignalBuilder

New in version NX11.0.0.

License requirements: nx_mcd_core (“MECHATRONICS CONCEPT DESIGNER”)

FindObject

SignalCollection.FindObject

Finds the NXOpen.Mechatronics.Signal with the given name.

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 given name.

Signature FindObject(name)

Parameters:name (str) – The name of the NXOpen.Mechatronics.Signal.
Returns:NXOpen.Mechatronics.Signal with this name.
Return type:NXOpen.Mechatronics.Signal

New in version NX11.0.0.

License requirements: nx_mcd_core (“MECHATRONICS CONCEPT DESIGNER”)