Click or drag to resize

GaussianDerivativeSignal Class

A derivative of Gaussian signal
Inheritance Hierarchy
SystemObject
  ema3d.Api.V25APISimObjectBaseGaussianD1Signal
    ema3d.Api.V25.Core.SignalsAnalyticSignalBaseGaussianD1Signal, GaussianD1Waveform
      ema3d.Api.V25.Core.SignalsGaussianDerivativeSignal

Namespace: ema3d.Api.V25.Core.Signals
Assembly: ema3d.Api.V25 (in ema3d.Api.V25.dll) Version: 0.0.0.0
Syntax
public sealed class GaussianDerivativeSignal : AnalyticSignalBase<GaussianD1Signal, GaussianD1Waveform>

The GaussianDerivativeSignal type exposes the following members.

Properties
 NameDescription
Public propertyAlpha Gets/Sets the alpha parameter of the derivative of gaussian waveform.
Public propertyAmplitude Gets/Sets the amplitude of the waveform
Public propertyAutoConfigure Gets/Sets whether to automatically configure Gaussian parameters to domain settings.
Public propertyDisplayName Gets/Sets the display name of the underlying sim object.
(Inherited from APISimObjectBaseTWrapper)
Public propertyMaxFrequency Gets/Sets the maximum frequency band of the waveform.
Public propertyName Name of the Analytic Signal
(Inherited from AnalyticSignalBaseTWrapper, TWave)
Public propertyTEnd The simulation time the signal turns off. The default end time matches the simulation end time
(Inherited from AnalyticSignalBaseTWrapper, TWave)
Public propertyTPeak Gets/Sets the time to peak of the waveform.
Public propertyTStart The simulation time the signal turns on. The default start time matches the simulation start time.
(Inherited from AnalyticSignalBaseTWrapper, TWave)
Public propertyTStep The sample rate of the signal. The default step time matches the simulation step time.
(Inherited from AnalyticSignalBaseTWrapper, TWave)
Top
Methods
 NameDescription
Public methodAttachTo Attaches the signal to the Wave
(Inherited from AnalyticSignalBaseTWrapper, TWave)
Public methodStatic memberCreate Create a new derivative of Gaussian signal
Public methodDelete Delete the Analytic Signal
(Inherited from AnalyticSignalBaseTWrapper, TWave)
Public methodEqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
Public methodStatic memberGetAll Retrieve all GaussianDerivativeSignal objects in the document.
Public methodGetHashCodeServes as the default hash function.
(Inherited from Object)
Public methodGetName Returns the name of the object.
(Inherited from APISimObjectBaseTWrapper)
Public methodGetSiblings Get all objects that share this object's type in the document.
(Overrides APISimObjectBaseTWrapperGetSiblings(Document))
Public methodGetTypeGets the Type of the current instance.
(Inherited from Object)
Public methodSetName Sets the name of the object
(Inherited from APISimObjectBaseTWrapper)
Public methodSetVisibility Sets the visibility status of the object.
(Inherited from APISimObjectBaseTWrapper)
Public methodToStringReturns a string that represents the current object.
(Inherited from Object)
Top
Example
Python
from ema3d.Api.V25.Core.Signals import GaussianDerivativeSignal as GaussianDerivativeSignal

_dgauss = GaussianDerivativeSignal.Create()
_dgauss.DisplayName = "GaussianDerivativeSignal"
_dgauss.Amplitude = 20
_dgauss.AutoConfigure = False
_dgauss.Alpha = 2e6
_dgauss.TPeak = 2e-7
See Also