Phase => Bus
This commit is contained in:
parent
4bf9deffac
commit
b983614cfc
|
@ -2,17 +2,17 @@ using System.Diagnostics.CodeAnalysis;
|
|||
|
||||
namespace InnovEnergy.Lib.Units.Composite;
|
||||
|
||||
public record Ac1Phase : AcPhase
|
||||
public record Ac1Bus : AcPhase
|
||||
{
|
||||
public Frequency Frequency { get; init; }
|
||||
|
||||
[SuppressMessage("ReSharper", "RedundantCast")]
|
||||
public static Ac1Phase operator |(Ac1Phase left, Ac1Phase right)
|
||||
public static Ac1Bus operator |(Ac1Bus left, Ac1Bus right)
|
||||
{
|
||||
var f = left.Frequency | right.Frequency;
|
||||
var p = (AcPhase)left | (AcPhase)right;
|
||||
|
||||
return new Ac1Phase
|
||||
return new Ac1Bus
|
||||
{
|
||||
Frequency = f,
|
||||
Current = p.Current,
|
|
@ -3,7 +3,7 @@ using static DecimalMath.DecimalEx;
|
|||
|
||||
namespace InnovEnergy.Lib.Units.Composite;
|
||||
|
||||
public record Ac3Phase
|
||||
public record Ac3Bus
|
||||
{
|
||||
public AcPhase L1 { get; init; }
|
||||
public AcPhase L2 { get; init; }
|
||||
|
@ -15,6 +15,6 @@ public record Ac3Phase
|
|||
public Power ActivePower => L1.ActivePower + L2.ActivePower + L3.ActivePower;
|
||||
public Angle Phi => ATan2(ReactivePower, ActivePower);
|
||||
|
||||
public static Ac3Phase operator |(Ac3Phase left, Ac3Phase right) => OpParallel(left, right);
|
||||
private static readonly Func<Ac3Phase, Ac3Phase, Ac3Phase> OpParallel = "|".CreateBinaryOpForProps<Ac3Phase>();
|
||||
public static Ac3Bus operator |(Ac3Bus left, Ac3Bus right) => OpParallel(left, right);
|
||||
private static readonly Func<Ac3Bus, Ac3Bus, Ac3Bus> OpParallel = "|".CreateBinaryOpForProps<Ac3Bus>();
|
||||
}
|
|
@ -3,7 +3,7 @@ using static DecimalMath.DecimalEx;
|
|||
namespace InnovEnergy.Lib.Units.Composite;
|
||||
|
||||
|
||||
public record AcPhase : IPhase
|
||||
public record AcPhase : IBus
|
||||
{
|
||||
private readonly Voltage _Voltage;
|
||||
public Voltage Voltage
|
||||
|
|
|
@ -0,0 +1,14 @@
|
|||
using InnovEnergy.Lib.Utils;
|
||||
|
||||
namespace InnovEnergy.Lib.Units.Composite;
|
||||
|
||||
public record DcBus : IBus
|
||||
{
|
||||
public Voltage Voltage { get; init; }
|
||||
public Current Current { get; init; }
|
||||
|
||||
public Power Power => Current * Voltage;
|
||||
|
||||
public static DcBus operator |(DcBus left, DcBus right) => OpParallel(left, right);
|
||||
private static readonly Func<DcBus, DcBus, DcBus> OpParallel = "|".CreateBinaryOpForProps<DcBus>();
|
||||
}
|
|
@ -1,14 +0,0 @@
|
|||
using InnovEnergy.Lib.Utils;
|
||||
|
||||
namespace InnovEnergy.Lib.Units.Composite;
|
||||
|
||||
public record DcPhase : IPhase
|
||||
{
|
||||
public Voltage Voltage { get; init; }
|
||||
public Current Current { get; init; }
|
||||
|
||||
public Power Power => Current * Voltage;
|
||||
|
||||
public static DcPhase operator |(DcPhase left, DcPhase right) => OpParallel(left, right);
|
||||
private static readonly Func<DcPhase, DcPhase, DcPhase> OpParallel = "|".CreateBinaryOpForProps<DcPhase>();
|
||||
}
|
|
@ -4,7 +4,7 @@ namespace InnovEnergy.Lib.Units.Composite;
|
|||
|
||||
[SuppressMessage("ReSharper", "MemberCanBeProtected.Global")]
|
||||
|
||||
public interface IPhase
|
||||
public interface IBus
|
||||
{
|
||||
public Voltage Voltage { get; }
|
||||
public Current Current { get; }
|
Loading…
Reference in New Issue