<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Conveyors and Accumulation Tables &#187; production</title>
	<atom:link href="http://www.garvey.com/tag/production/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.garvey.com</link>
	<description>We Handle It</description>
	<lastBuildDate>Thu, 19 Jan 2012 23:18:37 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Packaging Throughput Example</title>
		<link>http://www.garvey.com/2009/11/packaging-throughput-example/</link>
		<comments>http://www.garvey.com/2009/11/packaging-throughput-example/#comments</comments>
		<pubDate>Tue, 24 Nov 2009 15:44:03 +0000</pubDate>
		<dc:creator>Ben Garvey</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[accumulation]]></category>
		<category><![CDATA[line analysis]]></category>
		<category><![CDATA[packaging]]></category>
		<category><![CDATA[production]]></category>
		<category><![CDATA[throughput]]></category>

		<guid isPermaLink="false">http://www.garvey.com/?p=729</guid>
		<description><![CDATA[Getting the best performance out of an automated packaging line is a difficult task. It is made up of a series of independent machines that each perform a different function such as filling, labeling, packing, etc. The machines are linked together by an overall control system that records the states of each machine (ie. waiting, [...]]]></description>
			<content:encoded><![CDATA[<p>Getting the best performance out of an automated packaging line is a difficult task.  It is made up of a series of independent machines that each perform a different function such as filling, labeling, packing, etc.  The machines are linked together by an overall control system that records the states of each machine (ie. waiting, functioning or malfunctioning) and sets their speeds.  Being in series, these machines are vulnerable to the &#8220;weakest link&#8221; phenomenom.  If one goes down, they all go down.</p>
<div id="attachment_730" class="wp-caption aligncenter" style="width: 220px"><img class="size-full wp-image-730" title="weakest_link" src="http://www.garvey.com/wp-content/uploads/2009/11/weakest_link.jpg" alt="Remember that game show the Weakest Link?" width="210" height="210" /><p class="wp-caption-text">Remember that game show the Weakest Link?</p></div>
<p>The first step in maximizing your throughput is identifying your constraint, or bottleneck.  Take the efficiency of each machine and multiply it by its maximum rate.  This will give you the net rate of each machine.  The machine with the lowest net rate is your constraint and your goal should to keep it running as fast and as often as possible.</p>
<p><strong>Example:</strong><br />
A simple packaging line: (ppm = products per minute)</p>
<table border="1" cellspacing="0" cellpadding="5" width="100%">
<tbody>
<tr>
<th>Name</th>
<th>Max Rate</th>
<th>Efficiency</th>
<th>Net Rate</th>
<th>Throughput</th>
</tr>
<tr>
<td>Filler</td>
<td>300 ppm</td>
<td>94%</td>
<td>282 ppm</td>
<td rowspan="3">167.7 ppm</td>
</tr>
<tr>
<td>Labeler</td>
<td>200 ppm</td>
<td>97%</td>
<td>194 ppm</td>
</tr>
<tr>
<td>Casepacker</td>
<td>400 ppm</td>
<td>92%</td>
<td>368 ppm</td>
</tr>
<tr bgcolor="#fa9805">
<td><strong>Total</strong></td>
<td><strong>200 ppm</strong></td>
<td><strong>83.9%</strong></td>
<td colspan="2"><strong>167.7 ppm</strong></td>
</tr>
</tbody>
</table>
<p>Some interesting notes:</p>
<ul>
<li>Each machine runs 92% or higher, but the line net efficiency is only 83.9%.  This is because downtime on just one machine shuts down the whole line (ie. if the Casepacker jams, the Filler and the Labeler also shut down).  The net efficiency of the line is calculated by multiplying the efficiencies of each machine in sequence:<br />
<strong>0.94 * 0.97 * 0.92 = 0.839 = 83.9%</strong></li>
<li>To get the overall line speed, multiply the net efficiency by the max rate of the <em>slowest</em> machine:  0.839 * 200 = 167.7 ppm</li>
<li>The machine with the lowest net rate is the labeler (194 ppm), making it the constraint.  194 ppm is the upper limit of what we can achieve on this line.</li>
</ul>
<p>So how do you achieve the upper limit of 194 products per minute?  By making sure downtime on the Filler and Casepacker don&#8217;t ever cause the Labeler to shut down.  By adding an accumulation table in between the Filler and the Labeler, you are segregating the line into two separate systems.  This breaks the compounding effect of the machine efficiencies.</p>
<table border="1" cellspacing="0" cellpadding="5" width="100%">
<tbody>
<tr>
<th>Name</th>
<th>Max Rate</th>
<th>Efficiency</th>
<th>Net Rate</th>
<th>Throughput</th>
</tr>
<tr>
<td>Filler</td>
<td>300 ppm</td>
<td>94%</td>
<td>282 ppm</td>
<td>282 ppm</td>
</tr>
<tr>
<td colspan="5" bgcolor="#006a41"><span style="color: white;">Accumulation Table</span></td>
</tr>
<tr>
<td>Labeler</td>
<td>200 ppm</td>
<td>97%</td>
<td>194 ppm</td>
<td rowspan="2">178.5 ppm</td>
</tr>
<tr>
<td>Casepacker</td>
<td>400 ppm</td>
<td>92%</td>
<td>368 ppm</td>
</tr>
<tr bgcolor="#fa9805">
<td><strong>Total</strong></td>
<td><strong>200 ppm</strong></td>
<td><strong>89.2%</strong></td>
<td colspan="2"><strong>178.5 ppm</strong></td>
</tr>
</tbody>
</table>
<p>Since the line is now in two sections, we have to calculate their throughput separately.  The throughput of the first section is 282ppm (0.94 * 300 ppm = 282 ppm).  The throughput of the second section is 178.5 ppm (0.97 * 0.92 * 200 ppm = 178.5 ppm).  We are still limited by the bottleneck of the second section, so the throughput of this line is 178.5 ppm, a 6.4% increase over our previous line.</p>
<p>Since we haven&#8217;t reach our upper limit of 194 ppm we should add another buffer between the Labeler and the Casepacker.</p>
<table border="1" cellspacing="0" cellpadding="5" width="100%">
<tbody>
<tr>
<th>Name</th>
<th>Max Rate</th>
<th>Efficiency</th>
<th>Net Rate</th>
<th>Throughput</th>
</tr>
<tr>
<td>Filler</td>
<td>300 ppm</td>
<td>94%</td>
<td>282 ppm</td>
<td>282 ppm</td>
</tr>
<tr>
<td colspan="5" bgcolor="#006a41"><span style="color: white;">Accumulation Table</span></td>
</tr>
<tr>
<td>Labeler</td>
<td>200 ppm</td>
<td>97%</td>
<td>194 ppm</td>
<td>194 ppm</td>
</tr>
<tr>
<td colspan="5" bgcolor="#006a41"><span style="color: white;">Accumulation Table</span></td>
</tr>
<tr>
<td>Casepacker</td>
<td>400 ppm</td>
<td>92%</td>
<td>368 ppm</td>
<td>368 ppm</td>
</tr>
<tr bgcolor="#fa9805">
<td><strong>Total</strong></td>
<td><strong>200 ppm</strong></td>
<td><strong>92%</strong></td>
<td colspan="2"><strong>194 ppm</strong></td>
</tr>
</tbody>
</table>
<p>Now we&#8217;ve broken the line into three sections with each machine running independently.  We have no compounding of efficiencies, so all we have to do is pick the lowest net rate of the machines.  In this case, the Labeler&#8217;s net rate is 194 ppm and this is throughput of the line, a 15.7% increase over our original throughput of 167.7 ppm.</p>
<h2>What does 15.7% mean to a company&#8217;s bottom line?</h2>
<p>If you are having trouble meeting market demand for a product it could be huge.<br />
Let&#8217;s say the line is running:<br />
2, 8 hour shifts per day<br />
7 days a week<br />
Profit is a conservative 50 cents per product</p>
<blockquote><p>2 shifts * 8 hours * 60 minutes / hour * $0.50 cents * 26.3 extra products per minute = <strong>$12,624.00 per day in additional revenue</strong></p></blockquote>
<p><strong>Over six months it generates $2,203,880.00</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.garvey.com/2009/11/packaging-throughput-example/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>What Keeps Conveyor Guys Up at Night?</title>
		<link>http://www.garvey.com/2009/11/what-keeps-conveyor-guys-up-at-night/</link>
		<comments>http://www.garvey.com/2009/11/what-keeps-conveyor-guys-up-at-night/#comments</comments>
		<pubDate>Thu, 19 Nov 2009 14:07:27 +0000</pubDate>
		<dc:creator>Ben Garvey</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[blink]]></category>
		<category><![CDATA[conveyor]]></category>
		<category><![CDATA[gladwell]]></category>
		<category><![CDATA[liquor]]></category>
		<category><![CDATA[marketing]]></category>
		<category><![CDATA[packaging]]></category>
		<category><![CDATA[production]]></category>

		<guid isPermaLink="false">http://www.garvey.com/?p=717</guid>
		<description><![CDATA[In the 2005 Malcom Gladwell book, Blink, there is a great paragraph on marketing and packaging: there’s the issue of what is called sensation transference. This is a concept coined by one of the great figures in twentieth-century marketing, a man called Louis Cheskin, who was born in Ukraine at the turn of the century [...]]]></description>
			<content:encoded><![CDATA[<p>In the 2005 Malcom Gladwell book, <a href="http://www.amazon.com/Blink-Power-Thinking-Without/dp/0316172324">Blink</a>, there is a great paragraph on marketing and packaging:<br />
<blockquote>there’s the issue of what is called sensation transference. This is a concept coined by one of the great figures in twentieth-century marketing, a man called Louis Cheskin, who was born in Ukraine at the turn of the century and immigrated to the United States as a child. Cheskin was convinced that when people give an assessment of something they might buy in a supermarket or a department store, without realizing it, they transfer sensations or impressions that they have about the packaging of the product to the product itself. To put it another way, Cheskin believed that <strong>most of us don’t make a distinction — on an unconscious level — between the package and the product.</strong> The product is the package and the product combined. </p></blockquote>
<div id="attachment_718" class="wp-caption aligncenter" style="width: 507px"><img src="http://www.garvey.com/wp-content/uploads/2009/11/macallan-497x600.jpg" alt="Liquor containers tend to be extreme" title="macallan" width="497" height="600" class="size-medium wp-image-718" /><p class="wp-caption-text">Liquor containers tend to be extreme</p></div>
<p>There has always been a fun battle between the marketing and production side of packaging.    The Marketing Department comes up with a beautifullly unique, oddly shaped, off center bottle that enhances and improves the sensation transference while the Production Department has to produce the product efficiently enough so that the price point can be optimized.  There are many things that can affect a bottle&#8217;s ability to be efficiently produced, such as the center of gravity, material type, side contour, contact surfaces, etc.  My experience is solidly on the production side of packaging, and that&#8217;s why posts like <a href="http://www.thedieline.com/blog/2009/11/50_favorite_liquor_package_designs.html">this</a> on the amazing packaging design blog, <a href="http://www.thedieline.com">TheDieline</a>, give me nightmares.</p>
<p><a href="http://www.thedieline.com/blog/2009/11/50_favorite_liquor_package_designs.html">50 Favorite Liquor Package Designs</a></p>
<p>It also keep us in business.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.garvey.com/2009/11/what-keeps-conveyor-guys-up-at-night/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

