Compare commits
2 Commits
9434092b6f
...
3deee7bbac
Author | SHA1 | Date |
---|---|---|
atef | 3deee7bbac | |
atef | 1ad2e79be4 |
|
@ -83,6 +83,7 @@ public class AmptDevices
|
|||
return new AmptStatus
|
||||
{
|
||||
Dc = dc,
|
||||
NbrOfStrings = nStringOptimizers,
|
||||
Strings = strings,
|
||||
DcWh = dailyOutputEnergy
|
||||
};
|
||||
|
|
|
@ -5,8 +5,9 @@ namespace InnovEnergy.Lib.Devices.AMPT;
|
|||
|
||||
public class AmptStatus : IMppt
|
||||
{
|
||||
public required DcBus Dc { get; init; }
|
||||
public required IReadOnlyList<DcBus> Strings { get; init; }
|
||||
public required Double DcWh { get; init; } //Daily integrated string output energy in Wh
|
||||
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
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue