fix: added min DHW flow rate of 0.1 l/min

This commit is contained in:
Yurii
2024-10-11 01:38:05 +03:00
parent 7672c4b927
commit 8aab541afa

View File

@@ -963,11 +963,13 @@ protected:
return false;
}
vars.sensors.dhwFlowRate = convertVolume(
value = convertVolume(
value / settings.opentherm.dhwFlowRateMultiplier,
settings.opentherm.unitSystem,
settings.system.unitSystem
);
vars.sensors.dhwFlowRate = value > 0.09f ? value : 0.0f;
return true;
}