• Welcome to CheeseForum.org » Forum.

New Cheese maker, building Pnuematic press.

Started by Fatman, July 17, 2011, 08:04:31 PM

Previous topic - Next topic

Fatman

Greetings all.
I am admittedly one of those guys that over build everything.
And after not being able to find my favorite cheese in my area, I decided it was time to go DIY.
At first I thought ok get a Dutch lever press, and a 4" mold should  be fine.
Then my family and friends found out I was researching the process, and immediately started placing orders.
So my 4" mold has now grown to a desire to do 7,8,or 10 inch hard cheeses.
This raised an issue bigger molds = higher pressures.

So here's what I have so far and welcome any comments on the matter.

(R X R) X 3.14 X (input psi) = force of ram
(R X R) x 3.14 = area of mold
Force/area of mold = psi inside the mold

7" hoop @ 10psi = 385lbs @ 25psi = 962lbs
10" hoop @ 10psi = 785lbs @ 25psi = 1963lbs

For these sorts of pressures I decided a pneumatic device was the way to go.
to that end I have placed an order for a 6" bore X 20" stroke cylinder which should provide.

6" @ 100psi = 2826lbs (100psi being the normal output of my little compressor)
I should only need a fraction of this but better to have the legs than to run out of steam.
I also purchased an arbor press to re purpose for the job.
I will also add a digital regulator to control the force.

I intend to add photos once I start assembly, waiting a week or so for the cylinder to arrive.

Thanks

Fatman

Jaspar

Welcome Fatman,
  Keep us updated on your progress, I've been using a modified homemade dutch press with pulleys
to get the pressures that i need to press a 9.5 inch 10 gallon wheel. It works well but it is a bit bulky
and ungainly (see picture). My wife would like me to come up with a more compact way to do it.
                                Jaspar

Boofer

Welcome to the forum, Fatman.

Have you made cheese before? What styles of cheese do you intend to make? Most cheeses don't require the levels of pressure you are describing and/or imagining.

-Boofer-
Let's ferment something!
Bread, beer, wine, cheese...it's all good.

Fatman

I am going to be making some hard cheeses.
A friend of mine has family that commercially make Basque cheeses in France.
And they are giving me some guidance to their style of pressing.

Also the pressures I noted are for reference only, I know most cheeses don't need those pressures.
But as I said earlier better to have the legs and not need them than to run out of steam.

Not to mention I have a touch of Redneck DNA, so if something doesn't quite squeeze together make a bigger press.
I also choose to use a really large diameter cylinder to keep the input PSI lower i.e. less apt to blow out an air hose or fitting.


Fatman

Thanks, I had already read that.
Those presses look awesome, and he really knows how to make them look good.
The one issue I had with any off the shelf pneumatic presses is their max numbers were based on the max input pressure of the cylinder.
In this case 250psi, most home use compressors run 90-125psi max
So lets use my earlier example of Cheddar @ 25psi
He doesn't list the size of his cylinders here so lets assume a common size of 1.5"
First we need the radius (1.5/2) squared X 3.14 (pi) =1.766 for the area of the cylinder @ 100psi that gives just 176.625LBS of force
Seems like plenty, but now lets look at the intended mold size of 8"
First the area (8/2) = 4 X 4 = 16 X 3.14 = I get 50.24 Sq inches
So we take the max force with a common compressor 100psi giving 176lbs and divide that by the area of an 8" mold 50.24.

That means this press with the available compressor would give you ~3.51 psi in your mold.
Not enough for Cheddar I think.

If my logic is incorrect I'm sorry I had to make some assumptions.

Thanks

Tea

Lol, I was just about to ask whether your other name was Carter.  ;D

He was usually very indepth and informative in his information.  So hopefully you will be able to glean something.

Fatman

#7
I had to go back and read his other post to get the Carter reference.
And yes he did provide valuable info.
From his earlier post and a visit to a local cheese factory, not to mention several references to a description of cheddar by Dixon (Used 40psi for cheddar) I knew I needed a beast to cover all the bases.

Not to mention my friends from France talk of using pressures high than that.

His press and those stories are exactly why I chose a 6" cylinder as apposed to a smaller one.

I'm a network administrator by trade and tend to try to understand as many possabilities that I can and plan for the absolute craziest situation that may arise.

And yes I frustrate loved ones to no end.  ^-^

Thanks

Boofer

Quote from: Fatman on July 18, 2011, 04:24:39 PM
But as I said earlier better to have the legs and not need them than to run out of steam.
I guess if I'm being honest here, that's the way I designed my Dutch press. More Power!! Following in the footsteps of Tim "the Toolman" Taylor.  8)

Paul's here too...let's form a conga line!  ;)

-Boofer-
Let's ferment something!
Bread, beer, wine, cheese...it's all good.

Fatman

#9
I decided to make a tool to predict the necesarry input pressures for a given cylender size across 1-4 molds of equal size.

Use the attachment or
Copy everything below to a notepad and save as FatmanCalc.hta
Once thats done double click and enjoy.



<HTML>
<HEAD>
<TITLE>
Fromage Du Fatman
</TITLE>
<SCRIPT LANGUAGE="vbscript">
OPTION EXPLICIT
Dim dblPrices(2)

dblPrices(0) = 12.56
dblPrices(1) = 28.26
dblPrices(2) = 50.24

Sub cmdCalc_OnClick
Dim intSelected, intSelected1
Dim dblTotal, dblcyl, dblcyl1, txtcyl
Dim dblTot, dblTot1, dblTot2, dblTot3

intSelected = frmForm1.cboProducts.SelectedIndex
dblTot = dblPrices(intSelected) * frmForm1.txtQty.Value
dblTot = dblTot
dblTot1 = dblTot * 2
dblTot2 = dblTot * 3
dblTot3 = dblTot * 4
dblCyl = frmForm1.txtcyl.Value / 2
dblcyl1 = dblcyl * dblcyl * 3.14
frmForm1.txtTotal.Value = " " & dblTot
frmForm1.txtTotal1.Value = " " & dblTot1
frmForm1.txtTotal2.Value = " " & dblTot2
frmForm1.txtTotal3.Value = " " & dblTot3
frmForm1.txtTotal4.Value = " " & dblTot / dblcyl1
frmForm1.txtTotal5.Value = " " & dblTot1 / dblcyl1
frmForm1.txtTotal6.Value = " " & dblTot2 / dblcyl1
frmForm1.txtTotal7.Value = " " & dblTot3 / dblcyl1
End Sub


</SCRIPT>
</HEAD>
<BODY BGCOLOR="white">
<FONT FACE="arial" SIZE=2><B>
<CENTER>
<H3>Mold Pressure Calculator</H3>
<P>
Select the Mold Size you require from the list, then
simply enter the Desired internal mold psi,</P>
and click the Calculate
button to see the LBS of force needed.
</P>
<FORM NAME="frmForm1">
<SELECT NAME="cboProducts">
<OPTION>Mold Size 4"
<OPTION>Mold Size 6"
<OPTION>Mold Size 8"
</SELECT>
  Target PSI
<INPUT TYPE="text" NAME="txtQty" SIZE=10>
</P>
Please enter your Cylinder Size in inches
<INPUT TYPE="text" NAME="txtCyl" SIZE=10>
<P>
<INPUT TYPE="button" NAME="cmdCalc" VALUE="Calculate">
<P>
This is the force in pounds needed on your Side by side molds.
</P>
<INPUT TYPE="text" NAME="txtTotal">
Two Molds <INPUT TYPE="text" NAME="txtTotal1">
Three Molds <INPUT TYPE="text" NAME="txtTotal2">
Four Molds <INPUT TYPE="text" NAME="txtTotal3">
</P>

This is the Prdicted necesarry psi in your pnuematic cylinder.
</P><INPUT TYPE="text" NAME="txtTotal4">
Two Molds   <INPUT TYPE="text" NAME="txtTotal5">
Three Molds <INPUT TYPE="text" NAME="txtTotal6">
Four Molds  <INPUT TYPE="text" NAME="txtTotal7">
</FORM>
</BODY>
</HTML>


Fatman

#10
OK I felt bad not doing one for the lever guys.
It was a major complication but here it is let me know if it works for ya.

Use the attachment or
Copy everything below to a notepad and save as FatmanLeverCalc.hta
Once thats done double click and enjoy.



<HTML>
<HEAD>
<TITLE>
Lever Fromage Du Fatman
</TITLE>
<SCRIPT LANGUAGE="vbscript">
OPTION EXPLICIT
Dim dblPrices(2)

dblPrices(0) = 12.56
dblPrices(1) = 28.26
dblPrices(2) = 50.24


Sub cmdCalc_OnClick
Dim intSelected, intSelected1, dblcyl0, dblcyl01
Dim dblTotal, dblcyl, dblcyl1, txtcyl
Dim dblTot, dblTot1, dblTot2, dblTot3


intSelected = frmForm1.cboProducts.SelectedIndex
dblTot = dblPrices(intSelected) * frmForm1.txtQty.Value
dblTot = dblTot
dblTot1 = dblTot * 2
dblTot2 = dblTot * 3
dblTot3 = dblTot * 4
dblcyl0 = CInt(frmForm1.txtwght.Value)
dblcyl01 = CInt(frmForm1.txtPiv.Value)
dblcyl = (dblcyl0   dblcyl01) / dblcyl01

dblcyl1 = dblPrices(intSelected)
frmForm1.txtTotal.Value = " " & dblTot
frmForm1.txtTotal1.Value = " " & dblTot1
frmForm1.txtTotal2.Value = " " & dblTot2
frmForm1.txtTotal3.Value = " " & dblTot3
frmForm1.txtTotal4.Value = " " & dblTot / dblcyl
frmForm1.txtTotal5.Value = " " & (dblTot / dblcyl) * 2
frmForm1.txtTotal6.Value = " " & (dblTot / dblcyl) * 3
frmForm1.txtTotal7.Value = " " & (dblTot / dblcyl) * 4
frmForm1.txtTotal8.Value = " " & dblTot / dblcyl
frmForm1.txtTotal9.Value = " " & dblcyl
End Sub


</SCRIPT>
</HEAD>
<BODY BGCOLOR="white">
<FONT FACE="arial" SIZE=2><B>
<CENTER>
<H3>Mold Pressure Calculator</H3>
<P>
Select the Mold Size you require from the list, then
simply enter the Desired internal mold psi,</P>
and click the Calculate
button to see the LBS of force needed.
</P>
<FORM NAME="frmForm1">
<SELECT NAME="cboProducts">
<OPTION>Mold Size 4"
<OPTION>Mold Size 6"
<OPTION>Mold Size 8"
</SELECT>
  Target PSI
<INPUT TYPE="text" NAME="txtQty" SIZE=10>
</P>
Please enter your Measurment from pivot to fulcrum in inches
<INPUT TYPE="text" NAME="txtPiv" SIZE=10 value="1">
</P>
Please enter your Measurment from fulcrum to wieght point in inches
<INPUT TYPE="text" NAME="txtwght" SIZE=10 value="1">
<P>
<INPUT TYPE="button" NAME="cmdCalc" VALUE="Calculate">
<P>
This is the force in pounds needed on your Side by side molds.
</P>
<INPUT TYPE="text" NAME="txtTotal">
Two Molds <INPUT TYPE="text" NAME="txtTotal1">
Three Molds <INPUT TYPE="text" NAME="txtTotal2">
Four Molds <INPUT TYPE="text" NAME="txtTotal3">
</P>

This is the Prdicted necesarry Wieghts in pounds needed on your Lever.
</P><INPUT TYPE="text" NAME="txtTotal4">
Two Molds   <INPUT TYPE="text" NAME="txtTotal5">
Three Molds <INPUT TYPE="text" NAME="txtTotal6">
Four Molds  <INPUT TYPE="text" NAME="txtTotal7">
</P>
</P>
Amount of simulated wieght. (used for proofing Multiply sim wieght By Advantage Factor)
</P><INPUT TYPE="text" NAME="txtTotal8"> Your Mech Adv Factor <INPUT TYPE="text" NAME="txtTotal9">
</FORM>
</BODY>
</HTML>


Fatman

I was planning using my new pnuematic press to do my first cheese.
But the supplier shipped me the wrong cylinder, so my test cheese was done on a lever press.
Everything turned out well, but I have to admit tinkering with weights and wires and binding frames has convinced me.
Pnuematic is the right choice.
Run my tool set the dial, no tilting, binding and friction are minimal outcome predictable.

My first cheese ever turned out to be a pepper/garlic Gouda, I'm looking forward to my next batch with the big press..

Boofer

Quote from: Fatman on July 25, 2011, 05:20:13 AM
I was planning using my new pnuematic press to do my first cheese.
But the supplier shipped me the wrong cylinder, so my test cheese was done on a lever press.
Everything turned out well, but I have to admit tinkering with weights and wires and binding frames has convinced me.
Pnuematic is the right choice.
Run my tool set the dial, no tilting, binding and friction are minimal outcome predictable.

My first cheese ever turned out to be a pepper/garlic Gouda, I'm looking forward to my next batch with the big press..
Glad to see your pneumatic process is working for you.

-Boofer-
Let's ferment something!
Bread, beer, wine, cheese...it's all good.

Fatman

Yup, I think we got the cylinder issue resolved.
It should be all skwishy  :o real soon.

steve5000

Interested in having a play around myself with making a pneumatic press.  Could perhaps send me a link to the cylinder that you have bought for your press?
Thanks, Steve