From b767766e31518e59b2255486975e658573603fb6 Mon Sep 17 00:00:00 2001 From: spyrostz Date: Mon, 29 Apr 2024 19:43:57 +0200 Subject: [PATCH] RESEARCH-190: Corrected the default calibration coefficient value from 0.65 to 0.6. --- gsy_framework/constants_limits.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gsy_framework/constants_limits.py b/gsy_framework/constants_limits.py index c0e8ed2b..df065197 100644 --- a/gsy_framework/constants_limits.py +++ b/gsy_framework/constants_limits.py @@ -202,7 +202,7 @@ class HeatPumpSettings: SOURCE_TYPE = HeatPumpSourceType.AIR.value BUYING_RATE_RANGE = RateRange(0, 30) PREFERRED_BUYING_RATE = 30 - CALIBRATION_COEFFICIENT = 0.65 + CALIBRATION_COEFFICIENT = 0.6 CALIBRATION_COEFFICIENT_RANGE = RangeLimit(0, 1) class MASettings: