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,323 Topics
- 52.1 K Posts
- 147 Online
- 5,979 Members
Join Us!
Podcast Picks
Latest Posts
-
RE: Replacing my 18 month old Hitachi Yutaki ASHP
In mild conditions, yes I turn the heating off. This i...
By trebor12345 , 9 hours ago
-
RE: Havenwise App Help & Forum Support – Get the Most from Your Heat Pump
Hi HenriWe were puzzled by a thread being moved into he...
By Sheriff Fatman , 10 hours ago
-
RE: Electricity price predictions
@transparent The Totnes Society seems to operative l...
By Batpred , 11 hours ago
-
RE: Grant Aerona circulation/system pump staying on
My AERONA 3 circulation pump runs constantly whatever t...
By damonc , 12 hours ago
-
RE: Configuring third party dongle for Ecodan local control
Thanks, @sheriff-fatman. Happy for you to search any po...
By Majordennisbloodnok , 14 hours ago
-
Thanks, @cathoderay. I was aware of some changes to ...
By Majordennisbloodnok , 15 hours ago
-
RE: British Gas vs Octopus Energy vs Heat Geek vs EDF vs Aira vs OVO vs EON.Next vs Boxt
It's buried within what has become my ongoing post-inst...
By Sheriff Fatman , 19 hours ago
-
RE: Trying to understand my Nibe F1245
@greenlight Many thanks for the information, it's set m...
By Chris12 , 23 hours ago
-
This is what I answered, I really have no hope: "......
By Batpred , 2 days ago
-
-
RE: Octopus Cosy Heat Pump Owners & Discussion Thread
@andrewj oh yes they offer Daikin 8kW, they tried to fo...
By AgentGeorge , 2 days ago
-
RE: Solis S6-EH1P8K-L-PLUS – Why I Chose It and What I’ve Learned So Far
@majordennisbloodnok Good point! Just in case anyone re...
By Batpred , 2 days ago
-
RE: Hitachi Yutaki SCombi Heat Pump - Owners
@sim0n0 It would be very useful if you could tell us...
By trebor12345 , 2 days ago
-
RE: Benefits of an extra horizontal loop for GSHP
A correct sized collector is all you need. Saying this,...
By greenlight , 2 days ago
-
RE: Grant Aerona Short Cycling
@mikefl, thanks for sharing your operating data, very i...
By Steam Powered , 2 days ago
-
-
RE: Here is my heat pump installation with questionable COP in Italy
@jamespa Sorry for the late reply, I apologize for the ...
By materox345 , 2 days ago
-
RE: A2A vs A2W: Which Heat Pump Would You Pick?
@editor Yes BUT that was 3 years ago installed in Janua...
By rob heatpump bob , 2 days ago
-
Thanks for your response. I have UFH downstairs and ...
By GeorgeA , 2 days ago



