Skip to content
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

Add a slow auto-regulation mode #168

Closed
jmcollin78 opened this issue Nov 6, 2023 · 0 comments
Closed

Add a slow auto-regulation mode #168

jmcollin78 opened this issue Nov 6, 2023 · 0 comments
Labels
developed When development is done and tested
Milestone

Comments

@jmcollin78
Copy link
Owner

Installation with slow latency response time should have their own auto-regulation mode.
See this discu

So a new Slow auto-regulation mode have been implemented with those parameters:

    kp:float = 0.2 # 20% of the current internal regulation offset are caused by the current difference of target temperature and room temperature
    ki:float = 0.8 / 288.0 # 80% of the current internal regulation offset are caused by the average offset of the past 24 hours
    k_ext:float = 1.0 / 25.0 # this will add 1°C to the offset when it's 25°C colder outdoor than indoor
    offset_max:float = 2.0 # limit to a final offset of -2°C to +2°C
    stabilization_threshold:float = 0.0 # this needs to be disabled as otherwise the long term accumulated error will always be reset when the temp briefly crosses from/to below/above the target
    accumulated_error_threshold:float = 2.0 * 288 # this allows up to 2°C long term offset in both directions

For more information see: here

Thanks to @maia for its awesome tests and help !

@jmcollin78 jmcollin78 added the developed When development is done and tested label Nov 6, 2023
@jmcollin78 jmcollin78 added this to the 4.0.0 milestone Nov 6, 2023
jmcollin78 pushed a commit that referenced this issue Nov 6, 2023
Issue #169 - Adds support for Versatile Thermostat UI Card
jmcollin78 added a commit that referenced this issue Nov 6, 2023
Issue #169 - Adds support for Versatile Thermostat UI Card

Co-authored-by: Jean-Marc Collin <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
developed When development is done and tested
Projects
None yet
Development

No branches or pull requests

1 participant