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
- 27 Forums
- 2,520 Topics
- 58.6 K Posts
- 784 Online
- 6,800 Members
Join Us!
Worth Watching
Latest Posts
-
RE: Heat Pump vs New Gas Boiler for Inherited House - Worth the Extra Cost?
Hi @fretless6 Mike, I have experience with Taggas (Re...
By Old_Scientist , 16 minutes ago
-
RE: Peak Energy Products V therm 16kW unit heat pump not reaching flow temperature
Hi @bobflux thanks for pointing out the difference in t...
By DaveC , 28 minutes ago
-
RE: Daikin Altherma 3 LT compressor longevity question
@bobflux With my limited HA skills I can't ad...
By Ubert767 , 1 hour ago
-
Hi all I'm having some trouble with a Grant ASHP and ...
By Renewables345 , 2 hours ago
-
RE: Underfloor Heating Installation Issues with Heat Pump
I'm going to install Thermacome ACOSI+ radiant ceiling....
By bobflux , 3 hours ago
-
RE: Testing new controls/monitoring for Midea Clone ASHP
Now seems a good time to summarise the costs and effici...
By benson , 5 hours ago
-
RE: Tell us about your Solar (PV) setup
@mk4 Charge to 100%, discharge down to 10%.
By bobflux , 6 hours ago
-
RE: Connecting Growatt SPH5000 over wired ethernet rather than wireless
The simplest wired option is usually the Growatt Ethern...
By Jonatan , 11 hours ago
-
RE: Electricity price predictions
@jamespa And it seems some of the nasty public cloud...
By Batpred , 18 hours ago
-
RE: Jokes and fun posts about heat pumps and renewables
Technology is rapidly advancing. BBC News reported th...
By Transparent , 22 hours ago
-
What matters for flow and pressure drop is internal dia...
By bobflux , 22 hours ago
-
RE: Do Fridges and Freezers have COP ratings?
@editor Thank you all for your replies and submitted in...
By Toodles , 1 day ago
-
I know and yes. The secondary deltaT wont necessaril...
By JamesPa , 1 day ago
-
RE: Designing heating system with air to water heat pump in France, near Lyon
Just love the way you put it! 🤣
By Batpred , 2 days ago
-
RE: Safety update; RCBOs supplying inverters or storage batteries
Thank you for sharing. So it seems that your Schneid...
By Batpred , 2 days ago
-
RE: Forum updates, announcements & issues
@upnorthandpersonal thanks for the thoughtful, consider...
By Mars , 2 days ago
-
RE: Solar Power Output – Let’s Compare Generation Figures
@mk4 All 21 panels have their own Enphase IQ7a microinv...
By Toodles , 2 days ago
-
RE: Setback savings - fact or fiction?
Great, so you have proven that MELCloud is consistently...
By RobS , 3 days ago
-
RE: Mitsu PUHZ120Y 'Outdoor Temp 'error?
Thanks David & James It almos...
By DavidAlgarve , 3 days ago
-
RE: Surge protection devices SPDs
@trebor12345 - your original Topic about the right type...
By Transparent , 3 days ago
-
RE: Help needed with Samsung AE120RXYDEG
@tomf I’ve been sent this from a service engineer at Sa...
By Mars , 3 days ago
-
RE: Buying large amp bidirectional RCD and RCBO
Yes... I went through this particular headache and ende...
By bobflux , 4 days ago
-
O-oh! Let's take this as an opportunity to 'pass the ...
By Transparent , 4 days ago


