Compare commits

..

No commits in common. "3deee7bbac2a7ba909b8dc3cf8c6e220fe8d5533" and "9434092b6faafd172796740e632001249e70ffff" have entirely different histories.

2 changed files with 3 additions and 5 deletions

View File

@ -83,7 +83,6 @@ public class AmptDevices
return new AmptStatus
{
Dc = dc,
NbrOfStrings = nStringOptimizers,
Strings = strings,
DcWh = dailyOutputEnergy
};

View File

@ -6,7 +6,6 @@ namespace InnovEnergy.Lib.Devices.AMPT;
public class AmptStatus : IMppt
{
public required DcBus Dc { get; init; }
public required UInt16 NbrOfStrings { get; init; }
public required IReadOnlyList<DcBus> Strings { get; init; }
public required Double DcWh { get; init; } //Daily integrated string output energy in Wh
}