C# 클래스 FaultAlgorithms.CycleData

Contains data for a single cycle over all three line-to-neutral conductors.
파일 보기 프로젝트 열기: GridProtectionAlliance/openXDA 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
AN Conductor
BN Conductor
CN Conductor
StartTime System.DateTime

공개 메소드들

메소드 설명
CalculateSequenceComponents ( Cycle anCycle, Cycle bnCycle, Cycle cnCycle ) : ComplexNumber[]

Calculates the positive, negative, and zero sequence components and returns them in an array with indexes 1, 2, and 0 respectively.

CycleData ( ) : System

Creates a new instance of the CycleData class.

CycleData ( int cycleIndex, int sampleRateDivisor, double frequency, MeasurementDataSet voltageDataSet, MeasurementDataSet currentDataSet ) : System

Creates a new instance of the CycleData class.

메소드 상세

CalculateSequenceComponents() 공개 정적인 메소드

Calculates the positive, negative, and zero sequence components and returns them in an array with indexes 1, 2, and 0 respectively.
public static CalculateSequenceComponents ( Cycle anCycle, Cycle bnCycle, Cycle cnCycle ) : ComplexNumber[]
anCycle Cycle The cycle of A-to-neutral data to be used.
bnCycle Cycle The cycle of B-to-neutral data to be used.
cnCycle Cycle The cycle of C-to-neutral data to be used.
리턴 ComplexNumber[]

CycleData() 공개 메소드

Creates a new instance of the CycleData class.
public CycleData ( ) : System
리턴 System

CycleData() 공개 메소드

Creates a new instance of the CycleData class.
public CycleData ( int cycleIndex, int sampleRateDivisor, double frequency, MeasurementDataSet voltageDataSet, MeasurementDataSet currentDataSet ) : System
cycleIndex int The index of the cycle being created.
sampleRateDivisor int The value to divide from the sample rate to determine the index of the sample at the start of the cycle.
frequency double The frequency of the measured system, in Hz.
voltageDataSet MeasurementDataSet The data set containing voltage measurements.
currentDataSet MeasurementDataSet The data set containing current measurements.
리턴 System

프로퍼티 상세

AN 공개적으로 프로퍼티

A-to-neutral conductor
public Conductor,FaultAlgorithms AN
리턴 Conductor

BN 공개적으로 프로퍼티

B-to-neutral conductor
public Conductor,FaultAlgorithms BN
리턴 Conductor

CN 공개적으로 프로퍼티

C-to-neutral conductor
public Conductor,FaultAlgorithms CN
리턴 Conductor

StartTime 공개적으로 프로퍼티

Timestamp of the start of the cycle.
public DateTime,System StartTime
리턴 System.DateTime