<?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> &#187; Project Priorities Perspective</title>
	<atom:link href="http://www.successful.com.au/blog/category/project-priorities-perspective/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.successful.com.au/blog</link>
	<description></description>
	<lastBuildDate>Thu, 02 Feb 2012 20:26:52 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.2</generator>
		<item>
		<title>Green Electronics Strategies &#8211; Sleep Saves Energy</title>
		<link>http://www.successful.com.au/blog/2009/11/23/green-electronics-strategies-sleep-saves-energy/</link>
		<comments>http://www.successful.com.au/blog/2009/11/23/green-electronics-strategies-sleep-saves-energy/#comments</comments>
		<pubDate>Mon, 23 Nov 2009 02:28:14 +0000</pubDate>
		<dc:creator>Ray Keefe</dc:creator>
				<category><![CDATA[Electronics Manufacture]]></category>
		<category><![CDATA[Embedded Software]]></category>
		<category><![CDATA[Global Warming]]></category>
		<category><![CDATA[Green Electronics]]></category>
		<category><![CDATA[Low Power Electronics]]></category>
		<category><![CDATA[Project Priorities Perspective]]></category>
		<category><![CDATA[Code Execution]]></category>
		<category><![CDATA[DCO]]></category>
		<category><![CDATA[Digitally Controlled Oscillator]]></category>
		<category><![CDATA[LED Indicators]]></category>
		<category><![CDATA[Low Power Sleep Mode]]></category>
		<category><![CDATA[msp430]]></category>
		<category><![CDATA[Power Conservation]]></category>
		<category><![CDATA[power consumption]]></category>
		<category><![CDATA[Power Down Modes]]></category>
		<category><![CDATA[Power Management Plan]]></category>
		<category><![CDATA[Power Saving]]></category>
		<category><![CDATA[Power Saving Strategy]]></category>
		<category><![CDATA[Shut Down]]></category>
		<category><![CDATA[State Machines]]></category>
		<category><![CDATA[System Architecture]]></category>
		<category><![CDATA[User Interaction]]></category>

		<guid isPermaLink="false">http://www.successful.com.au/blog/?p=639</guid>
		<description><![CDATA[How Does Sleep Save Energy? For this post, we will look specifically at Embedded Software techniques to save power and energy.  This is a well known Power Saving Strategy which doesn&#8217;t always get the recognition it deserves.  It is also something you have to design into the Power Management Plan from the beggining. For this [...]]]></description>
			<content:encoded><![CDATA[<h1>How Does Sleep Save Energy?</h1>
<p>For this post, we will look specifically at <strong>Embedded Software</strong> techniques to save power and energy.  This is a well known <strong>Power Saving Strategy</strong> which doesn&#8217;t always get the recognition it deserves.  It is also something you have to design into the <strong>Power Management Plan</strong> from the beggining.</p>
<p>For this example, we will use the <strong><a title="MSP430" href="http://www.ti.com/msp430" target="_blank">MSP430</a></strong> from <strong><a title="Texas Instruments" href="http://www.ti.com/" target="_blank">TI</a></strong> which has some of the best <strong>Power Saving</strong> and <strong>Power Consumption</strong> figures in the industry.  We have used them to create devices that run from a pair of AAA batteries for 2 years and which have time based control algorithms so that they can&#8217;tbe used in a purely event driven mode.  Here is how it works:</p>
<div id="attachment_644" class="wp-caption aligncenter" style="width: 503px"><img class="size-full wp-image-644" title="Low Power Sleep Mode" src="http://www.successful.com.au/blog/wp-content/uploads/2009/11/LowPowerSleepMode1.jpg" alt="Low Power Sleep Mode" width="493" height="173" /><p class="wp-caption-text">Low Power Sleep Mode</p></div>
<p>This shows the power consumption versus time.  In <strong>Low Power Sleep Mode</strong> the consumption is close to zero.  Almost no power consumed.  Then depending on what is happening it wakes up to varying degrees.</p>
<h1>Get the best Electronic Sleep</h1>
<p>So this is how you take advantage of this:</p>
<ul>
<li>make the time between wake ups as long as possible</li>
<li>make the time awake as short as possible</li>
<li>only turn on the peripherals needs for a particular wake period</li>
</ul>
<p>Now if you system only has to wake once every minute then you can get low power operation from a lot of different processors.  If it wakes many times a second then you need a processor that gives you lots of ways to reduce power during wake, reduce the time awake, and increase the interval between wakes.</p>
<h1>MSP430 Sleep</h1>
<p>So back to the <strong><a title="MSP430" href="http://en.wikipedia.org/wiki/TI_MSP430" target="_blank">MSP430</a></strong>. It has <strong>Power Conservation</strong> features that allow it to do all three better than most.  Here is the list:</p>
<ul>
<li><strong>Digitally Controlled Oscillator</strong> <strong>DCO</strong> allows it to wake and run quickly</li>
<li>Can run a Timer from a 32KHz crystal making interval timing very low power</li>
<li>Can use the <strong>DCO</strong> to set the run speed and so shorten the wake time</li>
<li>Lot&#8217;s of <strong>Power Down Modes</strong> so you can always find one that suits your application</li>
<li>Peripherals can be <strong>Shut Down</strong> when not in use</li>
<li>Can run down to 1.8V &#8211; more on that later but it can also help here</li>
</ul>
<h1>Low Power System Architecture</h1>
<p>To take advantage of all this, you have to develop the <strong>System Architecture</strong> so that  takes advantage of this.  An example from a very long life application we did runs like this:</p>
<ul>
<li>32Hz Oscillator runs a timer that generates a 1 second wake</li>
<li>User input keys set up to wake on change of state from high to low</li>
<li>Use DCO at 1MHz to quickly wake, execute &amp; sleep again</li>
<li>Use <strong>State Machines</strong> to allow modules to execute predictably with eratic timing</li>
<li>Have early exit tests to prevent unnecessary <strong>Code Execution</strong></li>
</ul>
<p>The result is an application that runs a process with <strong>User Interaction, LED Indicators</strong>, and a 2 week cycle where the average Power Consumption is 20uA at 2.7V or 54uW.  Of this, less than half is the processor executing the software and the single biggest energy use is the intermittently flashed <strong>LED Indicators</strong>.</p>
<p>To learn more, check out this more comprehensive article on &#8220;<em>Low power MCU selection criteria and sleep mode implementation</em>&#8221; from <a title="Embedded.com Low power MCU selection criteria and sleep mode implementation " href="http://www.embedded.com/columns/technicalinsights/218800125?_requestid=389280" target="_blank">embedded.com</a> which provides more examples.</p>
<p><span style="COLOR: #000000"><em>Ray Keefe has been developing high quality and market leading electronics products in Australia for nearly 30 years.  For more information go to his </em><a title="Ray Keefe at Linked In" onclick="pageTracker._trackPageview('/outbound/article/www.linkedin.com');" href="http://www.linkedin.com/in/raykeefe" target="_blank"><em>LinkedIn</em></a><em> profile. This post is Copyright © Successful Endeavours Pty Ltd.</em></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.successful.com.au/blog/2009/11/23/green-electronics-strategies-sleep-saves-energy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Electronics Manufacture Shines in Melbourne</title>
		<link>http://www.successful.com.au/blog/2009/09/01/electronics-manufacture-shines-in-melbourne/</link>
		<comments>http://www.successful.com.au/blog/2009/09/01/electronics-manufacture-shines-in-melbourne/#comments</comments>
		<pubDate>Tue, 01 Sep 2009 03:51:05 +0000</pubDate>
		<dc:creator>Ray Keefe</dc:creator>
				<category><![CDATA[Electronics Awards]]></category>
		<category><![CDATA[Electronics Manufacture]]></category>
		<category><![CDATA[Embedded Software]]></category>
		<category><![CDATA[Project Priorities Perspective]]></category>
		<category><![CDATA[Australian Electronics]]></category>
		<category><![CDATA[Australian Electronics Manufacture]]></category>
		<category><![CDATA[Australian Electronics Manufacturing]]></category>
		<category><![CDATA[EDN Innovation Awards]]></category>
		<category><![CDATA[electronics]]></category>
		<category><![CDATA[Electronics and Embedded Software]]></category>
		<category><![CDATA[Electronics Manufacturers]]></category>
		<category><![CDATA[electronics manufacturing]]></category>
		<category><![CDATA[Electronics Products Made In Australia]]></category>
		<category><![CDATA[low cost electronics manufacture]]></category>
		<category><![CDATA[Made in Australia]]></category>
		<category><![CDATA[Product Development]]></category>
		<category><![CDATA[Product Development Costs]]></category>
		<category><![CDATA[Successful Endeavours]]></category>
		<category><![CDATA[Successful Product Development]]></category>

		<guid isPermaLink="false">http://www.successful.com.au/blog/?p=407</guid>
		<description><![CDATA[National recognition for local Casey Business OK, I couldn&#8217;t resist that blog title or this headline.  It isn&#8217;t often you get a chance to say something like that.  If you hadn&#8217;t heard yet, we are finalists in two categories in the EDN Innovation Awards for 2009.  Melbourne is the Electronics Manufacturing capital of Australia and [...]]]></description>
			<content:encoded><![CDATA[<h1>National recognition for local Casey Business</h1>
<p>OK, I couldn&#8217;t resist that blog title or this headline.  It isn&#8217;t often you get a chance to say something like that.  If you hadn&#8217;t heard yet, we are <strong>finalists in two categories</strong> in the <strong>EDN Innovation Awards</strong> for 2009.  <a title="Melbourne" href="http://melbourne.vic.gov.au/info.cfm?top=23&amp;pg=966" target="_blank"><strong>Melbourne</strong></a> is the <strong>Electronics Manufacturing</strong> capital of <strong>Australia </strong>and we are based in <strong>Berwick</strong> which is administered by the <a title="City of Casey" href="http://www.casey.vic.gov.au/" target="_blank"><strong>City of Casey</strong></a> .  And we are also members of the <a title="Berwick Chamber Of Commerce" href="http://www.berwick-village.com.au/" target="_blank"><strong>Berwick Chamber Of Commerce</strong></a>.</p>
<h1>Successful Endeavours in the NEWS</h1>
<p>The <a title="Casey Weekly Berwick" href="http://www.caseyweeklyberwick.com.au/" target="_blank">Casey Weekly Berwick</a> has just done an article on <a title="Successful Endeavours" href="http://www.successful.com.au/" target="_blank"><strong><em><span style="color: #005e20;">Successful Endeavours</span></em></strong></a> that also covers the <strong><span style="color: #005e20;">EDN Innovation Awards</span></strong> we are finalists for.  You can check it out here <a title="Electronics Whiz Wired For Success" href="http://www.caseyweeklyberwick.com.au/news/local/news/general/electronics-whiz-wired-for-success/1609941.aspx" target="_blank"><span style="color: #005e20;"><strong><em>Electronics Whiz Wired For Success</em></strong></span></a>.  And as a bonus, you get to see what we look like.</p>
<h1>Electronics Manufacturing</h1>
<p>Our aim is to turn <strong><span style="color: #005e20;">Australian Electronics Manufacture</span></strong> into <strong><span style="color: #005e20;">Low Cost Electronics Manufacture</span></strong> through improving the total cost of a product throughout its life cycle.  This is not a quality reduction process.  Quite the opposite.  Getting the product right so it doesn&#8217;t fail and does do what it is meant to do is one of the things necessary to reducing cost.</p>
<p>Located on the outskirts of Melbourne we primarily serve <strong>Melbourne</strong> based <span style="color: #005e20;"><strong>Electronics Manufacturers</strong></span> by providing them with <strong>Electronics </strong>and <strong>Embedded Software Development</strong> services that save them up to 70% compared to traditional linear <strong>Product Development.</strong></p>
<p>So how do we do that?</p>
<p>Firstly, there are a few blog posts you can refer back to that will fill in some of the details.</p>
<h1>Successful Product Development</h1>
<ul>
<li><a title="Performance and Cost versus Time" href="http://www.successful.com.au/blog/2009/05/15/project-priorities-perspective-performance-and-cost-versus-time/" target="_blank"><strong><em><span style="color: #005e20;">Performance and Cost versus Time</span></em></strong></a></li>
<li><a title="Time and Cost versus Performance" href="http://www.successful.com.au/blog/2009/05/07/project-priorities-perspective-time-and-cost-versus-performance/" target="_blank"><strong><em><span style="color: #005e20;">Time and Cost versus Performance</span></em></strong></a></li>
<li><a title="Time and Performance versus Cost" href="http://www.successful.com.au/blog/2009/05/05/project-priorities-perspective-time-and-performance-vs-cost/" target="_blank"><strong><em><span style="color: #005e20;">Time and Performance versus Cost</span></em></strong></a></li>
<li><a title="Project Priorities Perspective" href="http://www.successful.com.au/blog/2009/04/17/project-priorities-perspective/" target="_blank"><strong><em><span style="color: #005e20;">Project Priorities Perspective</span></em></strong></a></li>
<li><a title="Reducing Electronics Manufacturing Parts Cost" href="http://www.successful.com.au/blog/2009/05/21/reducing-electronics-manufacturing-parts-cost/" target="_blank"><strong><em><span style="color: #005e20;">Reducing Electronics Manufacturing Parts Cost</span></em></strong></a></li>
<li><a title="Reducing Electronics and Embedded Software Product Development Costs" href="http://www.successful.com.au/blog/2009/07/27/reducing-electronics-and-embedded-software-product-development-costs/" target="_blank"><strong><em><span style="color: #005e20;">Reducing Electronics and Embedded Software Product Development Costs</span></em></strong></a></li>
<li><a title="Electronics Products Made In Australia Strategies to be more Profitable" href="http://www.successful.com.au/blog/2009/04/13/electronics-products-in-australia-strategies-to-be-more-profitable/" target="_blank"><strong><em><span style="color: #005e20;">Electronics Products Made In Australia &#8211; Strategies to be more Profitable</span></em></strong></a></li>
</ul>
<h1>Australian Electronics Manufacturing</h1>
<p><span style="color: #005e20;"><strong><em>Low Cost Electronics Manufacture</em></strong></span> in Australia that competes favourable with China is feasible.  Ignoring the trade offs discussed in the links above, the steps to take are:</p>
<ul>
<li><strong><span style="color: #005e20;"><em>Identify the primary priority &#8211; is it time, cost, performance?</em></span></strong></li>
<li><strong><span style="color: #005e20;"><em>Reviews costs &#8211; all the costs &#8211; see the last link above if you are sure what they all are</em></span></strong></li>
<li><strong><span style="color: #005e20;"><em>Reduce Cost through redesign to remove unnecessary labour and to streamline manufacture</em></span></strong></li>
<li><strong><span style="color: #005e20;"><em>Implement</em></span></strong></li>
<li><strong><span style="color: #005e20;"><em>Deploy</em></span></strong></li>
<li><strong><span style="color: #005e20;"><em>Monitor and correct as required</em></span></strong></li>
</ul>
<p>Written like this it sound simple, and conceptually it is.  Where it gets lost is in the assumption that it can&#8217;t be that simple.  But there aren&#8217;t any hidden traps in this process.</p>
<p>We have had a few queries about how we came up with our company name, <strong><span style="color: #005e20;">Successful Endeavours.</span></strong> Next post I will reveal all.</p>
<p><em>Ray Keefe has been developing high quality and market leading electronics products in Australia for nearly 30 years.  For more information go to his </em><a title="Ray Keefe at Linked In" href="http://www.linkedin.com/in/raykeefe" target="_blank"><em>LinkedIn</em></a><em> profile. This post is Copyright © Successful Endeavours Pty Ltd.</em></p>
<p style="text-align: center;"><span style="text-decoration: underline;">________________________________________________</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.successful.com.au/blog/2009/09/01/electronics-manufacture-shines-in-melbourne/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>2009 EDN Innovation Awards Finalist</title>
		<link>http://www.successful.com.au/blog/2009/08/17/2009-edn-innovation-awards-finalist/</link>
		<comments>http://www.successful.com.au/blog/2009/08/17/2009-edn-innovation-awards-finalist/#comments</comments>
		<pubDate>Mon, 17 Aug 2009 01:40:35 +0000</pubDate>
		<dc:creator>Ray Keefe</dc:creator>
				<category><![CDATA[Analogue Electronics]]></category>
		<category><![CDATA[Electronics Awards]]></category>
		<category><![CDATA[Electronics Manufacture]]></category>
		<category><![CDATA[Project Priorities Perspective]]></category>
		<category><![CDATA[802.15.4]]></category>
		<category><![CDATA[Abuse Voltage]]></category>
		<category><![CDATA[Abuse Voltages]]></category>
		<category><![CDATA[analogue]]></category>
		<category><![CDATA[Analogue Design]]></category>
		<category><![CDATA[Australian Electronics Manufacturer]]></category>
		<category><![CDATA[Australian Electronics Manufacturers]]></category>
		<category><![CDATA[Borgtech]]></category>
		<category><![CDATA[Borgtech CPL2]]></category>
		<category><![CDATA[Design Requirements]]></category>
		<category><![CDATA[Design Software]]></category>
		<category><![CDATA[EDN Innovation Awards]]></category>
		<category><![CDATA[Electronics Design]]></category>
		<category><![CDATA[Electronics Design Requirements]]></category>
		<category><![CDATA[Embedded Software]]></category>
		<category><![CDATA[hazardous voltages]]></category>
		<category><![CDATA[Intellectual Property]]></category>
		<category><![CDATA[IP]]></category>
		<category><![CDATA[IP68]]></category>
		<category><![CDATA[lightning strike transients]]></category>
		<category><![CDATA[low cost electronics manufacture]]></category>
		<category><![CDATA[Low Power Electronics]]></category>
		<category><![CDATA[mains leakage voltages]]></category>
		<category><![CDATA[NDA]]></category>
		<category><![CDATA[Non-Disclosure Agreement]]></category>
		<category><![CDATA[non-disclosure agreements]]></category>
		<category><![CDATA[power consumption]]></category>
		<category><![CDATA[Power Management]]></category>
		<category><![CDATA[Real Time Monitoring]]></category>
		<category><![CDATA[RF Telemetry]]></category>
		<category><![CDATA[RF Telemetry Link]]></category>
		<category><![CDATA[transient voltages]]></category>
		<category><![CDATA[Voltage Abuse Protection]]></category>

		<guid isPermaLink="false">http://www.successful.com.au/blog/?p=389</guid>
		<description><![CDATA[EDN Innovation Awards Finalist EDN Innovation Awards This is a bit of a different post.  I&#8217;m pretty stoked that we are finalists in the 2009 EDN Innovation Awards in 2 separate categories.  The award categories are: Best Application Of Analogue Design Best Application Of Design Software Here is a list of the EDN Innovation Awards [...]]]></description>
			<content:encoded><![CDATA[<h1>EDN Innovation Awards Finalist</h1>
<p><img class="size-full wp-image-396 alignleft" title="EDN Innovation Awards Finalist" src="http://www.successful.com.au/blog/wp-content/uploads/2009/08/finalist.png" alt="EDN Innovation Awards" width="169" height="164" /></p>
<dl id="attachment_393" class="wp-caption alignnone" style="width: 520px;">
<dt class="wp-caption-dt"><a href="http://www.electronicsnews.com.au/Awards.aspx"><img class="size-full wp-image-393" title="EDN Innovation Awards" src="http://www.successful.com.au/blog/wp-content/uploads/2009/08/awards-hdr.jpg" alt="EDN Innovation Awards" width="510" height="108" /></a></dt>
<dd class="wp-caption-dd">EDN Innovation Awards</dd>
</dl>
<p>This is a bit of a different post.  I&#8217;m pretty stoked that we are finalists in the <strong><span style="color: #005e20;">2009 EDN Innovation Awards</span></strong> in 2 separate categories.  The award categories are:</p>
<ul>
<li><strong><em><span style="color: #005e20;">Best Application Of Analogue Design</span></em></strong></li>
<li><strong><em><span style="color: #005e20;">Best Application Of Design Software</span></em></strong></li>
</ul>
<p>Here is a list of the <a title="EDN Innovation Awards Finalists" href="http://www.electronicsnews.com.au/Pages/2009-winners.aspx" target="_blank"><strong><span style="color: #005e20;">EDN Innovation Awards Finalists</span></strong></a> and we are in the 2 categories at the bottom of the page dealing with <span style="color: #005e20;"><em><strong>Analogue Design</strong></em></span> and <span style="color: #005e20;"><em><strong>Design Software</strong></em></span>.</p>
<p>So I thought I might let you know a bit more about the project, and also give a public thanks to <em><span style="color: #005e20;">Pablo Varjabedian</span></em> of <a title="Borgtech" href="http://www.borgtech.com.au/" target="_blank"><strong><em><span style="color: #005e20;">Borgtech</span></em></strong></a> for allowing us to put the project forward. We design <strong>Electronics</strong> and <strong>Embedded Software</strong> products primarily for <strong>Australian Electronics Manufacturers</strong>.  Our focus is outstanding <strong>Electronics Design</strong> that will propel them into a world class competitive position while delivering improved profit margins.  <strong><span style="color: #005e20;">Low Cost Electronics Manufacture</span></strong> but with outstanding performance and reliability.</p>
<p>We routinely use non-disclosure agreements, NDAs, with our clients and so don&#8217;t usually get the chance to put our design work forward for awards because we will never disclose a client&#8217;s <strong><em><span style="color: #005e20;"><a title="Intellectual Property" href="http://en.wikipedia.org/wiki/Intellectual_property" target="_blank">Intellectual Property</a>, <a title="IP" href="http://en.wikipedia.org/wiki/Intellectual_property" target="_self">IP</a>, </span></em></strong>without their express permission.  In this case <a title="Borgtech" href="http://www.borgtech.com.au/" target="_blank"><strong><em><span style="color: #005e20;">Borgtech</span></em></strong></a> gave us permission and so we were able.  As you can probably see, there is a real benefit to the client in allowing the award application because they also get recognition for the product.</p>
<p>This is also not an unusual project for us. We have done a lot of outstanding work over the 12 years we have been in operation.  So it is good to have some of it recognised by the Industry we are so passionate about.</p>
<h1>Electronics Design Details</h1>
<p>This project was an example of our <a title="Project Priorities Perspective" href="http://www.successful.com.au/blog/2009/04/17/project-priorities-perspective/" target="_blank"><span style="color: #005e20;"><strong><em>Project Priorities Perspective</em></strong></span></a> in action.  In this case <span style="color: #005e20;"><a title="Performance" href="http://www.successful.com.au/blog/2009/05/15/project-priorities-perspective-performance-and-cost-versus-time/" target="_blank"><strong><em>Performance</em></strong></a></span> was the primary concern with cost coming second and time coming last.  We spent the time to get the performance up and the cost down.  There was an earlier post on one aspect of this project where we looked at <a title="Analogue Electronics" href="http://en.wikipedia.org/wiki/Analogue_electronics" target="_blank"><strong><em>Analogue Electronics</em></strong></a> as a way to improve battery life in a <strong>Low Powered Electronics Data Logger</strong>.</p>
<p>The <strong>Electronics Design</strong> trade offs were:</p>
<ul>
<li>OH&amp;S or Operational Health and Safety &#8211; must protect users from hazardous voltages</li>
<li><strong>Low Power Electronics</strong> &#8211; operates from 3 AA cells for up to 6 months</li>
<li>Convenience &#8211; <strong>Analogue</strong> front end completely <strong>Software Controlled</strong></li>
<li>High Reading Accuracy &#8211; millivolt resolution over +/-10V range with 60dB <strong>Mains Rejection</strong></li>
</ul>
<p>There were many other <strong>Design Requirements</strong> but the above list are the core <strong>Electronics Design Requirements</strong> addressed as part of the award nomination.  Below I will look at each of these in turn.</p>
<h2>Protection From Hazardous Voltages</h2>
<p>Now lets look at the hazardous voltage issue in a little bit more detail.  The voltages in questions were:</p>
<ul>
<li>5000V, 5KV, for 2 seconds</li>
<li>250VAC continuously</li>
</ul>
<p>These come about due to the conduction of <strong>Lightning Strike Transients</strong> or <strong>Mains Leakage Voltages</strong> onto the <strong>Pipelines</strong> and <strong>Storage Tanks</strong> monitored for <strong>Corrosion Protection</strong> status.  The <strong>Analogue Electronics</strong> front end had to provide protection against these cases while meeting all the other <strong>Design Requirements</strong>.  And of course quickly settle so that only the readings during the disturbance were affected.</p>
<p>It also led to the use of an <strong>802.15.4</strong> <strong>RF Telemetry Link</strong> because this meant the monitoring PC could do <strong>Real Time Monitoring</strong> without hazard.  Many other products in this industry use <strong>RS232</strong>, <strong>RS485</strong> or even <strong>I2C</strong> connections for monitoring, configuration and upload of the <strong>Data Logger Records</strong>.  In the case of the <strong><em><span style="color: #005e20;">Borgtech CPL2</span></em></strong> you can put it in place and then configure it and start the logging with no danger to the operator apart from the moment of electrical connection.  And the initial part of the run can be monitored to ensure everything is correctly set up.  Otherwise you could get a months worth of data that was useless.</p>
<p>And finally, because of the power budget and the possibility of the batteries going flat, the <strong>Analogue Electronics</strong> had to survive the above <strong>Abuse Voltages</strong> unpowered!</p>
<h2>Low Power Electronics</h2>
<p>The <strong><em>Borgtech CPL2</em></strong> is a <strong>Battery Operated</strong> device.  There are several reasons for this but the 3 most relevant are that it is:</p>
<ul>
<li><strong>IP68</strong> sealed against water ingress &#8211; it is often installed in a pit that can flood</li>
<li>Must operate remotely from a convenient power source</li>
<li>Protects the operator and PC from <strong>Transient Voltages</strong> since there isn&#8217;t a direct electrical connection</li>
</ul>
<p>But this is also part of the challenge.   For convenience it used off the shelf batteries you can buy at any service station.  But to get 6 months life required a strong <strong>Power Management</strong> approach including powering down anything not in use including the <strong>Analogue</strong> front end.  If you are taking a reading every minute over six months then most of the device is off most of the time.  In this mode the average <strong>Power Consumption</strong> is 37uA.</p>
<h2>Analogue Electronics &#8211; Software Controlled</h2>
<p>The <span style="color: #005e20;"><strong><em><a title="Borgtech" href="http://www.borgtech.com.au/" target="_blank">Borgtech</a> CPL2</em></strong></span> handles both <strong>Current Shunt</strong> and voltage mode readings. The <strong>Analogue Electronics</strong> were designed to have a software selectable full scale range of +/-10VDC and +/-150mVDC so that is could do either mode of operation from the same input. The previous model required a different connection for each of these modes and most other models on the market are the same.</p>
<p>And all of this while maintaining accuracy, abuse voltage protection and low power operation.</p>
<h2>High Reading Accuracy</h2>
<p>By the standards of an <a title="Agilent Multimeter" href="http://www.home.agilent.com/agilent/product.jspx?nid=-536902435.0.00&amp;lc=eng&amp;cc=US" target="_blank"><strong>Agilent</strong></a> (I still want to call them Hewlett Packard) 6.5 digit laboratory multimeter our millivolt, mV, resolution at +/-10VDC isn&#8217;t rocket science.  But for a device with the <strong>Voltage Abuse Protection</strong> and <strong>Low Power Electronics</strong> requirements we had to meet, it is pretty good. Another small twist you might not recognise is that it is +/-10VDC.  This means you can monitor it with the polarity inverted and fix it up later on by inverting all the readings. The previous model was unipolar and so you couldn&#8217;t do this meaning you could have just wasted a month.  And then there is the live monitoring so you can see what the readings look like before leavign the unit to log away in the background.</p>
<h1>EDN Innovation Awards</h1>
<p>On 17 September 2009 we know the final outcome but either way I am pretty happy to have the recognition this project has already received.</p>
<p><em>Ray Keefe has been developing high quality and market leading electronics products in Australia for nearly 30 years.  For more information go to his </em><a title="Ray Keefe at Linked In" onclick="pageTracker._trackPageview('/outbound/article/www.linkedin.com');" href="http://www.linkedin.com/in/raykeefe" target="_blank"><em><span style="color: #b85b5a;">LinkedIn</span></em></a><em> profile.This post is Copyright © Successful Endeavours Pty Ltd.</em></p>
<p style="text-align: center;"><em> </em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.successful.com.au/blog/2009/08/17/2009-edn-innovation-awards-finalist/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>The Future of Low Cost Electronics Manufacture</title>
		<link>http://www.successful.com.au/blog/2009/08/11/the-future-of-low-cost-electronics-manufacture/</link>
		<comments>http://www.successful.com.au/blog/2009/08/11/the-future-of-low-cost-electronics-manufacture/#comments</comments>
		<pubDate>Tue, 11 Aug 2009 06:27:18 +0000</pubDate>
		<dc:creator>Ray Keefe</dc:creator>
				<category><![CDATA[Electronics Manufacture]]></category>
		<category><![CDATA[Project Priorities Perspective]]></category>
		<category><![CDATA[electronics manufacturing cost]]></category>
		<category><![CDATA[hand wiring]]></category>
		<category><![CDATA[handling costs]]></category>
		<category><![CDATA[inkjet printer]]></category>
		<category><![CDATA[Integrated Circuit]]></category>
		<category><![CDATA[loading]]></category>
		<category><![CDATA[low cost electronics manufacture]]></category>
		<category><![CDATA[organic semiconductor]]></category>
		<category><![CDATA[organic semiconductors]]></category>
		<category><![CDATA[panel]]></category>
		<category><![CDATA[PCB]]></category>
		<category><![CDATA[PCBs]]></category>
		<category><![CDATA[printable electronic circuits]]></category>
		<category><![CDATA[printable electronics]]></category>
		<category><![CDATA[Printed Circuit Board]]></category>
		<category><![CDATA[Printed Ciruit Boards]]></category>
		<category><![CDATA[reducing cost]]></category>
		<category><![CDATA[research and development]]></category>
		<category><![CDATA[SMD]]></category>
		<category><![CDATA[SMT]]></category>
		<category><![CDATA[soldering]]></category>
		<category><![CDATA[Surface Mount Device]]></category>
		<category><![CDATA[Surface Mount Technology]]></category>
		<category><![CDATA[valve amplifier]]></category>

		<guid isPermaLink="false">http://www.successful.com.au/blog/?p=364</guid>
		<description><![CDATA[High End Electronics In the early days Electronics was hand wired on a chassis.  Some high end valve amplifiers still do this.  Check out: Hayden Valve Guitar Amplifiers Guitar Player reviews 6 hand wired valve amplifiers Gibson valve amplifiers Fender Vibro-King Custom Torres amplifiers &#8211; build it yourself Marshall Hand Wired Series But of course [...]]]></description>
			<content:encoded><![CDATA[<h1>High End Electronics</h1>
<p>In the early days <strong>Electronics</strong> was hand wired on a chassis.  Some high end valve amplifiers still do this.  Check out:</p>
<p><a title="Hayden Valve Guitar Amplifiers" href="http://www.haydenamps.com/about.php" target="_self">Hayden Valve Guitar Amplifiers</a></p>
<p><a title="Guitar Player review" href="http://www.guitarplayer.com/article/handwired-30-watt/Jun-06/21006" target="_blank">Guitar Player reviews 6 hand wired valve amplifiers</a></p>
<p><a title="Gibson" href="http://www.gibson.com/en-us/Lifestyle/ProductSpotlight/NewModels/One%20Giant%20Leap%20for%20Ampkind_%20Gi/" target="_blank">Gibson valve amplifiers</a></p>
<p><a title="Fender" href="http://www.fender.com/products/search.php?partno=8110000010" target="_blank">Fender Vibro-King Custom</a></p>
<p><a title="Torres Valve Amplifiers" href="http://www.torresamps.com/standard%20amp%20kits.htm" target="_blank">Torres amplifiers &#8211; build it yourself</a></p>
<p><a title="Marshall" href="http://www.blamepro.com/mar/handwired.asp" target="_blank">Marshall Hand Wired Series</a></p>
<p>But of course this isn&#8217;t very compact.  For those who didn&#8217;t know, I am a guitarist and use a <a title="Cavin MTS3212" href="http://www.carvinmuseum.com/decade/images/96-mts3212.html" target="_blank">Carvin MTS3212</a> Master Tube Series tube amplifier which I still enjoy very much.  So when compact isn&#8217;t a priority and cost isn&#8217;t as important as the sound, then you go for this sort of amplifier.  This is another example of the trade-offs we discussed in the <a title="Project Priorities Perspective" href="http://www.successful.com.au/blog/2009/04/17/project-priorities-perspective/" target="_blank"><strong><em>Project Priorities Perspective</em></strong> </a>where it&#8217;s about <a title="Performance" href="http://www.successful.com.au/blog/2009/05/05/project-priorities-perspective-time-and-performance-vs-cost/" target="_blank"><strong><em>Performance</em></strong></a> and Cost is the lowest priority.</p>
<h1>Low Cost Electronics Manufacture</h1>
<p>For <em><strong>Low Cost Electronics Manufacture</strong></em> however, there are other factors that come into play.  You want quality and you want it in a timely manner but the cost has to be low so that you have a decent profit margin.  So hand wiring is out because that is expensive.</p>
<p>Very well designed <strong><em>Printed Circuit Board</em></strong> <a title="PCB" href="http://en.wikipedia.org/wiki/Printed_circuit_board" target="_blank"><strong>PCB</strong></a> can produce excellent results and with the move to <strong><em>Surface Mount Technology</em></strong> <a title="SMT" href="http://en.wikipedia.org/wiki/Surface-mount_technology" target="_blank"><strong>SMT</strong></a> and the <strong><em>Surface Mount Device</em></strong> <a title="surface mount device" href="http://encyclopedia.thefreedictionary.com/Surface+mount+device" target="_blank"><strong>SMD</strong></a> the <strong><em>Component Loading Cost</em></strong> is also reduced as components are put in place by machines and there are no leads or tails to trim after soldering.  So this really helps with <strong><em>Electronics Manufacturing Cost</em></strong> and for at least the next little while will remain the way to go.</p>
<p>Another strategy for reducing cost is to use a modern <strong><em>Integrated Circuit</em></strong> <a title="Integrated Circuit" href="http://en.wikipedia.org/wiki/Integrated_circuit" target="_blank"><strong>IC</strong></a> because you can fit more functions into a more complex device and although it sometimes costs more for that individual device, you can reduce cost by removing other devices, reducing size and reducing loading and handling costs.</p>
<p>Reducing size reduces cost because you get more <strong><em>Printed Circuit Boards</em></strong> on a <strong>Panel</strong> and the cost of a panel in general is roughly the same ragardless of how many <strong><em>PCBs</em></strong> there are on it.</p>
<h1>Emerging Electronics Technologies</h1>
<p>But the future is approaching and there are some very interesting developments under way.  These involve <strong><em>Organic Semiconductors</em></strong> and <strong><em>Printable Electronic Circuits</em></strong>. Check out the following links:</p>
<p><a title="Printable electronics" href="http://www.azonano.com/news.asp?newsID=5593" target="_blank">printable electronics &#8211; a game changer</a></p>
<p><a title="printable electronics" href="http://www.gizmag.com/go/7517/" target="_blank">printable electronics on the rise</a></p>
<p><a title="printable electronics" href="http://www.physorg.com/news6202.html" target="_blank">printable electronics to surprass $7 billion in 2010</a></p>
<p><a title="organic semiconductors" href="http://en.wikipedia.org/wiki/Organic_semiconductor" target="_blank">Organic Semiconductors</a></p>
<p><a title="organic semiconductors" href="http://physicsworld.com/cws/article/print/16480" target="_blank">Organic Semiconductors in a spin</a></p>
<p>I was particularly interested in the idea that the number 1 piece of equipment purchased by universities and <strong><em>Research and Development</em></strong> corporations conducting <strong>Electronics Research</strong> would be an inkjet printer!  And did you notice the convergence between these 2 <strong><em>Low Cost Electronics Technologies</em></strong>?</p>
<p>We are in for interesting times indeed when you can design your circuit and then prototype it on your printer.</p>
<p><em><em>Ray Keefe has been developing high quality and market leading electronics products in Australia for nearly 30 years.  For more information go to his </em><a title="Ray Keefe at Linked In" onclick="pageTracker._trackPageview('/outbound/article/www.linkedin.com');" href="http://www.linkedin.com/in/raykeefe" target="_blank"><em><span style="color: #b85b5a;">LinkedIn</span></em></a><em> profile.  This post is Copyright © Successful Endeavours Pty Ltd.</em></em></p>
<p style="text-align: center;"><em> </em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.successful.com.au/blog/2009/08/11/the-future-of-low-cost-electronics-manufacture/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Project Priorities Perspective &#8211; Performance and Cost versus Time</title>
		<link>http://www.successful.com.au/blog/2009/05/15/project-priorities-perspective-performance-and-cost-versus-time/</link>
		<comments>http://www.successful.com.au/blog/2009/05/15/project-priorities-perspective-performance-and-cost-versus-time/#comments</comments>
		<pubDate>Fri, 15 May 2009 10:36:47 +0000</pubDate>
		<dc:creator>Ray Keefe</dc:creator>
				<category><![CDATA[Electronics Manufacture]]></category>
		<category><![CDATA[Project Priorities Perspective]]></category>
		<category><![CDATA[Electronics Manufacture in Australia]]></category>
		<category><![CDATA[electronics manufacturing]]></category>
		<category><![CDATA[electronics products]]></category>
		<category><![CDATA[less expensive resources]]></category>
		<category><![CDATA[low cost electronics manufacture]]></category>
		<category><![CDATA[specialised expertise]]></category>
		<category><![CDATA[Time]]></category>
		<category><![CDATA[unit cost]]></category>

		<guid isPermaLink="false">http://www.successful.com.au/blog/?p=142</guid>
		<description><![CDATA[This continues our review of the Project Priorities Perspective.  See the Project Priorities Perspective post for the concept behind this and Time and Cost versus Performance and Time and Performance versus Cost for a look at those trade offs and how they affect Low Cost Electronics Manufacture in Australia. Here is a visual view of this set of electronics manufacturing [...]]]></description>
			<content:encoded><![CDATA[<p>This continues our review of the <strong>Project Priorities Perspective</strong>.  See the <a title="Project Priorities Perspective" href="http://www.successful.com.au/blog/2009/04/17/project-priorities-perspective/" target="_blank"><span style="color: #0066cc;">Project Priorities Perspective</span></a> post for the concept behind this and <a title="Time and Cost versus Performance" href="http://www.successful.com.au/blog/2009/05/07/project-priorities-perspective-time-and-cost-versus-performance/" target="_blank">Time and Cost versus Performance</a> and <a title="Time and Performance versus Cost" href="http://www.successful.com.au/blog/2009/05/05/project-priorities-perspective-time-and-performance-vs-cost/" target="_blank">Time and Performance versus Cost</a> for a look at those trade offs and how they affect <strong>Low Cost Electronics Manufacture</strong> in <strong>Australia</strong>.</p>
<p>Here is a visual view of this set of electronics manufacturing trade offs:</p>
<div id="attachment_171" class="wp-caption aligncenter" style="width: 347px"><img class="size-full wp-image-171" title="projectpriorityperspectivelogocb" src="http://www.successful.com.au/blog/wp-content/uploads/2009/05/projectpriorityperspectivelogocb.jpg" alt="projectpriorityperspectivelogocb" width="337" height="261" /><p class="wp-caption-text">Project Priorities Perspective - Performance and Cost versus Time</p></div>
<p>The previous two perspectives looked at cost and performance and their effect on the other priorities.  This one looks at time.  Time is a two edged sword.  It is easy to spend but hard to save.</p>
<p>Here are some of the trade offs that affect time:</p>
<ul>
<li><strong>if you spend more time, you can get the unit cost down or the performance up</strong></li>
<li><strong>if you reduce features or performance you can have it quicker</strong></li>
<li><strong>if you spend more time you can often select and use less expensive resources</strong></li>
<li><strong>to get it quickly, you usually have to buy in either IP or specialised expertise</strong></li>
<li><strong>being later to market usually reduces your profit</strong></li>
<li><strong>being early to market usually increases your profit</strong></li>
<li><strong>doing it right the first time saves time</strong></li>
<li><strong>increasing production automation decreases production cycle time</strong></li>
</ul>
<p>So this is more straight forward than the other perspectives.  To get it faster, you have to either reduce features and performance, or buy in specialist IP or expertise.  And if you can wait longer, then you have more choices for how you go about it and can either increase the features, improve the performance or reduce the cost.</p>
<p>So this wraps up this very cursory look at the <a title="Project Priorities Perspective" href="http://www.successful.com.au/blog/2009/04/17/project-priorities-perspective/" target="_blank"><span style="color: #0066cc;">Project Priorities Perspective</span></a>.  It is a powerful tool that is easy to apply and can dramatically improve your results.  The key, is that it makes you think about the priorities and what outcome you are really after.  At the end of the day, if you aren&#8217;t clear about your outcome, then you don&#8217;t have a basis to plan or succeed.</p>
<p>Next I will be looking at some practical project tips for increasing profits and some surprising ways to improve performance.  And you have probably already worked out that you can apply it more than just Electronics Manufacture in Australia.  You have, haven&#8217;t you?</p>
<p><em>Ray Keefe has been developing high quality and market leading electronics products in Australia for nearly 30 years.  For more information go to his </em><a title="Ray Keefe at Linked In" onclick="pageTracker._trackPageview('/outbound/article/www.linkedin.com');" href="http://www.linkedin.com/in/raykeefe" target="_blank"><em><span style="color: #b85b5a;">LinkedIn</span></em></a><em> profile. This post is Copyright © Successful Endeavours Pty Ltd.</em></p>
<p style="text-align: center;"><em><span style="text-decoration: underline;"><span style="text-decoration: underline;">                                                                                                                          </span></span></em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.successful.com.au/blog/2009/05/15/project-priorities-perspective-performance-and-cost-versus-time/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Project Priorities Perspective &#8211; Time and Cost versus Performance</title>
		<link>http://www.successful.com.au/blog/2009/05/07/project-priorities-perspective-time-and-cost-versus-performance/</link>
		<comments>http://www.successful.com.au/blog/2009/05/07/project-priorities-perspective-time-and-cost-versus-performance/#comments</comments>
		<pubDate>Thu, 07 May 2009 10:07:37 +0000</pubDate>
		<dc:creator>Ray Keefe</dc:creator>
				<category><![CDATA[Electronics Manufacture]]></category>
		<category><![CDATA[Project Priorities Perspective]]></category>
		<category><![CDATA[decrease cost]]></category>
		<category><![CDATA[Feature Creep]]></category>
		<category><![CDATA[low cost electronics]]></category>
		<category><![CDATA[low cost electronics manufacture in Australia]]></category>
		<category><![CDATA[Perfect Information]]></category>
		<category><![CDATA[Perfection is the Poison of Profitability]]></category>
		<category><![CDATA[Product Development]]></category>

		<guid isPermaLink="false">http://www.successful.com.au/blog/?p=140</guid>
		<description><![CDATA[This continues our review of the Project Priorities Perspective.  See the Project Priorities Perspective post for the concept behind this and Time and Performance versus Cost for a look at those trade offs. Here is a visual view of this set of trade offs: Reducing performance can decrease cost and it can also decrease the time it takes [...]]]></description>
			<content:encoded><![CDATA[<p>This continues our review of the <a title="Project Priorities Perspective" href="http://www.successful.com.au/blog/2009/04/17/project-priorities-perspective/" target="_blank">Project Priorities Perspective</a>.  See the <a title="Project Priorities Perspective" href="http://www.successful.com.au/blog/2009/04/17/project-priorities-perspective/" target="_blank"><span style="color: #0066cc;">Project Priorities Perspective</span></a> post for the concept behind this and <a title="Time and Performance versus Cost" href="http://www.successful.com.au/blog/2009/05/05/project-priorities-perspective-time-and-performance-vs-cost/" target="_blank">Time and Performance versus Cost</a> for a look at those trade offs.</p>
<p>Here is a visual view of this set of trade offs:</p>
<div id="attachment_166" class="wp-caption aligncenter" style="width: 310px"><img class="size-full wp-image-166" title="projectpriorityperspectivelogofc1" src="http://www.successful.com.au/blog/wp-content/uploads/2009/05/projectpriorityperspectivelogofc1.jpg" alt="projectpriorityperspectivelogofc1" width="300" height="374" /><p class="wp-caption-text">Project Priorities Perspective - Time and Cost versus Performance</p></div>
<p style="text-align: left;">Reducing performance can decrease cost and it can also decrease the time it takes to achieve an outcome.  This is the classic marketing dilemma.  In general:</p>
<ul>
<li>
<div style="text-align: left;"><strong>More features or more performance increases cost</strong></div>
</li>
<li>
<div style="text-align: left;"><strong>More features or more performance increases time to market</strong></div>
</li>
<li>
<div style="text-align: left;"><strong>Do I know the relationship between these and the market share I can achieve?&#8217;</strong></div>
</li>
<li>
<div style="text-align: left;"><strong>Will a lower featured product at a lower price point give me better overall profit?</strong></div>
</li>
<li>
<div style="text-align: left;"><strong>What features MUST I have as a minimum?</strong></div>
</li>
<li>
<div style="text-align: left;"><strong>What performance MUST I have as a minimum?</strong></div>
</li>
<li>
<div style="text-align: left;"><strong>Will delaying market release reduce my overall profits?</strong></div>
</li>
</ul>
<p style="text-align: left;">Of these, the last is the only one that is usually true. The rest all depend. It comes down to how well you know your customers, your competitors, your market and how good your marketing plan is.</p>
<p>Going for the ultimate product is usually fraught with difficulty, firstly because there is no such thing as <a title="Perfect Information" href="http://en.wikipedia.org/wiki/Perfect_information" target="_blank">Perfect Information</a>,  and secondly because it takes longer; sometimes the equivalent of forever in marketing terms.</p>
<p>Another way of expressing this is <a title="Feature Creep" href="http://en.wikipedia.org/wiki/Feature_creep" target="_blank">Feature Creep</a>.  This problem often exists before the product is even ready for market.  Not knowing the market well, the temptation is to add every possible feature to ensure no objections at the point of sale. It normally results from a lack of confidence in the marketing position rather than a genuine evaluation of the benefit of features to overall profitability.</p>
<p>The final way of looking at the challenge is expressed in an old adage, &#8220;<a title="Perfection is the Poison of Profitability" href="http://www.exponentialprograms.com/internet/blog/perfection-is-the-poison-of-profitability/" target="_blank">Perfection is the Poison of Profitability</a>&#8220;.</p>
<p>So now the trade off exists:</p>
<ul>
<li><strong>Will I add more features in the hope of better sales?</strong></li>
<li><strong>Will I reduce features to decrease cost and time to market?</strong></li>
<li><strong>Which features will I keep and which will go, and why?</strong></li>
</ul>
<p>In my experience, this is one of the most common trade offs that is handled poorly in less successful companies.  And it stems from not knowing their market well enough to be able to position the product.</p>
<p>The answer - know your customers and why they buy from you.  Then you have a basis for deciding. Up until then, it is guesswork.</p>
<p>You might have noticed that although we focus on <a title="low cost electronics" href="http://www.successful.com.au/blog/2009/04/13/electronics-products-in-australia-strategies-to-be-more-profitable/" target="_blank">low cost electronics manufacture in Australia</a>, these principles can be applied to product development in general.</p>
<p>Next we will look at <strong>Time</strong> as the primary priority.</p>
<p><em>Ray Keefe has been developing high quality and market leading electronics products in Australia for nearly 30 years.  For more information go to his </em><a title="Ray Keefe at Linked In" href="http://www.linkedin.com/in/raykeefe" target="_blank"><em>LinkedIn</em></a><em> profile. This post is Copyright © Successful Endeavours Pty Ltd.</em></p>
<p style="text-align: center;"><em><span style="text-decoration: underline;">                                                                                                                            </span></em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.successful.com.au/blog/2009/05/07/project-priorities-perspective-time-and-cost-versus-performance/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Project Priorities Perspective &#8211; Time and Performance versus Cost</title>
		<link>http://www.successful.com.au/blog/2009/05/05/project-priorities-perspective-time-and-performance-vs-cost/</link>
		<comments>http://www.successful.com.au/blog/2009/05/05/project-priorities-perspective-time-and-performance-vs-cost/#comments</comments>
		<pubDate>Mon, 04 May 2009 19:23:07 +0000</pubDate>
		<dc:creator>Ray Keefe</dc:creator>
				<category><![CDATA[Electronics Manufacture]]></category>
		<category><![CDATA[Project Priorities Perspective]]></category>
		<category><![CDATA[right supply chain]]></category>
		<category><![CDATA[right team]]></category>
		<category><![CDATA[right technology]]></category>
		<category><![CDATA[specification]]></category>
		<category><![CDATA[Strategies To Be More Profitable]]></category>
		<category><![CDATA[time to market]]></category>
		<category><![CDATA[Total Cost Of Ownership]]></category>
		<category><![CDATA[trade offs]]></category>

		<guid isPermaLink="false">http://www.successful.com.au/blog/?p=122</guid>
		<description><![CDATA[This continues our review of the Project Priorities Perspective.  See the Project Priorities Perspective post for the concept behind this. This is the easiest of the the trade offs to appreciate.  If you want it quickly and it has to be good, then you are going to pay more for it.  This doesn&#8217;t mean you shouldn&#8217;t shop [...]]]></description>
			<content:encoded><![CDATA[<p>This continues our review of the Project Priorities Perspective.  See the <a title="Project Priorities Perspective" href="http://www.successful.com.au/blog/2009/04/17/project-priorities-perspective/" target="_blank">Project Priorities Perspective</a> post for the concept behind this.</p>
<p>This is the easiest of the the trade offs to appreciate.  If you want it quickly and it has to be good, then you are going to pay more for it.  This doesn&#8217;t mean you shouldn&#8217;t shop around for the best price you can get, it just means that all things being equal, the cost for this trade off will tend to be higher.</p>
<p>There are several ways this pans out:</p>
<ul>
<li><em><strong>you can buy in technology or expertise to save time or improve performance</strong></em></li>
<li><em><strong>you can use less tooling or automation to decrease the time to market</strong></em></li>
<li><em><strong>you can hire more experienced or qualified staff</strong></em></li>
<li><em><strong>you can use a more expensive technology</strong></em></li>
<li><em><strong>you can partner with another business to spread the workload</strong></em></li>
</ul>
<p>There is overlap between these possibilities and several may be required to achieve what you are aiming for.</p>
<p>Here is the visual representation for this scenario:</p>
<div id="attachment_123" class="wp-caption aligncenter" style="width: 332px"><img class="size-full wp-image-123" title="projectpriorityperspectivelogofb" src="http://www.successful.com.au/blog/wp-content/uploads/2009/04/projectpriorityperspectivelogofb.jpg" alt="projectpriorityperspectivelogofb" width="322" height="262" /><p class="wp-caption-text">Project Priorities Perspective</p></div>
<p>Now cost is a complicated trade off because there are many contributors to cost and their impact is felt in different phases of the project.  For instance:</p>
<ul>
<li><em><strong>buying in technologies tends to happen up front and is an early cost contributor</strong></em></li>
<li><em><strong>creation and tooling costs are amortised over the production and so dissipate slowly</strong></em></li>
<li><em><strong>staffing costs also happen up front</strong></em></li>
<li><em><strong>production unit costs can be reduced by tooling and automation</strong></em></li>
<li><em><strong>reducing tooling and automation increases rework</strong></em></li>
<li><em><strong>tooling and automation cost up front and increase time to the first production unit</strong></em></li>
<li><em><strong>short cutting development effort can increase production and warranty costs</strong></em></li>
<li><em><strong>component costs can be reduced with creation or tooling costs</strong></em></li>
<li><em><strong>warranty and maintenance costs happen after production</strong></em></li>
<li><em><strong>maintenance costs can continue on past the selling life of the product</strong></em></li>
<li><em><strong>more expensive technologies can be better proven and so quicker to implement</strong></em></li>
<li><em><strong>more expensive technologies can provide better performance in the same development timeframe</strong></em></li>
<li><em><strong>another business can reduce your time to market but you will share some of the profit with them</strong></em></li>
<li><em><strong>being late to market can eliminate the profit all together, the ultimate cost</strong></em></li>
</ul>
<p>And estimating costs can be difficult.  Particularly downstream costs like market entry delay and ongoing maintenance and support costs.  See our recent post on <a title="Strategies To Be More Profitable" href="http://www.successful.com.au/blog/2009/04/13/electronics-products-in-australia-strategies-to-be-more-profitable/" target="_blank">Strategies To Be More Profitable</a> for a more detailed look at the contributors to the <strong>Total Cost Of Ownership</strong> of a product.</p>
<p>But in general, selecting the right technology, the right team and the right supply chain will give you the greatest likelihood of getting to where you want to be, when you need to be there.</p>
<p>So who are you going to partner with to ensure your next product  comes to market on time and on specification?</p>
<p>Next up we will look at getting to market faster while reducing cost.</p>
<p><em>Ray Keefe has been developing high quality and market leading electronics products in Australia for nearly 30 years.  For more information go to his </em><a title="Ray Keefe at Linked In" href="http://www.linkedin.com/in/raykeefe" target="_blank"><em>LinkedIn</em></a><em> profile. This post is Copyright © Successful Endeavours Pty Ltd.</em></p>
<p style="text-align: center;"><span style="text-decoration: underline;">________________________________________________</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.successful.com.au/blog/2009/05/05/project-priorities-perspective-time-and-performance-vs-cost/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Project Priorities Perspective</title>
		<link>http://www.successful.com.au/blog/2009/04/17/project-priorities-perspective/</link>
		<comments>http://www.successful.com.au/blog/2009/04/17/project-priorities-perspective/#comments</comments>
		<pubDate>Fri, 17 Apr 2009 02:16:43 +0000</pubDate>
		<dc:creator>Ray Keefe</dc:creator>
				<category><![CDATA[Electronics Manufacture]]></category>
		<category><![CDATA[Project Priorities Perspective]]></category>
		<category><![CDATA[amortised development]]></category>
		<category><![CDATA[buy technology]]></category>
		<category><![CDATA[increase performance]]></category>
		<category><![CDATA[niche product opportunity]]></category>
		<category><![CDATA[Performance]]></category>
		<category><![CDATA[save time]]></category>
		<category><![CDATA[Time]]></category>

		<guid isPermaLink="false">http://www.successful.com.au/blog/?p=90</guid>
		<description><![CDATA[This is a tool we use to fine tune projects toward the most commercially successful outcome.  It works by highlighting the 3 competing priorities in every project.  These are: Performance &#8211; how good does the product have to be Cost &#8211; how much will it cost to make Time &#8211; how quickly will it be [...]]]></description>
			<content:encoded><![CDATA[<p>This is a tool we use to fine tune projects toward the most commercially successful outcome.  It works by highlighting the 3 competing priorities in every project.  These are:</p>
<ul>
<li><strong><em>Performance &#8211; how good does the product have to be</em></strong></li>
<li><strong><em>Cost &#8211; how much will it cost to make</em></strong></li>
<li><strong><em>Time &#8211; how quickly will it be available</em></strong></li>
</ul>
<p>The easiest way to understand this is to look at some examples.  Firstly, here is a visual perspective.</p>
<div id="attachment_120" class="wp-caption aligncenter" style="width: 314px"><img class="size-full wp-image-120" title="projectpriorityperspectivelogo0" src="http://www.successful.com.au/blog/wp-content/uploads/2009/04/projectpriorityperspectivelogo0.jpg" alt="projectpriorityperspectivelogo0" width="304" height="262" /><p class="wp-caption-text">Project Priorities Perspective</p></div>
<p>So you can see that each competing priority is at one of the corners of a triangle.  If either Time, Cost or Performance is critical, then you can trade off the other two and get what you want.  Simple.</p>
<p>Life is usually a bit less simple.  The impulse is to say, &#8220;I want maximum performance at the minimum price and I want it now&#8221;.  You can only get this if someone else has already designed it and built it and you are buying it as a mass produced commodity product.  Mobile phones and portable media players are examples of this.  But then they are already doing it and you are a consumer, not a profit maker.</p>
<p>For a niche product opportunity, the point is that no-one else has done it;  or if they have, no-one knows about it.  The difference here is arbitrary since the outcome is the same.  The old saying goes, &#8220;Build a better mousetrap and the world will beat a path to your door&#8221;.  But time and marketing has shown this to be untrue.  If no-one knows, then no-one is beating a path regardless of how good your product is.</p>
<p>So the project will either have to buy technology to save time or increase performance, spend time to save cost or increase performance, or reduce performance to save time or cost.</p>
<p>An alternative view is obtained using a mind map.  Here is one possible way of representing this.</p>
<div id="attachment_116" class="wp-caption aligncenter" style="width: 418px"><img class="size-full wp-image-116" title="projectpriorityperspectivemindmapsmall" src="http://www.successful.com.au/blog/wp-content/uploads/2009/04/projectpriorityperspectivemindmapsmall.jpg" alt="projectpriorityperspectivemindmapsmall" width="408" height="322" /><p class="wp-caption-text">Project Priorities Perspective - Mind Map</p></div>
<p>Over the next three posts I will explore how these trade offs work for each of these scenarios and how the Project Priorities Perspective helps to identify these trade offs.</p>
<p><em>Ray Keefe has been developing high quality and market leading electronics products in Australia for nearly 30 years.  For more information go to his </em><a title="Ray Keefe at Linked In" href="http://www.linkedin.com/in/raykeefe" target="_blank"><em>LinkedIn</em></a><em> profile. This post is Copyright © Successful Endeavours Pty Ltd.</em></p>
<p style="text-align: center;"><span style="text-decoration: underline;">________________________________________________</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.successful.com.au/blog/2009/04/17/project-priorities-perspective/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

