From ed4bce4aaae918fc93f1159ca59fc2f970fc96b6 Mon Sep 17 00:00:00 2001 From: Kingsley Nweye Date: Sat, 16 Nov 2024 06:18:14 -0600 Subject: [PATCH] fixed action value bug in optimized rbc storage control --- citylearn/agents/rbc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/citylearn/agents/rbc.py b/citylearn/agents/rbc.py index 1d51d82e..1b8c7616 100644 --- a/citylearn/agents/rbc.py +++ b/citylearn/agents/rbc.py @@ -247,7 +247,7 @@ def action_map(self, action_map: Union[List[Mapping[str, Mapping[int, float]]], if 7 <= hour <= 15: value = -0.02 elif 16 <= hour <= 18: - value = -0.0044 + value = -0.044 elif 19 <= hour <= 22: value = -0.024 elif 23 <= hour <= 24: