2023-06-13 11:03:49 +00:00
|
|
|
namespace InnovEnergy.Lib.Units.Power;
|
|
|
|
|
|
|
|
public sealed class ReactivePower : AcPower
|
|
|
|
{
|
|
|
|
public override String Symbol => "var";
|
|
|
|
|
|
|
|
public ReactivePower(Double value) : base(value)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
public static implicit operator ReactivePower(Double d) => new ReactivePower(d);
|
|
|
|
public static implicit operator Double(ReactivePower d) => d.Value;
|
2023-08-25 15:11:41 +00:00
|
|
|
|
|
|
|
public static ReactivePower? operator -(ReactivePower? d) => -d?.Value;
|
2023-06-13 11:03:49 +00:00
|
|
|
}
|
|
|
|
|