C# Класс FaultAlgorithms.CycleData

Contains data for a single cycle over all three line-to-neutral conductors.
Показать файл Открыть проект Примеры использования класса

Открытые свойства

Свойство Тип Описание
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