From 3ac3cabb1c14e2472f130926eb1b4f2859aad153 Mon Sep 17 00:00:00 2001 From: atef Date: Fri, 25 Apr 2025 09:29:56 +0200 Subject: [PATCH] update the battery limmit charge and discharge current --- csharp/App/SodiStoreMax/src/Ess/Controller.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/csharp/App/SodiStoreMax/src/Ess/Controller.cs b/csharp/App/SodiStoreMax/src/Ess/Controller.cs index 8e62b431a..98d34b3cb 100644 --- a/csharp/App/SodiStoreMax/src/Ess/Controller.cs +++ b/csharp/App/SodiStoreMax/src/Ess/Controller.cs @@ -8,8 +8,8 @@ namespace InnovEnergy.App.SodiStoreMax.Ess; public static class Controller { - private static readonly Double MaxDischargePower = -4000; // By battery TODO: move to config - private static readonly Double MaxChargePower = 3500; // By battery TODO: move to config + private static readonly Double MaxDischargePower = -8000; // By battery TODO: move to config + private static readonly Double MaxChargePower = 6000; // By battery TODO: move to config public static EssMode SelectControlMode(this StatusRecord s) {