Struct ReactivePower
Represents Reactive Power
Assembly: Meadow.Units.dll
View Source
[Serializable]
public struct ReactivePower : IComparable, IFormattable, IConvertible, IEquatable<double>, IComparable<double>
Implements:
System.IComparable, System.IFormattable, System.IConvertible, System.IEquatable<System.Double>, System.IComparable<System.Double>
Properties
MillivoltAmperes
ReactivePower in Millovolt Amperes
View Source
public double MillivoltAmperes { get; }
VoltAmperes
ReactivePower in Volt Amperes
View Source
public double VoltAmperes { get; }
KilovoltAmperes
ReactivePower in Kilvolt Amperes
View Source
public double KilovoltAmperes { get; }
MegavoltAmperes
ReactivePower in Megavolt Amperes
View Source
public double MegavoltAmperes { get; }
GigavoltAmperes
ReactivePower in Gigavolt Amperes
View Source
public double GigavoltAmperes { get; }
Methods
From(UnitType)
Get a double value for a specific unit
View Source
[Pure]
public double From(ReactivePower.UnitType convertTo)
Returns
System.Double: the converted value
Parameters
| Type | Name | Description |
|---|---|---|
| Meadow.Units.ReactivePower.UnitType | convertTo | unit to covert to |
Equals(object)
Compare to another ReactivePower object
View Source
[Pure]
public override bool Equals(object obj)
Returns
System.Boolean: true if equal
Parameters
| Type | Name | Description |
|---|---|---|
System.Object | obj | The object to compare |
GetHashCode()
Get hash of object
View Source
[Pure]
public override int GetHashCode()
Returns
System.Int32: int32 hash value### Equals(ReactivePower)
Compare to another ReactivePower object
View Source
[Pure]
public bool Equals(ReactivePower other)
Returns
System.Boolean: true if equal
Parameters
| Type | Name | Description |
|---|---|---|
| Meadow.Units.ReactivePower | other | The object to compare |
CompareTo(ReactivePower)
Compare to another ReactivePower object
View Source
[Pure]
public int CompareTo(ReactivePower other)
Returns
System.Int32: 0 if equal
Parameters
| Type | Name |
|---|---|
| Meadow.Units.ReactivePower | other |
Abs()
Returns the absolute length, that is, the length without regards to negative polarity
View Source
[Pure]
public ReactivePower Abs()
Returns
ToString()
Get a string representation of the object
View Source
[Pure]
public override string ToString()
Returns
System.String: A string representing the object### ToString(string, IFormatProvider)
Get a string representation of the object
View Source
[Pure]
public string ToString(string format, IFormatProvider formatProvider)
Returns
System.String: A string representing the object
Parameters
| Type | Name | Description |
|---|---|---|
System.String | format | format |
System.IFormatProvider | formatProvider | format provider |
CompareTo(object)
Compare to another ReactivePower object
View Source
[Pure]
public int CompareTo(object obj)
Returns
System.Int32: 0 if equal
Parameters
| Type | Name | Description |
|---|---|---|
System.Object | obj | The otherReactivePower cast to object |
GetTypeCode()
Get type code of object
View Source
[Pure]
public TypeCode GetTypeCode()
Returns
System.TypeCode: The TypeCode### ToBoolean(IFormatProvider)
Covert to boolean
View Source
[Pure]
public bool ToBoolean(IFormatProvider provider)
Returns
System.Boolean: bool representation of the object
Parameters
| Type | Name | Description |
|---|---|---|
System.IFormatProvider | provider | format provider |
ToByte(IFormatProvider)
Covert to byte
View Source
[Pure]
public byte ToByte(IFormatProvider provider)
Returns
System.Byte: byte representation of the object
Parameters
| Type | Name | Description |
|---|---|---|
System.IFormatProvider | provider | format provider |
ToChar(IFormatProvider)
Covert to char
View Source
[Pure]
public char ToChar(IFormatProvider provider)
Returns
System.Char: char representation of the object
Parameters
| Type | Name | Description |
|---|---|---|
System.IFormatProvider | provider | format provider |
ToDateTime(IFormatProvider)
Covert to DateTime
View Source
[Pure]
public DateTime ToDateTime(IFormatProvider provider)
Returns
System.DateTime: DateTime representation of the object
Parameters
| Type | Name | Description |
|---|---|---|
System.IFormatProvider | provider | format provider |
ToDecimal(IFormatProvider)
Covert to Decimal
View Source
[Pure]
public decimal ToDecimal(IFormatProvider provider)
Returns
System.Decimal: Decimal representation of the object
Parameters
| Type | Name | Description |
|---|---|---|
System.IFormatProvider | provider | format provider |
ToDouble(IFormatProvider)
Covert to double
View Source
[Pure]
public double ToDouble(IFormatProvider provider)
Returns
System.Double: double representation of the object
Parameters
| Type | Name | Description |
|---|---|---|
System.IFormatProvider | provider | format provider |
ToInt16(IFormatProvider)
Covert to in16
View Source
[Pure]
public short ToInt16(IFormatProvider provider)
Returns
System.Int16: int16 representation of the object
Parameters
| Type | Name | Description |
|---|---|---|
System.IFormatProvider | provider | format provider |
ToInt32(IFormatProvider)
Covert to int32
View Source
[Pure]
public int ToInt32(IFormatProvider provider)
Returns
System.Int32: int32 representation of the object
Parameters
| Type | Name | Description |
|---|---|---|
System.IFormatProvider | provider | format provider |
ToInt64(IFormatProvider)
Covert to int64
View Source
[Pure]
public long ToInt64(IFormatProvider provider)
Returns
System.Int64: int64 representation of the object
Parameters
| Type | Name | Description |
|---|---|---|
System.IFormatProvider | provider | format provider |
ToSByte(IFormatProvider)
Covert to sbyte
View Source
[Pure]
public sbyte ToSByte(IFormatProvider provider)
Returns
System.SByte: sbyte representation of the object
Parameters
| Type | Name | Description |
|---|---|---|
System.IFormatProvider | provider | format provider |
ToSingle(IFormatProvider)
Covert to float
View Source
[Pure]
public float ToSingle(IFormatProvider provider)
Returns
System.Single: float representation of the object
Parameters
| Type | Name | Description |
|---|---|---|
System.IFormatProvider | provider | format provider |
ToString(IFormatProvider)
Covert to string
View Source
[Pure]
public string ToString(IFormatProvider provider)
Returns
System.String: string representation of the object
Parameters
| Type | Name | Description |
|---|---|---|
System.IFormatProvider | provider | format provider |
ToType(Type, IFormatProvider)
Covert to type
View Source
[Pure]
public object ToType(Type conversionType, IFormatProvider provider)
Returns
System.Object: type representation of the object
Parameters
| Type | Name | Description |
|---|---|---|
System.Type | conversionType | conversion type |
System.IFormatProvider | provider | format provider |
ToUInt16(IFormatProvider)
Covert to uint16
View Source
[Pure]
public ushort ToUInt16(IFormatProvider provider)
Returns
System.UInt16: uint16 representation of the object
Parameters
| Type | Name | Description |
|---|---|---|
System.IFormatProvider | provider | format provider |
ToUInt32(IFormatProvider)
Covert to uint32
View Source
[Pure]
public uint ToUInt32(IFormatProvider provider)
Returns
System.UInt32: uint32 representation of the object
Parameters
| Type | Name | Description |
|---|---|---|
System.IFormatProvider | provider | format provider |
ToUInt64(IFormatProvider)
Covert to uint64
View Source
[Pure]
public ulong ToUInt64(IFormatProvider provider)
Returns
System.UInt64: uint64 representation of the object
Parameters
| Type | Name | Description |
|---|---|---|
System.IFormatProvider | provider | format provider |
CompareTo(double?)
Compare the default value to a double
View Source
[Pure]
public int CompareTo(double? other)
Returns
System.Int32: 0 if equal
Parameters
| Type | Name | Description |
|---|---|---|
System.Nullable<System.Double> | other | value to compare |
Equals(double?)
Compare the default value to a double
View Source
[Pure]
public bool Equals(double? other)
Returns
System.Boolean: 0 if equal
Parameters
| Type | Name | Description |
|---|---|---|
System.Nullable<System.Double> | other | value to compare |
Equals(double)
Compare the default value to a double
View Source
[Pure]
public bool Equals(double other)
Returns
System.Boolean: 0 if equal
Parameters
| Type | Name | Description |
|---|---|---|
System.Double | other | value to compare |
CompareTo(double)
Compare the default value to a double
View Source
[Pure]
public int CompareTo(double other)
Returns
System.Int32: 0 if equal
Parameters
| Type | Name | Description |
|---|---|---|
System.Double | other | value to compare |
Implements
System.IComparableSystem.IFormattableSystem.IConvertibleSystem.IEquatable<System.Double>System.IComparable<System.Double>