Innovenergy_trunk/csharp/Lib/Units/Composite/DcBus.cs

13 lines
299 B
C#
Raw Normal View History

2023-03-01 09:52:21 +00:00
namespace InnovEnergy.Lib.Units.Composite;
public class DcBus : Bus
2023-03-01 09:52:21 +00:00
{
public Double Power { get; internal init; }
public static DcBus FromVoltageCurrent(Double voltage, Double current) => new()
{
Voltage = voltage,
Current = current,
Power = current * voltage,
};
2023-03-01 09:52:21 +00:00
}