Skip to content

Minimal heat applied at negative power calculation #59

Description

@jakenl

While the plugin setting "minimum heating cycle" is set to "only when heat is required", there is in some cases still heat applied while the power calculation <= 0
This happens when the temperature is between setpoint and deltamax (overshoot = false).

My proposal is to change to following line:
# apply minimum power as required
if power <= self.minheatpower and (Parameters["Mode4"] == "Forced" or not overshoot):

to:

    # apply minimum power as required
    if power > 0 and power <= self.minheatpower and (Parameters["Mode4"] == "Forced" or not overshoot):

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions