Heat Pump Performance Analysis Web App using Modbus Data
I wanted to share a web app I created to help visualise and analyse my heat pump data. The app uses Python to ingest CSV files from Home Assistant History or Grafana panel exports and to generate visualisations and summary data from the raw CSV data. This was designed using data I obtain using a Modbus interface for my Samsung Gen 6 Heat Pump. This tool is not validated but it independently calculates values such as heat output and COP and these match the data I am generating in Home Assistant.
I found the web app very useful to analyse my heat pump data in a structured way in order to be able to generate actionable changes from the analysis and to be able to track changes in the heat pump operation after making changes to the heat pump settings. There is also the option to generate data in a structured JSON format to enable review of the data by a homeowner/person who manages the heat pump (or by AI systems if you choose, but always verify the outputs). This output consistently generates the same metrics which should allow the tracking of potential issues or to track system behaviour following system changes.
If anyone would like to try it (there is sample data provided in the app), the link is below:
https://heatpump-therm.streamlit.app/
Findings from initial use
A major issue I uncovered with my Samsung Gen 6 Heat Pump (with Joule Smart Pre-Plumbed cylinder 200L DHW/60L buffer), is that the Joule control circuitry allows the secondary pump and the heating zone pumps to operate during DHW heating cycles (when the 3 way valve is in the DHW position). This has a negative impact on the efficiency of the system as the heat pump is outputting higher flow temperatures during the DHW cycle and the heating circuits are now operating at the same time.
Discovering this enabled me to change my DHW and room thermostat schedules to avoid the zones calling for heat during the DHW operating windows and this has had a noticeable impact on the operating efficiency.
I would be interested to see if anyone wanted to run their own data through the app and see what results they got. As this is the first app I have created (with a lot of assistance from Codex, Gemini and Claude) and the fact that I am in no way a professional in the software or heating systems industries, this is very much to be treated as a beta tool for informational purposes only.
Grafana Panels
It took me a while to get the Grafana panels configured so I could export the data. The only way I could get this to work was using 2 separate panels, State and Numeric
Heat Pump Export Data - State
SELECT "value", "state", "entity_id"
FROM "state"
WHERE
$timeFilter
AND (
-- Pumps / circulation
"entity_id" = 'underfloor_pump' OR
"entity_id" = 'downstairs_radiator_pump' OR
"entity_id" = 'upstairs_radiator_pump' OR
"entity_id" = 'primary_pump' OR
"entity_id" = 'secondary_pump' OR
-- Defrost (binary)
"entity_id" = 'heat_pump_defrost_status' OR
-- 3-way valve / immersion mode (value versions)
"entity_id" = 'heat_pump_3way_valve_position_value' OR
"entity_id" = 'heat_pump_immersion_heater_mode_value' OR
"entity_id" = 'heat_pump_hot_water_mode_value' OR
"entity_id" = 'heat_pump_hot_water_status_value'
)
Heat Pump Export Data - Numeric
SELECT "value", "entity_id"
FROM /.*/
WHERE
$timeFilter
AND (
-- Heat pump electrical / thermal
"entity_id" = 'heat_pump_power_ch1' OR
"entity_id" = 'heat_pump_heat_output' OR
"entity_id" = 'heat_pump_indoor_power' OR
"entity_id" = 'heat_pump_compressor_frequency' OR
-- Hydraulics / temps
"entity_id" = 'heat_pump_flow_rate' OR
"entity_id" = 'heat_pump_flow_temperature' OR
"entity_id" = 'heat_pump_return_temperature' OR
--"entity_id" = 'heat_pump_flow_delta' OR
"entity_id" = 'heat_pump_hot_water_temperature' OR
-- Room temps
"entity_id" = 'living_room_temp_humidity_temperature' OR
"entity_id" = 'playroom_temp_humidity_sensor_temperature' OR
"entity_id" = 'main_bedroom_temperature' OR
"entity_id" = 'bedroom1_temp_humidity_sensor_temperature' OR
"entity_id" = 'bedroom2_room_temp_humidity_sensor_temperature' OR
"entity_id" = 'ecowitt_weather_indoor_temperature' OR
"entity_id" = 'heat_pump_temp_humidity_sensor_temperature' OR
-- Environment
"entity_id" = 'heat_pump_outdoor_temperature' OR
"entity_id" = 'ecowitt_weather_humidity' OR
"entity_id" = 'ecowitt_weather_solar_radiation' OR
"entity_id" = 'ecowitt_weather_wind_speed' OR
"entity_id" = 'openweathermap_wind_speed' OR
"entity_id" = 'openweathermap_humidity' OR
"entity_id" = 'openweathermap_temperature' OR
"entity_id" = 'openweathermap_uv_index'
)
Note: Post recreated due to mod removal of the original post (mea culpa - I didn't read the updated forum rules and had used ChatGPT to help me summarise the operation of the app)
Hi. I would mind having a go with this but use OEM. Can you give detail of the csv file required and i will try to recreate it. Thanks
House-2 bed partial stone bungalow, 5kW Samsung Gen 6 ASHP (Self install)
6.9 kWp of PV
5kWh DC coupled battery
Blog: https://thegreeningofrosecottage.weebly.com/
Heatpump Stats: http://heatpumpmonitor.org/system/view?id=60
@bontwoody I have learned that CSV wrangling can get complicated!
There are some sample Grafana files in the app which I think would be the best basis for manual CSV editing - one file for state data (e.g. 1/0, on/off etc) and another for numeric data.
For numeric, the format is:
For state, the format is (the data can be in either the value or state column depending on what data you have):
I haven't tried to do what you are attempting so your results may definitely vary. If you want to send me on a sample file, I can have a look at the format and see if anything can be done to accommodate it if I have some time over Christmas.
@redzer_irl ok. Thanks I will have a look when ive got some time. 😁
House-2 bed partial stone bungalow, 5kW Samsung Gen 6 ASHP (Self install)
6.9 kWp of PV
5kWh DC coupled battery
Blog: https://thegreeningofrosecottage.weebly.com/
Heatpump Stats: http://heatpumpmonitor.org/system/view?id=60
@redzer_irl — all my heat pump data is in csv files, meaning I am used to getting subsets of data from those files. I use something called q Text as Data which is a command line program that lets you run sql like queries on csv files, which can be a very quick and useful way of getting subsets of data. Depending on how your source data is organised (best in one big file as far as possible) and what you want to get out, then something like this will get all the data for one entity and put it in a new csv file:
q -H -d , "select Time, value, entity_id from my_data.csv where entity_id = 'ecowitt_weather_humidity'" > humidity.csv
It can also output the data to the clipboard (| clip), and you have most if not all of the standard sql options available to you including doing maths on the data (sums, counts, averages etc) and even join operations, though the code does get more complicated for that.
Midea 14kW (for now...) ASHP heating both building and DHW
- 26 Forums
- 2,426 Topics
- 55.1 K Posts
- 145 Online
- 6,104 Members
Join Us!
Worth Watching
Latest Posts
-
RE: Is it normal to use power from the grid when running off the battery?
@batpred I may be asking you for more info in how you h...
By JohnnyB , 6 hours ago
-
RE: Recommended home battery inverters + regulatory matters - help requested
@johnnyb The noise of the Solis is nothing very sign...
By Batpred , 6 hours ago
-
RE: Is my Samsung gen6 outside air temp sensor missing a sheath/sleeve?
@papahuhu Yes, good information is often hard to find, ...
By Old_Scientist , 6 hours ago
-
RE: R290 and Foundation Air Bricks
Professional risk assessment (inc some common sense) ...
By ASHP-BOBBA , 7 hours ago
-
RE: The good, the bad and the not that great – my heat pump installation
@toodles ahhh no trouble yeah probably won't mess with ...
By Burtis , 7 hours ago
-
RE: Daikin Wireless Thermostat
@bash we have mostly south facing rooms which would ove...
By Judith , 8 hours ago
-
RE: Post-Traumatic Heat Pump Stress Disorder
Some more examples of those that really should be benef...
By Jeff , 10 hours ago
-
RE: Installer Fitted 9kW Instead of 11kW Heat Pump and Changed MCS Paperwork - What do I do?
I've now had an interesting email from a Complaints Res...
By MairiA , 11 hours ago
-
RE: Reliable, easy to use home battery options
Correct. LiFePO₄ cells mustn't be charged if their te...
By Transparent , 11 hours ago
-
RE: Water outage in the the south-east
Indeed!Any contamination in the well water would be tra...
By Transparent , 13 hours ago
-
RE: Solis inverters S6-EH1P: pros and cons and battery options
I hear some cases of apparent misconfiguration of inver...
By Batpred , 13 hours ago
-
Are split ASHPs with R290 refrigerant coming soon?
Question. Are there any (or likely to be in the near t...
By iotum , 16 hours ago
-
RE: Setback savings - fact or fiction?
Indeed. In many ways, a defrost is a setback, with the ...
By cathodeRay , 16 hours ago
-
RE: Heat pump not reaching flow temperature
The good news is that it leaves no excuse if it doesn't...
By JamesPa , 16 hours ago
-
RE: How to use my Hanchu battery storage for home without it feeding back into the grid?
@countryman-helmsley In that case is there a button ...
By IRMartini , 16 hours ago
-
RE: Ideal HP290 14kW ASHP - how to optimise
Great. It’s not bad is it, though I agree it may repres...
By Davesoa , 18 hours ago
-
RE: Ecodan Pump Issues… Circulation pump turns off when heat pump compressor turns off
@f1p apologies, you are absolutely correct
By Patch321 , 18 hours ago
-
RE: Samsung E101 Error Message and my ASHP Efficiency
@johnnyb amazing that the our forum is serving its purp...
By Mars , 1 day ago
-
Best option for controller upgrade? - Grant Aerona
Fairly new heat pump owner - Grant Aerona 3 10kw - and ...
By Topher , 1 day ago
-
Just a brief update to keep things transparent. Secti...
By DREI , 2 days ago






