C# Class GSF.NumericalAnalysis.SineWave

Represents a sine wave of the form y=A*sin(ω*t+Φ)+δ.
Afficher le fichier Open project: GridProtectionAlliance/gsf

Méthodes publiques

Свойство Type Description
Amplitude double
Bias double
Frequency double
Phase double

Méthodes publiques

Méthode Description
CalculateY ( double t ) : double

Calculates the y-value for the given time.

Method Details

CalculateY() public méthode

Calculates the y-value for the given time.
public CalculateY ( double t ) : double
t double The time, in seconds.
Résultat double

Property Details

Amplitude public_oe property

Amplitude (A) of the sine wave.
public double Amplitude
Résultat double

Bias public_oe property

Vertical offset (δ) of the sine wave.
public double Bias
Résultat double

Frequency public_oe property

Frequency (ω) of the sine wave, in Hz.
public double Frequency
Résultat double

Phase public_oe property

Phase (Φ) shift of the sine wave.
public double Phase
Résultat double