Delete a no needed display.

This commit is contained in:
atef 2023-08-30 13:40:53 +02:00
parent 72b781a223
commit c5cb31ac88
1 changed files with 2 additions and 2 deletions

View File

@ -73,8 +73,8 @@ public static class Controller
if (!dcLimited) if (!dcLimited)
return control with { PowerCorrection = clampedPowerDelta }; return control with { PowerCorrection = clampedPowerDelta };
var maxPower = acDcs.Max(d => d.Status.Ac.Power.Active.Value).WriteLine("Max"); var maxPower = acDcs.Max(d => d.Status.Ac.Power.Active.Value);
var minPower = acDcs.Min(d => d.Status.Ac.Power.Active.Value).WriteLine("Min"); var minPower = acDcs.Min(d => d.Status.Ac.Power.Active.Value);
var powerDifference = maxPower - minPower; var powerDifference = maxPower - minPower;