-
-
Notifications
You must be signed in to change notification settings - Fork 62
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
Sensors for Power Consumption and Realtime COP not working #101
Comments
It's the same problem: power consumption and real-time COP calculation rely on an external electricity meter providing data via HomeWizard meter users may use a local API and a separate ESP8266 to request data from the meter and copy it to MQTT. |
@Arnold-n ah ok. understood. so could I populate thempower value from my espaltherma to this topic and then the COP is calculated automatically? should the value be the total power of the heatpump with or without the backup heater? |
Yes, but it may be less accurate than a real external electricity meter, as the current reported by ESPAltherma has low resolution (0.2-0.3A), and does not take blind power into account. |
I am updating topic 'P1P2/P/meter/U/9/Electricity_Active_Power' with current used Watts of the WP. |
@Arnold-n The value in Watts is allowed to have a decimal point or should it be an int [0-32767]. |
The entity provided by The value is rounded down (actually it just ignores any character other than [0-9]). |
Is there any potential harm in sending the value more frequently? i.e, every second or every 15 seconds? |
No harm at all, and it increases accuracy of the real-time COP reporting. The real-time COP calculation is done almost once/second and takes the most recent input values for active power and for heat production (flow * delta-T) unless power information is too old (>1 minute). Active power is not (planned to be) integrated over time; for this Electricity_Total will be used. And as I just corrected above and in the documentation, by default it is |
Adjusting to P1P2/P/meter/U/9/Electricity_Power the COP is calculated, both realtime and lifetime. |
Maybe it's the same problem: My sensors for Power consumption (HC_Power) and Realtime COP (HC_COP) are always 0. Power Production Sensors are working, COP-Lifetime seems also correct. What could I check to find the reason for that? :)
The text was updated successfully, but these errors were encountered: