Automatic Underback

The Homebrew Forum

Help Support The Homebrew Forum:

This site may earn a commission from merchant affiliate links, including eBay, Amazon, and others.
this might help, i've built THISand it works, not tried it for brewing though, and the float switches arn't fantastic, they do tend to stick with dirty water.
 
muddydisco said:
Underback is small pot to collect the runnings out of the tun then the pump sucks from this. My system you seen hasn't got one so I have to balance the flow of the pump so it doesn't suck the grist to the bottom of the tun.
I Do like the look of this though and if all works out well, I may go this way when I upgrade.
Many thanks MD, I was forgetting I didn't use a pumped system! (silly me)
 
Personally I wouldn't put live 240v through a float switch which is contact with the wort and hence the container. To be on the safe side you would have to earth the underback and use an RCD or something.

It would be better to use low voltages on the switches and isolation to a controller i.e PIC etc that controls a relay, mosfet, SSR etc to switch the pump on/off.
 
I think that would be difficult, irony.

I would still connect the pot casing to earth for HLT and Copper, elements have been know to fail and the earth on the earthed element outer coating not detect the live fault inside the element. I would also bond all the pots together to prevent touch potentials between pots and pipework, pumps etc.


And of cousre the RCD on the lot

Best be safe than dead :shock:

If your'e a real fanatic, you could always brew with one hand in your pocket :!:
 
RatAle said:
I think that would be difficult, irony.
Thank you for the gracious use of the word “Irony” rather than “sarcasm” as it undoubtedly was.
You are of course perfectly correct; I think the use of RCCB’s should be a standard.
Could be a bit difficult though with tropical fish tanks.
If you really go into it, the “Risk Assessment” of home brewing could be quite lengthy.
 
RatAle said:
It would be better to use low voltages on the switches and isolation to a controller i.e PIC etc that controls a relay, mosfet, SSR etc to switch the pump on/off.
Yes maybe I need to rethink :hmm: I think JamesB is planning to do his underback that way. I have done some more testing this evening with the float switches installed in a plastic bucket, and the control seems to work fine turning the pump on + off.
 
Here's a little something I made earlier

underbackcontrol.jpg


A little overengineered perhaps, but I've left the facility to have it PC controlled if I ever want it in the future.

And I just made it from bits I had lying around, so no comments on the design :grin:
 
Two thoughts but this may just be the Cheeky Vimto. My sampling cup keeps getting bigger- I only have a 2 pint jug left to go now :P

Why not get float switches with NO and NC contacts? They must be available.
Alternatively can't you just mount the lower float the wrong way up. When the liquid is below the float gravity will make it flop down, turning off the pump. Once the liquid starts to rise, the float will lift up closing the contacts switching it on.
 
Here are a few photos of mine, which is a March May off the shelf job. (i only use the small microswitch which switches the live, the large one just uses a flying lead to 3 wires)

http://i774.photobucket.com/albums/yy24/THBF/24.jpg
http://i774.photobucket.com/albums/yy24/THBF/25.jpg
http://i774.photobucket.com/albums/yy24/THBF/21.jpg
http://i774.photobucket.com/albums/yy24/THBF/22.jpg
http://i774.photobucket.com/albums/yy24/THBF/23.jpg

works a treat, microswitch made pump runs level drops pump doesn't, wired up to rcd, so safe as houses.

UP
 
The almost finished product

automaticunderback2.jpg


I use flojet pumps, hence the solenoid valve. It turns on the air to the pump.

Just waiting on some 1/2" BSP locking washers that actually fit. The last lot I got from BES are next to useless.
 
beer taster said:
That's looking good . . . but are you still planning on running it all at 240V? My personal thoughts would be to run it all at low voltage and use a 240V relay to control the pump.

The other thing you might want to consider, is that when the pump switches off wort will flow back into the under back from the pump side of the pipework . . . and if you have submerged your outlet pipework you will quite happily syphon out the contents of your mash tun
 
auto-underback-1.gif



In order to use the underback between two levels that will give us enough buffer between not overflowing the underback and the pump not being primed and ran dry, two float switches can be used at a distance apart that will dictate the buffer volume. :thumb:

This can be implemented using relays, logic gates/flip flops, ROM lookup table, microcontrollers etc……
Because the system can have the same input conditions giving two different outputs, some kind of memory or latch will be needed. The simplest way to achieve and understand this is to use an algorithmic state machine; part of the state is used effectively as an input to differentiate.

From the diagram each circle represents a state the system can be in, above the horizontal line in the circle is the stimulus (our inputs), and below the line is the consequence (our outputs). The two switches (L and H) in the UB vessel are OFF if the liquid has not reached them and ON if the liquid reaches or passes them.

Assuming at the start we are in State 0 the inputs are tested and the corresponding output is applied and the state is changed accordingly. Note S1 and S3 have the same input conditions, but different outputs for the pump (P).

One such implementation for a microcontroller (uc) is shown above in pseudo code. It is important that the pump is switched off first, at initialisation when the uc is powered up. The above also assumes that the underback has no liquid in it at start up when entering State 0.

What if I forgot to power the uc and the underback already has some level in it ? :roll:
To protect from this scenario you could change the code in the initialisation routine.

Remove State = 0 and add:-

If (L off & H off) then State = 0;
If (L on & H off) then State = 1;
If (L on & H on) then State = 2;

i.e We have started in a different state due to the float switch values.

The initialisation routine is only called once at the start, the state machine is called in the main program loop either by polling or calling the routine after a time has elapsed, say every second (the liquid height won’t have changed much in that time). Mean while other things can be done in the loop.

You could also have some LED’s reflecting the values of H, L and P and a buzzer for State S2, might look pretty :hmm:

Digressed a bit from brewing, so sorry if the above is a bit boring, some may find it interesting.


Cool system there Jamesb, did you do something similar :clap: ?
 
Aleman said:
... are you still planning on running it all at 240V?
As I'm lazy I plan to get it working with 240V then hopefully :whistle: change it to a lower voltage in the future..... provided I've not electrocuted myself by then

Aleman said:
... The other thing you might want to consider, is that when the pump switches off wort will flow back into the under back from the pump side of the pipework . . . and if you have submerged your outlet pipework you will quite happily syphon out the contents of your mash tun
Interesting point never thought about that, I'll make sure I don't submerge the return pipe in the boiler
 
Cool system there Jamesb, did you do something similar :clap: ?

Spot on :thumb:

I forgot about the possibility of not turning it on whilst liquid was in it but it won't matter to my code. My electrics make that impossible anyway.
 
Why has everybody got a thing about 240v on the control circuit?there are 1000's of control circuits using 240v for the control circuit,some even use 415v,in far harsher environments than your homebrew shed.The switches in the original link are sealed and waterproof,although i cant find an IP ranting,with a built in cable.As long as the cable is terminated in a suitable enclosure theres very little risk of ingress from water or wort,put the control circuit in a suitably IP rated enclosures and you could chuck it in the liquid if the urge takes you.
 
unclepumble said:
If I were you I would look for an automatic condensate pump, I use a march may condensate pump as an automatic underback and it works a treat, stainless steel box pump parts are all foodsafe and will take 120 deg c temp, and the float switch is allready fitted and wired in, all I needed to do was put a plug on it and fit the outlet pipework, it works a treat.

I have just done a search on fleabay, no march mays but this would probably do the job

http://cgi.ebay.co.uk/Aspen-Macerator-C ... 618wt_1165

It looks very very similar to mine & a bargain at £70.00


UP

I've just grabbed one of these; there's 6 left guys, £50
http://cgi.ebay.co.uk/ws/eBayISAPI.dll?ViewItem&item=140407900972&ssPageName=STRK:MEWAX:IT

The datasheets can be found here http://www.aspenpumps.com/en/macerator.html
 

Latest posts

Back
Top