Remove PidController

This commit is contained in:
2023-02-19 09:44:28 +01:00
parent d079d81230
commit fd7f67da04
3 changed files with 1 additions and 33 deletions

View File

@@ -47,7 +47,7 @@ namespace TestApp
yield return (current.I2, current.I1, current.I3);
yield return (current.I3, current.I1, current.I2);
yield return (current.I3, current.I2, current.I1);
}
}
private static bool IsValidCombinition((double I1, double I2, double I3) measuredCurrent, (double I1, double I2, double I3) wallBoxCurrent) {
if (measuredCurrent.I1 < wallBoxCurrent.I1) { return false; } // even this is not correct if a PV is generating power !