-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Question - dynamic adjustment of setpoint? #19
Comments
I don't really know Python but had a quick look in the code. |
What this integration does is:
So to answer your question:
There is no fixed setpoint, it is calculated based on what the user sets.
I think dynamic adjustment could improve the behaviour, especially if you have a large difference in temperature between the rooms in your house. However, it should be prevented that in every step of temperature change this updating occurs. Another improvement I can think of is applying scaling factors. As said, currently if a zone is set to warm up by +4C, the thermostat will also be set to +4C. |
Hi Niels,
I've noticed the external temperature sensor I'm using indeed has a 0.1C resolution while the TRV seems to have a 0.5C resolution for setpoint. The controller climate entity seems to have a 0.5C resolution.
Scaling + number of active zones could indeed help. I know some thermostats also use this info, as mine has a setting for "Building type" (small/medium/large). |
Hi,
I'm wondering if the integration applies a fixed calculated setpoint or recalculates the temperature difference between the zones and the controller periodically to change to an optimal setpoint.
When the temperature difference between setpoint and actual temperature is low a modulating thermostat will heat the water to a lower temperature then when the temperature difference is high. This makes a big difference in power consumption compared to a simple on/off thermostat which usually heats the water to a fixed (high) temperature.
This also causes less fluctuation between temperature and setpoint when trying to keep the temperature steady.
In my case the living room temperature, where the controller is located, might be close to the setpoint of the controller and the requested temperature of room x, while the current temperature of room x might be very low to start with.
To heat room x to the requested temperature would cause a high setpoint, which would waste a lot of energy if this setpoint was kept until the room reaches the requested temperature.
If dynamic adjustment is currently not happening I would like to make a feature request for this option.
Thanks,
Lieven
The text was updated successfully, but these errors were encountered: