|
Phasor(PhasorType, Double, Double) Constructor
|
Creates a
Phasor of the specified
type from the given rectangular values.
Namespace: GSF.Units.EEAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.248-beta+a497a19de709fd99e2448886199a2c8824265ddf
Syntaxpublic Phasor(
PhasorType type,
double real,
double imaginary
)
Public Sub New (
type As PhasorType,
real As Double,
imaginary As Double
)
public:
Phasor(
PhasorType type,
double real,
double imaginary
)
new :
type : PhasorType *
real : float *
imaginary : float -> Phasor
GSF.Units.EE.Phasor = function(type, real, imaginary);
View SourceParameters
- type PhasorType
- Type of phasor, i.e., current or voltage.
- real Double
- The real component of the ComplexNumber.
- imaginary Double
- The imaginary component of the ComplexNumber.
See Also