Heat pump monitoring - what are you using?
Back to the monitoring,
I've just ordered the kit for the ESPAltherma hook up.
I've no idea into any computer programming but I'm a willing learner.
I know it's not going to be highly accurate like some off the kits available, but it should give a good baseline to start getting better efficiency because as of now I've no idea how often the heat pump cycles, the Cop/Scop etc as the MMI reading kWh usage is in whole numbers 1.4 would be 1, 1.6 would be 2 etc.
Fingers crossed it goes well🤞
Posted by: @njtI've no idea into any computer programming but I'm a willing learner.
Given willingness to learn, and assuming basic literacy, numeracy and ability to think logically, don't be afraid to look at python. It is a fairly high level (by which I mean human readable) programming/scripting language with hundreds if not thousands of packages that can be used to do almost anything. It may well already be on your PC (assuming that is what you use), in use by some other program, but you will need a generic standalone installation to get started. It's not huge. An example of a simple script (found online) that gets the mean for a variable (rows starting with # are comments, the actual script is only four lines):
# pandas is a package that does all sorts of data manipulation
# 'as pd' means I can refer to it as 'pd' (as in the 'hp_data = pd.read_csv...' line below)
import pandas as pd
# read data from a CSV file full of heat pump data, first row has variable names
# data ends up in a dataframe called hp_data
hp_data = pd.read_csv('data.csv')
# perform analysis on OAT (outside air temp)
mean = hp_data['OAT'].mean()
print(f"Mean: {mean}")
Midea 14kW (for now...) ASHP heating both building and DHW
Thanks.
Yes I use a windows laptop, bought a raspberry pi 4 to install Home Assistant recently which is another learning curve.
There's a tutorial online at GitHub for the ESPAltherma that looks complicated , but I can use Google to search for terms I've never heard of, which looking at the tutorial is quite a few.
I'll get there👍
One of the major problems with these types of online projects is that they get hugely over-complicated, making it often impossible for us mere mortals to work out what is going on, or rather more often, not going on. I do realise they are run by community volunteers, so good on them for volunteering, but that doesn't remove the impenetrable complexity.
Home Assistant is a classic Marmite, some people love it, others hate it. I found it to be just too complicated, too volatile and temperamental, and I did not often find the community support actually produced useful answers. I do still have it (too lazy to remove it and install some other basic OS on the mini PC that does what your Raspberry pi will do), but I only use it for one or two things, like backups (HA has a good working backup add-on, so why not use it?). The bulk of my monitoring is done using python scripts I wrote. It took a bit of trial and error, but it has now been set up for getting on for 18 months, and is very robust eg the data is in csv files, much easier and more table than in sqlite or some other database, and the whole thing even restarts itself when the power comes back after a power cut.
I suggest you try HA for a while. You may mind it is just the thing for you! But if it isn't, there are other ways.
Midea 14kW (for now...) ASHP heating both building and DHW
- 26 Forums
- 2,271 Topics
- 50.8 K Posts
- 138 Online
- 5,933 Members
Join Us!
Podcast Picks
Latest Posts
-
RE: My DIY Heat Pump installation
@temperature_gradient Building regs I had my initial...
By Polar bear , 6 hours ago
-
This is a plot from a Shelly EM monitoring the supply t...
By Ubert767 , 7 hours ago
-
RE: Testing new controls/monitoring for Midea Clone ASHP
Hi again all, Just to update on this... I've now ad...
By benson , 8 hours ago
-
RE: Request for feedback on where we're at with our quest to get an ASHP or ideas.
thanks, heatpunk looks great, being able to do the calc...
By giryan , 9 hours ago
-
RE: Is Your House Warmer Upstairs Than Downstairs?
Why arent you expecting them to make much difference. ...
By JamesPa , 9 hours ago
-
RE: Oil Boiler & Heat Pump Hybrid System
@paultheheating I wonder if you are being a bit pessimi...
By GrahamF , 9 hours ago
-
@toodles sounds good. I started with cosy but then plug...
By Eliuccio , 9 hours ago
-
RE: Aira Heat Pump: Stylish Scandinavian Heating
It has been just over a year since we changed over to a...
By npru , 11 hours ago
-
RE: Grant 13kW Aerona3 - issues getting zones to temp
He showed me a photo of 5-10l/min. However a...
By Crimson , 13 hours ago
-
RE: Finding a Thermostatic Shower Valve That Works with Heat Pump Systems
@morgan I should just have written ‘Mea Culpa’ shouldn’...
By Toodles , 13 hours ago
-
RE: Are We Sleepwalking Into Another Race to the Bottom?
'We learn from history that we do not learn from histor...
By Lawrence Leask FInstR , 14 hours ago
-
Mitsubishi Ecodan FTC7 Legionella date set
I can set the number of days between Legionella cycles ...
By DRB01 , 19 hours ago
-
RE: When to use Octopus Intelligent Go tariff with my heat pump and battery
@treewizard Yes, I like the extra facilities that NetZe...
By Toodles , 20 hours ago
-
RE: Help me keep the faith with my air source heat pump installation
@adamk downstairs rads are less prone to airlocks, you ...
By AgentGeorge , 21 hours ago
-
RE: My Octopus Cosy 6 Heat Pump Journey: From Quote to Completion
@editor thanks for highlighting my name. Yes I did get ...
By Chansug , 1 day ago
-
RE: balancing radiators with a mixture of different size pipework and a few undersize rads.
@editor Thanks for your input Mars. No I think the comm...
By baxtDave , 2 days ago
-
RE: Rate the quality of your heat pump design and installation
We’re looking to expand our list of recommended list of...
By Mars , 2 days ago
-
RE: RDSAP10 effect on existing heat pump EPC rating?
@transparent Along with the right workers, they can’t b...
By Toodles , 2 days ago
-
RE: Midea ASHP – how to set weather compensation
I have just looked at my heat pump 'long interval' (27 ...
By cathodeRay , 2 days ago



