Understanding how to add the SSR to emonbase for PV dump

Understanding how to add the SSR to emonbase. 

I have finally finished building the hardware (type 1 system), and got the system working (TX, Base and GLCD) got a few problems and it’s all down to me level of understanding. I’m not going to ask to many questions as I’m sure you lot will make the muddy water clearer. 

1. The buttons on the GLCD don’t anything, (physically working) I can’t see anything in the code. Is this a option? Are there any graphs day plots? 

2. I want to dump my extra PV electricity into the hot water cylinder, I have a SSR (with zero crossing). However there are so many posts I’m getting confused. I love the thread on the MK2 PV controller, but don’t really what to use the extra hardware. I wish to put the emonbase in the airing cupboard, use one of the spare pin outs (PWM) to control the SSR. The bit that is really getting away from me is how to use the data sent for the TX for energy bucket. If it’s a problem to use the Emonbase, then I’m assuming that that the TX would need to crunch the numbers. 

3. I have a secondary return pump for my hot water (always have hot water at the taps), I would like to control it for the emonbase with a relay on for 15sec, off 120sec between 6am and 10pm has any body done this before?  

 

The work I’ve here is really good, I hope you can understand what I’m try too do. Thanks in advance

robinsmh's picture

Re: Understanding how to add the SSR to emonbase for PV dump

I don't think the energy bucket approach will work with an RF link between the sensors (in the TX) and the SSR output (emonBase), unless you are prepared to flood your area with a continuous stream of RF data. This will likely break everyones' car remote locking (which often use the same frequency).

Instead, I think you will need to put all the number crunching on the TX to produce a required power level (0-100% say) for the heater, which you send to the emonBase every 10 seconds or whatever. The emonBase will then have to turn the SSR on and off to acheive the request average power. I think you'll find that this approach will require quite a few seconds for the feed-back loop to stabalise, and so won't respond well to frequent changes in power levels.

Assuming you have a dedicated circuit from the fuse box to the water heater, why not put the SSR at the fuse-box end of the circuit? Then it could be directly controlled by the emonTx and you could make the control loop much more responsive, and the software is much simpler too.

 

nbown's picture

Re: Understanding how to add the SSR to emonbase for PV dump

I think that the way to go would be for a Dedicated Circiut, the immerson appears to come off the ring anyway, not something i like in the first place. thats some for my to do this weekend.

robinsmh's picture

Re: Understanding how to add the SSR to emonbase for PV dump

Technically, running a new dedicated circuit to the fusebox requires a suitably accredited 'Competent Person' to test and certify the circuit, to comply with Part P. I found myself in the same situation recently, with a spare fused outlet in my airing cupboard that I could have connect my new IH to, but this was on the ring, so would contravene current IEEE regulations.

It really pained my to do so - but I ended up paying for someone to run a new dedicated circuit.

Even cutting into an existing circuit at the fusebox to install a SSR or phase controller would probably require Part-P certification.

Probably even opening up the fusebox to install a CT for sensing my PV power is probably against Part-P - but this is the only sensible place to put it!

 

Robert Wall's picture

Re: Understanding how to add the SSR to emonbase for PV dump

IEEE regulations?

IEEE is an American organisation. I think you mean BS 7671.

And don't get me going about the cowboys who despite allegedly being "registered" and "competent" have, fairly recently in 3 separate houses:

  1. In the process of installing a high power electric shower, installed Henley Blocks between meter and consumer unit and managed to swap line and neutral for a whole house (so all switches and fuses/mcbs were moved into the neutral leg),
  2. Replaced a properly sized imperial cable that was feeding a secondary distribution board with 2.5mm2 TE,
  3. Installed cables not secured at the appropriate spacing (a minor breach, but a breach nevertheless).

To say I have no confidence in the system is putting it mildly.

richmc's picture

Re: Understanding how to add the SSR to emonbase for PV dump

Mines a good 'un Robert,

I was inches away from installing Roberts Mk 2 when I got my plumber to put longer immersion in I noticed there were two lots of wireing behind the immersion plate, looked like a ring main, so checked at the board, no one set of wires for the immersion, the muppet electrician who orignaly wired the house had wired in the timer/ CH pump/mid position valve and all the control wireing into the immersion feed, I don't think that would have stood up to the triac switching!

Now I'm having to pay an electrician to add in a spur for the ancilaries so I can have a truely dedicated immersion feed, the house is 12 years old surely how it was wired was against regulations? If I had found this out when I moved in three years ago I would have been able to claim on the NHBC insurance.

The biggest shame is that I could have had a month of testing and tweaking whilst the sun was out.

Robert Wall's picture

Re: Understanding how to add the SSR to emonbase for PV dump

There's nothing wrong with that (in his book). He got paid, used the minimum materials, and you didn't find out until it was too late.

Ah, the beauty of being in a position to tell muppet electricians where to get off!

In 2009 I designed an extension to a standard central heating controller for a friend who ran a B&B and had 2 hot water systems - one having 2 cylinders linked top & bottom. He ended up with 2 extra zone valves, 2 relays in a control box that amazed his plumber (and me!) when it worked. And it has done ever since. (And I should add he's got an oil-fired boiler and a wood-chip fired one - just to add more complication).

calypso_rae's picture

Re: Understanding how to add the SSR to emonbase for PV dump

nbown: I want to dump my extra PV electricity into the hot water cylinder, I have a SSR (with zero crossing). However there are so many posts I’m getting confused. I love the thread on the MK2 PV controller, but don’t really what to use the extra hardware. I wish to put the emonbase in the airing cupboard, use one of the spare pin outs (PWM) to control the SSR. The bit that is really getting away from me is how to use the data sent for the TX for energy bucket. If it’s a problem to use the Emonbase, then I’m assuming that that the TX would need to crunch the numbers.

Hi, glad you like the Mk2 PV thread.  I have very little idea about how the emon system works.  I'm simply using an Arduino to divert surplus PV power to a dump load.  To do this effectively, the measurement & distribution algorithms need to run continuously. 

With my Mk1 system, I used a smoothed PWM signal to control a 3rd-party device which allocated power to the immersion based on how much spare power had been measured in the preceeding period.  In my opinion, that is a very poor way for a router system to operate; the response time was awful.  The energy bucket approach is far superior and lends itself to diverting power in units of one mains cycle.  A zero-switching device, SSR or triac, seems the best way to go for this mode of operation.  This would require a digital output, rather than a PWM signal, to drive the output device.

Maybe you could have one Arduino to deal with your surplus PV power, as I'm doing, and then have a completely separate emon system to do all the other monitoring tasks that you're looking for. 

Robert Wall's picture

Re: Understanding how to add the SSR to emonbase for PV dump

nbown:

If I can add a bit to Calypso_rae's reply.

I can see no reason why the emonTx (without the RF module) cannot be used to do want you want, and indeed I have one on order to go in a friend's house to do that (and a bit more besides). But I found with a quick trial sketch that the processing load is too much to do all the reporting calculations as well. So I'm using an emonTx minus the rf to drive the triac switch and a totally separate system for monitoring - not wholly because of the processor load problem, the construction of the house makes rf propagation a nightmare so by the time the transmitter was in a good place to link to the base and display, it had extended the immersion switch wiring unacceptably. Duplication was expensive (an extra emonTx, c.t, p.t, power supply, case, etc) but it should be a more rugged system.

I think the Mk 2 PV controller operating in burst fire mode is the way to go. If you opt for DIY phase control and do not use an expensive commercial module, you seem likely to exceed the permitted limits for harmonic currents injected back into the mains, and you will require expensive filters anyway.

I agree with Robinsmh - I don't think there's a way to send the switch control information to an emonBase via the rf link - not without running foul of the rules for the maximum time you're allowed to transmit in that frequency band. I'm intending to use a twisted pair of telephone cable to link the emonTx and the triac switch.

 

nbown's picture

Re: Understanding how to add the SSR to emonbase for PV dump

thanks for your help so far.

i going to have the immersion wiring done by the end of this week. so i can control it from the fuse box.

Q. if i go down the route of a dedicated set of hardware (which i agree is the best way to go). Rather than buying another TX, and ct's can i use my spare ardunio board with the tx just shutting the data from the ct's?

also there BOM for bits, the build the MK2? i don't recall seeing one.

thanks again

 

Robert Wall's picture

Re: Understanding how to add the SSR to emonbase for PV dump

nbown:

Check your pm's.

nbown's picture

Re: Understanding how to add the SSR to emonbase for PV dump

Thanks Robert

Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.