19 lines
696 B
C#
19 lines
696 B
C#
using static DecimalMath.DecimalEx;
|
|
|
|
namespace InnovEnergy.Lib.Units.Composite;
|
|
|
|
|
|
#pragma warning disable CS8618
|
|
|
|
public record Ac3Bus
|
|
{
|
|
public AcPhase L1 { get; init; }
|
|
public AcPhase L2 { get; init; }
|
|
public AcPhase L3 { get; init; }
|
|
public Frequency Frequency { get; init; }
|
|
|
|
public ApparentPower ApparentPower => L1.ApparentPower + L2.ApparentPower + L3.ApparentPower;
|
|
public ReactivePower ReactivePower => L1.ReactivePower + L2.ReactivePower + L3.ReactivePower;
|
|
public Power ActivePower => L1.ActivePower + L2.ActivePower + L3.ActivePower;
|
|
public Angle Phi => ATan2(ReactivePower, ActivePower);
|
|
} |