48 lines
2.3 KiB
C#
48 lines
2.3 KiB
C#
using InnovEnergy.Lib.Units;
|
|
using InnovEnergy.Lib.Units.Composite;
|
|
using InnovEnergy.Lib.Units.Power;
|
|
|
|
namespace InnovEnergy.Lib.Devices.Battery48TL;
|
|
|
|
public class Battery48TlRecords
|
|
{
|
|
public required DcBus Dc { get; init; }
|
|
public required Boolean Eoc { get; init; }
|
|
public required IReadOnlyList<String> Warnings { get; init; }
|
|
public required IReadOnlyList<String> Alarms { get; init; }
|
|
public required Percent Soc { get; init; }
|
|
public required Percent CurrentMinSoc { get; init; }
|
|
public required Temperature Temperature { get; init; }
|
|
public required DcPower HeatingPower { get; init; }
|
|
public required TimeSpan TimeSinceToc { get; init; }
|
|
public required Boolean CalibrationChargeRequested { get; init; }
|
|
|
|
public required IReadOnlyList<Battery48TlRecord> Devices { get; init; }
|
|
|
|
public static Battery48TlRecords? FromBatteries(IReadOnlyList<Battery48TlRecord>? records)
|
|
{
|
|
if (records is null || records.Count == 0)
|
|
return null;
|
|
|
|
return new Battery48TlRecords
|
|
{
|
|
Devices = records,
|
|
Eoc = records.All(r => r.Eoc),
|
|
Warnings = records.SelectMany(r => r.Warnings).Distinct().ToList(),
|
|
Alarms = records.SelectMany(r => r.Alarms).Distinct().ToList(),
|
|
Soc = records.Average(r => r.Soc.Value),
|
|
CurrentMinSoc = records.Min(r => r.Soc.Value),
|
|
Temperature = records.Average(b => b.Temperatures.Cells.Average.Value),
|
|
HeatingPower = records.Sum(b => b.HeatingPower),
|
|
TimeSinceToc = records.Max(r => r.TimeSinceTOC),
|
|
CalibrationChargeRequested = records.Any(r => r.CalibrationChargeRequested),
|
|
|
|
Dc = new()
|
|
{
|
|
Voltage = records.Average(r => r.Dc.Voltage),
|
|
Current = records.Sum(r => r.Dc.Current),
|
|
}
|
|
};
|
|
}
|
|
|
|
} |