C# 클래스 GSF.NumericalAnalysis.SineWave

Represents a sine wave of the form y=A*sin(ω*t+Φ)+δ.
파일 보기 프로젝트 열기: GridProtectionAlliance/gsf

공개 프로퍼티들

프로퍼티 타입 설명
Amplitude double
Bias double
Frequency double
Phase double

공개 메소드들

메소드 설명
CalculateY ( double t ) : double

Calculates the y-value for the given time.

메소드 상세

CalculateY() 공개 메소드

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

프로퍼티 상세

Amplitude 공개적으로 프로퍼티

Amplitude (A) of the sine wave.
public double Amplitude
리턴 double

Bias 공개적으로 프로퍼티

Vertical offset (δ) of the sine wave.
public double Bias
리턴 double

Frequency 공개적으로 프로퍼티

Frequency (ω) of the sine wave, in Hz.
public double Frequency
리턴 double

Phase 공개적으로 프로퍼티

Phase (Φ) shift of the sine wave.
public double Phase
리턴 double