2023-06-13 11:03:49 +00:00
|
|
|
namespace InnovEnergy.Lib.Units.Power;
|
|
|
|
|
2023-09-01 08:03:29 +00:00
|
|
|
public sealed class ReactivePower : Power
|
2023-06-13 11:03:49 +00:00
|
|
|
{
|
|
|
|
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
|
|
|
|
2023-08-30 14:49:44 +00:00
|
|
|
public static ReactivePower operator -(ReactivePower d) => -d.Value;
|
2023-06-13 11:03:49 +00:00
|
|
|
}
|
|
|
|
|