Heat Pump Experimentation App - Release News

Hi,

I’ve been chatting over in Emoncs about what to do with the heat pump app for viewing experiments and I’ve agreed with @TrystanLea to keep it in my repo for a while.

I’ve also been chatting over in heatpump about some of the improvements I’ve made to my setup as a result of using the app.

I thought it’d be a good idea to have a topic to chat about things I’m improving in the app to save me spamming the other categories and topics. I can keep the app development chatter on this topic. Obviously you should subscribe if you want to hear about the news :slight_smile:

3 Likes

Today I added:

Smoothing of the CoP over a few minutes so it’s less spiky

Client-side calculated CoPs are a moving average so jump around less than before. Here’s an example from before:

and then after:

As Simon says, the efficiency scale is typically much more sane now.

A way to show nominal efficiencies for a heat pump

Using these efficiencies from a common device we can see what the vendor expects at various combinations of flow and outside temperatures.

These are included in the Efficiency graph (if you choose to) so you can see how your actual CoPs compare.

In this example you can see we have a design flow temp of 40 °C which interestingly has a CoP of 3.62 at 6 °C but we’re averaging 3.85. Of course the graph makes it clear that we’re actually just hitting the expected CoP because we’re running at a lower flow temp than the design one.

CoP graphs for space heating and hot water

This helps you see more clearly which things are affecting your efficiency and as you can see in this example, the water heating is going down in line with the vendor’s predicted CoP (until it hits the defrost at 13:42).

Graph legend now updates with values when you hover over the graph

Now you don’t have to guess what the exact values are.

1 Like

Today I made the app show something informative when there is a problem fetching data.

For example:

It also re-directs to the login page if the problem is related to getting to the web server route.

Technical improvements include removing fluff in the HTML and having the graph heights work more simply. I’ve also switched to using “data-” attributes for data rather than unsupported attributes.

Finally, I made charts vanish if there are no feeds so there’s a better experience for people with fewer inputs such as Trystan’s case here:

1 Like

Nice work @MyForest !

1 Like

Recently I’ve added…

Better UI Scaling

Better scaling so the app looks less clunky on mobile.

Improved CoP Visualisation

The CoP is now shown filled in so it’s easier to see, especially when space and water heating are next to each other. I did the same for solar too so it’s more clear.

The ability to set an effective temperature for viewing and for calculations.

That changes this CoP analysis from this:

to this:

1 Like

Today’s improvements include…

Fixed CoP smoothing and display

We wanted to stop the CoP display being confusing so we have changed from this:

to this:

Hopefully this looks much more reasonable now @Bramco :slight_smile:

Allow a much wider display for reviewing experiments

As this isn’t a kiosk app, we want to allow the app to take up the full width of the screen to make analysis easier.

Give a sneak peek into when a feed was last updated

We’re using the title to show when one of the “current status” values were last updated.

Resizing is now smoother

Flot’s resize plugin handles this pretty well from what I’ve been able to test with.

Notably it does the redraw at sensible times, for example, when you pop open the Developer Tools in Firefox. It saves us from debacles like this:

1 Like

:+1:

Simon

1 Like

Nice work @MyForest

Testing the latest here, I’m seeing th following error:

relating to lines:

// If no output then don't declare a CoP
if (outputFeedHistory[index][1] == 0) return null

Thanks for reporting that @TrystanLea, it’s fixed now.

Unfortunately I have all the feeds defined so I’m not stressing those branches of the code enough at the moment. Sorry.

Rather than having you keep finding these hiccups @TrystanLea, I created a somewhat amusing way of seeing what happens when everything is in disarray :slight_smile:

BTW if you are finding this app isn’t to your liking, the one built by Trystan and John Cantor might appeal. Trystan recently made a video about it too:

Looks lovely. How can I install this, please? There doesn’t seem to be any installation instructions in the readme.md and I didn’t find an install.md or an obvious way to tell App > + New to use a git repo.

You’re quite right @mjr

I see you are possibly a software dev. I just tried setting it up but realised I’m quite a long way from a normal setup so I’ll show you what I did and if it makes sense then do that, otherwise let me know and I’ll dig into it a bit more to remind myself what I should have already written.

If you clone the repo you’ll have a mmspheatpump folder.

The something along these lines to put it into what I believe are the right places:

FROM openenergymonitor/emoncms

WORKDIR /var/www/emoncms/Modules

COPY mmspheatpump/device/mmsp.json device/data/MyForest/devices/heatpump/

COPY mmspheatpump app/apps/MyForest

WORKDIR /var/www/emoncms/

It looks roughly right, but I can’t test it without twisting a lot of things around here at the moment.

HTH.

2 Likes

Well, I have installed it and it displays something, but there is a "# EmonCMS 10.x # EmonCMS 11.x " at the top which puzzles me and the mmsp.json makes me think that I need to collect more data than I have been, including WaterPump4Status. I’m not sure if more configuration is needed to get it the feeds as it wants or if that mmsp.json sets them up?

mmsp.json will set them up in EmonCMS but you would need to POST the values after gathering them from MELCloud. As you can imagine, there’s far less useful data in MELCloud these days. The app will run with whatever you can give it. Of course if you want to setup the feeds manually that’s fine too, I just created mmsp.json to help get a solid setup.

The bit you see at the top is funny. It’s me falling foul of using too may languages, you can see the Python-style comments in the HTML here:

It’s fixed now if you pull again:

Sorry for any excitement :slight_smile:

That has got rid of the hash lines. Thanks.

I have updated my script to gather the values now but how do I use mmsp.json to set up the remaining feeds? And is my node name of melcloud OK?
Scrub that. I restarted apache (I guess something was cached somewhere) and then could edit my melcloud device to be of the MyForest/MMSP ASHP type. It offered to create the feeds it did not yet have.

Two hiccups: the wrench on the web interface does nothing when clicked and the config/application-configuration.json only seems to use some Rate1 values, not the Rate2 as well. I also added RoomTemperatureZone1 to the heating chart: I know you don’t use it, but I think it’s nice to see what it does.

1 Like

Makes sense to me. I suppose some people do care about the room temp and the humans :slight_smile:

@mjr If you want to go crazy and send a PR for your changes I’ll see if it makes sense to merge them in, notably the RoomTemperatureZone1 change is probably useful for sensible people who have room thermostats or who benefit from the Ecodan one.

1 Like

I’m not sure this is worth splitting out into a pull-request. The RoomTemperatureZone1 one is just the following added to config/application-configuration.js after TargetHCTemperatureZone1:

    "RoomTemperatureZone1": {
        "displayOptions": {
            "label": "Inside",
            "color": "purple"
        },
        "type": "feed",
        "autoname": "RoomTemperatureZone1",
        "engine": 5,
        "optional": true,
        "description": "The room temperature in Zone1 in degrees Celsius (°C)"
    },

Purple?!

I was hoping for something more optimistic :slight_smile: