<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Prometheus Fusion Perfection &#187; Electronics</title>
	<atom:link href="http://prometheusfusionperfection.com/category/electronics/feed/" rel="self" type="application/rss+xml" />
	<link>http://prometheusfusionperfection.com</link>
	<description>Developing Clean, Cheap, Open Source Energy with the Bussard Reactor.</description>
	<lastBuildDate>Wed, 15 Feb 2012 20:57:03 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='prometheusfusionperfection.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Prometheus Fusion Perfection &#187; Electronics</title>
		<link>http://prometheusfusionperfection.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://prometheusfusionperfection.com/osd.xml" title="Prometheus Fusion Perfection" />
	<atom:link rel='hub' href='http://prometheusfusionperfection.com/?pushpress=hub'/>
		<item>
		<title>Arduino Controls 30,000 Volts</title>
		<link>http://prometheusfusionperfection.com/2011/09/10/arduino-controls-30000-volts/</link>
		<comments>http://prometheusfusionperfection.com/2011/09/10/arduino-controls-30000-volts/#comments</comments>
		<pubDate>Sun, 11 Sep 2011 01:07:55 +0000</pubDate>
		<dc:creator>Mark Suppes</dc:creator>
				<category><![CDATA[Arduino]]></category>
		<category><![CDATA[Electrical Engineering]]></category>
		<category><![CDATA[Electronics]]></category>
		<category><![CDATA[High Voltage]]></category>
		<category><![CDATA[Instrumentation]]></category>
		<category><![CDATA[Power Supply]]></category>

		<guid isPermaLink="false">http://prometheusfusionperfection.com/?p=3038</guid>
		<description><![CDATA[All photos. Today I made arduino control 30,000 volts. My arduino has 3 channels of analog output 0 to 5 volt. For testing I used this sin wave generator sketch: &#160; &#160; int pwmPin = 9; // output pin supporting PWM void setup(){ pinMode(pwmPin, OUTPUT); // sets the pin as output } void loop(){ float something = millis() [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=prometheusfusionperfection.com&amp;blog=5230661&amp;post=3038&amp;subd=prometheusfusionperfection&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="https://picasaweb.google.com/FAMULUS.fusion/20110910?authuser=0&amp;feat=directlink" target="_blank">All photos</a>.</p>
<p>Today I made <a href="http://en.wikipedia.org/wiki/Arduino" target="_blank">arduino</a> control 30,000 volts.</p>
<p>My arduino has 3 channels of analog output 0 to 5 volt.</p>
<p>For testing I used this sin wave generator sketch:</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<blockquote><p>int pwmPin = 9; // output pin supporting PWM</p>
<p>void setup(){</p>
<p>pinMode(pwmPin, OUTPUT); // sets the pin as output</p>
<p>}</p>
<p>void loop(){</p>
<p>float something = millis() / 1000.0;</p>
<p>int value = 127.5 + 127.5 * sin( something * 2.0 * PI );</p>
<p>analogWrite(pwmPin,value);</p>
<p>}</p>
<p>&nbsp;</p></blockquote>
<p>This generates a lazy 2 Hz sin wave.</p>
<p>But the output is not really analog, it&#8217;s <a href="http://en.wikipedia.org/wiki/Pulse-width_modulation" target="_blank">pulse width modulation</a>(PWM):</p>
<p><img class="alignnone" title="PWM output" src="https://lh5.googleusercontent.com/-5oYFhbaPWbc/TmwE2H4AclI/AAAAAAAANjA/Z05TR2Cxyso/s400/IMG_1866.JPG" alt="" width="400" height="300" /></p>
<p>This <a href="http://provideyourown.com/2011/analogwrite-convert-pwm-to-voltage/" target="_blank">tutorial shows how to smooth out  PWM</a> using a <a href="http://en.wikipedia.org/wiki/Low_pass_filter" target="_blank">low pass filter</a>. My low pass filter used 6kΩ resistor and 4.7 µF @ 45V capacitor.</p>
<p>Here we have the raw PWM output superimposed with the filtered output:</p>
<p><img class="alignnone" title="filtered PWM" src="https://lh5.googleusercontent.com/-OPj_kT8_pVs/TmwEyCNAyII/AAAAAAAANi8/DlRrzjXvccA/s400/IMG_1865.JPG" alt="" width="400" height="300" /></p>
<p>Looks good!</p>
<p>Now we just add the <a href="http://prometheusfusionperfection.com/2011/09/03/my-first-op-amp-circuit/" target="_blank">voltage doubling op-amp circuit I made previously</a>, and BOOM:</p>
<p><img class="alignnone" title="op amp voltage doubler" src="https://lh5.googleusercontent.com/-T1hVEgFc38M/Tmu1hspj6RI/AAAAAAAANhs/IhadLGET9RI/s400/IMG_1860.JPG" alt="" width="400" height="300" /></p>
<p>This shows the source signal and the voltage doubled signal.</p>
<p>Sweet! Now we can control the 30,000 volt glassman power supply.</p>
<p>Here the arduino is sending a slow sin wave to the glassman&#8217;s voltage control:</p>
<table style="width:auto;">
<tbody>
<tr>
<td><a href="https://picasaweb.google.com/lh/photo/HkRtWOxtdqqeaK84gaaUlw?feat=embedwebsite" target="_blank"><img src="https://lh3.googleusercontent.com/-rl5myM46SRw/Tmu_YMWrZ5I/AAAAAAAANiM/K9u9t1OSWoU/s288/MVI_1862.jpg" alt="" width="288" height="216" /></a></td>
</tr>
<tr>
<td style="font-family:arial,sans-serif;font-size:11px;text-align:right;">From <a href="https://picasaweb.google.com/FAMULUS.fusion/20110910?authuser=0&amp;feat=embedwebsite">2011-09-10</a></td>
</tr>
</tbody>
</table>
<p>The Glassman&#8217;s <a href="http://en.wikipedia.org/wiki/Slew_rate" target="_blank">slew rate</a> is really slow without a load.</p>
<p>Here is the setup:</p>
<p><img class="alignnone" title="arduino high voltage setup" src="https://lh4.googleusercontent.com/-yTWKTDmRlEo/Tmu37rCa5XI/AAAAAAAANh0/su9dyq99C_Q/s640/IMG_1861.JPG" alt="" width="640" height="480" /></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/prometheusfusionperfection.wordpress.com/3038/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/prometheusfusionperfection.wordpress.com/3038/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/prometheusfusionperfection.wordpress.com/3038/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/prometheusfusionperfection.wordpress.com/3038/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/prometheusfusionperfection.wordpress.com/3038/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/prometheusfusionperfection.wordpress.com/3038/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/prometheusfusionperfection.wordpress.com/3038/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/prometheusfusionperfection.wordpress.com/3038/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/prometheusfusionperfection.wordpress.com/3038/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/prometheusfusionperfection.wordpress.com/3038/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/prometheusfusionperfection.wordpress.com/3038/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/prometheusfusionperfection.wordpress.com/3038/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/prometheusfusionperfection.wordpress.com/3038/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/prometheusfusionperfection.wordpress.com/3038/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=prometheusfusionperfection.com&amp;blog=5230661&amp;post=3038&amp;subd=prometheusfusionperfection&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://prometheusfusionperfection.com/2011/09/10/arduino-controls-30000-volts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/509664fc2e4cf8454c22717aa9f3a64e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">FAMULUS</media:title>
		</media:content>

		<media:content url="https://lh5.googleusercontent.com/-5oYFhbaPWbc/TmwE2H4AclI/AAAAAAAANjA/Z05TR2Cxyso/s400/IMG_1866.JPG" medium="image">
			<media:title type="html">PWM output</media:title>
		</media:content>

		<media:content url="https://lh5.googleusercontent.com/-OPj_kT8_pVs/TmwEyCNAyII/AAAAAAAANi8/DlRrzjXvccA/s400/IMG_1865.JPG" medium="image">
			<media:title type="html">filtered PWM</media:title>
		</media:content>

		<media:content url="https://lh5.googleusercontent.com/-T1hVEgFc38M/Tmu1hspj6RI/AAAAAAAANhs/IhadLGET9RI/s400/IMG_1860.JPG" medium="image">
			<media:title type="html">op amp voltage doubler</media:title>
		</media:content>

		<media:content url="https://lh3.googleusercontent.com/-rl5myM46SRw/Tmu_YMWrZ5I/AAAAAAAANiM/K9u9t1OSWoU/s288/MVI_1862.jpg" medium="image" />

		<media:content url="https://lh4.googleusercontent.com/-yTWKTDmRlEo/Tmu37rCa5XI/AAAAAAAANh0/su9dyq99C_Q/s640/IMG_1861.JPG" medium="image">
			<media:title type="html">arduino high voltage setup</media:title>
		</media:content>
	</item>
		<item>
		<title>IGBT</title>
		<link>http://prometheusfusionperfection.com/2010/10/08/igbt/</link>
		<comments>http://prometheusfusionperfection.com/2010/10/08/igbt/#comments</comments>
		<pubDate>Fri, 08 Oct 2010 15:35:11 +0000</pubDate>
		<dc:creator>Mark Suppes</dc:creator>
				<category><![CDATA[Electrical Engineering]]></category>
		<category><![CDATA[Electronics]]></category>
		<category><![CDATA[superconductors]]></category>

		<guid isPermaLink="false">http://prometheusfusionperfection.com/?p=2477</guid>
		<description><![CDATA[&#160; All photos. Yesterday I got the IGBT working under computer control. I switched my desk lamp on and off from my computer. The IGBT will be used to switch up to 90 Amps going into the superconducting magnet. Schematic: Here is a video of the win: From 2010-10-07<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=prometheusfusionperfection.com&amp;blog=5230661&amp;post=2477&amp;subd=prometheusfusionperfection&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>&nbsp;</p>
<p><a href="http://picasaweb.google.com/102602129941374127392/20101007#" target="_blank">All photos</a>.</p>
<p>Yesterday I got the <a href="http://en.wikipedia.org/wiki/IGBT" target="_blank">IGBT</a> working under computer control. I switched my desk lamp on and off from my computer. The IGBT will be used to switch up to 90 Amps going into the <a href="http://prometheusfusionperfection.com/2009/10/15/superconducting-magnet-2/" target="_blank">superconducting magnet</a>.</p>
<div class="wp-caption alignnone" style="width: 310px"><img title="IGBT" src="http://lh4.ggpht.com/_eZmKGTaqgB0/TK834j2W0AI/AAAAAAAAFFw/8YneJ2RnRHE/s400/IMG_0110.JPG" alt="" width="300" height="400" /><p class="wp-caption-text">IGBT</p></div>
<p>Schematic:</p>
<p><img class="alignnone" title="schematic" src="http://lh4.ggpht.com/_eZmKGTaqgB0/TK9RI23hjrI/AAAAAAAAFHY/AZzOo8WIPhs/s400/IMG_0116.JPG" alt="" width="400" height="300" /></p>
<p>Here is a video of the win:</p>
<table style="width:auto;">
<tbody>
<tr>
<td><a href="http://picasaweb.google.com/lh/photo/sqp6VJxYDjXdtAPf1VEBuw?feat=embedwebsite"><img src="http://lh3.ggpht.com/_eZmKGTaqgB0/TK52Bt3KgyI/AAAAAAAAFE4/q-EL2Bh-hrM/s800/MVI_0109.jpg" alt="" width="320" height="240" /></a></td>
</tr>
<tr>
<td style="font-family:arial,sans-serif;font-size:11px;text-align:right;">From <a href="http://picasaweb.google.com/102602129941374127392/20101007?feat=embedwebsite">2010-10-07</a></td>
</tr>
</tbody>
</table>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/prometheusfusionperfection.wordpress.com/2477/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/prometheusfusionperfection.wordpress.com/2477/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/prometheusfusionperfection.wordpress.com/2477/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/prometheusfusionperfection.wordpress.com/2477/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/prometheusfusionperfection.wordpress.com/2477/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/prometheusfusionperfection.wordpress.com/2477/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/prometheusfusionperfection.wordpress.com/2477/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/prometheusfusionperfection.wordpress.com/2477/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/prometheusfusionperfection.wordpress.com/2477/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/prometheusfusionperfection.wordpress.com/2477/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/prometheusfusionperfection.wordpress.com/2477/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/prometheusfusionperfection.wordpress.com/2477/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/prometheusfusionperfection.wordpress.com/2477/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/prometheusfusionperfection.wordpress.com/2477/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=prometheusfusionperfection.com&amp;blog=5230661&amp;post=2477&amp;subd=prometheusfusionperfection&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://prometheusfusionperfection.com/2010/10/08/igbt/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/509664fc2e4cf8454c22717aa9f3a64e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">FAMULUS</media:title>
		</media:content>

		<media:content url="http://lh4.ggpht.com/_eZmKGTaqgB0/TK834j2W0AI/AAAAAAAAFFw/8YneJ2RnRHE/s400/IMG_0110.JPG" medium="image">
			<media:title type="html">IGBT</media:title>
		</media:content>

		<media:content url="http://lh4.ggpht.com/_eZmKGTaqgB0/TK9RI23hjrI/AAAAAAAAFHY/AZzOo8WIPhs/s400/IMG_0116.JPG" medium="image">
			<media:title type="html">schematic</media:title>
		</media:content>

		<media:content url="http://lh3.ggpht.com/_eZmKGTaqgB0/TK52Bt3KgyI/AAAAAAAAFE4/q-EL2Bh-hrM/s800/MVI_0109.jpg" medium="image" />
	</item>
		<item>
		<title>Transient Voltage Suppression</title>
		<link>http://prometheusfusionperfection.com/2010/05/04/transient-voltage-suppression/</link>
		<comments>http://prometheusfusionperfection.com/2010/05/04/transient-voltage-suppression/#comments</comments>
		<pubDate>Wed, 05 May 2010 03:01:41 +0000</pubDate>
		<dc:creator>Mark Suppes</dc:creator>
				<category><![CDATA[Electrical Engineering]]></category>
		<category><![CDATA[Electronics]]></category>

		<guid isPermaLink="false">http://prometheusfusionperfection.com/?p=2209</guid>
		<description><![CDATA[When the fusor&#8217;s plasma becomes unstable and sparks, it makes my DAQ crash. This is likely due to transient voltage spikes in the wires, or electromagnetic interference through the air. I&#8217;ve been exchanging emails with Raymond R. about the details of voltage suppression. He suggest using TVS diodes to protect each channel of the DAQ [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=prometheusfusionperfection.com&amp;blog=5230661&amp;post=2209&amp;subd=prometheusfusionperfection&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>When the fusor&#8217;s plasma becomes unstable and sparks, it makes my DAQ crash. This is likely due to transient voltage spikes in the wires, or electromagnetic interference through the air.</p>
<p>I&#8217;ve been exchanging emails with Raymond R. about the details of voltage suppression. He suggest using <a href="http://en.wikipedia.org/wiki/Transient_voltage_suppression_diode" target="_blank">TVS diodes</a> to protect each channel of the DAQ from voltage spikes in the wire by <a href="http://en.wikipedia.org/wiki/Clamper_(electronics)" target="_blank">clamping</a> them just above  the channel&#8217;s operating range.</p>
<p>I&#8217;ve ordered these TVS diodes:</p>
<p><a href="https://www.mouser.com/Search/ProductDetail.aspx?R=1.5KE7.5CAvirtualkey57610000virtualkey576-1.5KE7.5CA">1.5KE7.5CA</a></p>
<p><a href="https://www.mouser.com/Search/ProductDetail.aspx?R=1.5KE12CAvirtualkey51120000virtualkey511-1.5KE12CA">1.5KE12CA</a><a href="https://www.mouser.com/Search/ProductDetail.aspx?R=1.5KE7.5CAvirtualkey57610000virtualkey576-1.5KE7.5CA"></a></p>
<p>Raymond suggests the following:</p>
<blockquote><p>1) Buy the  <a href="http://sine.ni.com/nips/cds/view/p/lang/en/nid/202407" target="_blank">NI USB-6000 Series Prototyping Accessory</a> if you have the money and want to avoid messiness; otherwise you can kludge the wiring. (I&#8217;ve done this).</p>
<p>2) 16 (+ 4,5 spares) of  <a href="http://search.digikey.com/scripts/DkSearch/dksus.dll?Detail&amp;name=LCE10A-ND" target="_blank">LCE10A-ND</a> (I bought corresponding parts at mouser).</p>
<p>3) Go to differential mode on NI USB 6008 (good idea).</p>
<p>4) Connect the TVSs from each input/output line to  frame ground.</p>
<p>5) Take the cable shield and do not connect it at the USB board; connect back to the computer frame.  The TVS diodes go to the cable shield not to the USB box grounds.  Connect the USB grounds together and to the shield ground through a 1 meg resistor (alternately a .1 uf ceramic cap).</p></blockquote>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/prometheusfusionperfection.wordpress.com/2209/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/prometheusfusionperfection.wordpress.com/2209/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/prometheusfusionperfection.wordpress.com/2209/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/prometheusfusionperfection.wordpress.com/2209/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/prometheusfusionperfection.wordpress.com/2209/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/prometheusfusionperfection.wordpress.com/2209/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/prometheusfusionperfection.wordpress.com/2209/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/prometheusfusionperfection.wordpress.com/2209/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/prometheusfusionperfection.wordpress.com/2209/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/prometheusfusionperfection.wordpress.com/2209/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/prometheusfusionperfection.wordpress.com/2209/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/prometheusfusionperfection.wordpress.com/2209/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/prometheusfusionperfection.wordpress.com/2209/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/prometheusfusionperfection.wordpress.com/2209/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=prometheusfusionperfection.com&amp;blog=5230661&amp;post=2209&amp;subd=prometheusfusionperfection&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://prometheusfusionperfection.com/2010/05/04/transient-voltage-suppression/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/509664fc2e4cf8454c22717aa9f3a64e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">FAMULUS</media:title>
		</media:content>
	</item>
		<item>
		<title>Mass Flow Controller Online</title>
		<link>http://prometheusfusionperfection.com/2009/10/21/mass-flow-controller-online/</link>
		<comments>http://prometheusfusionperfection.com/2009/10/21/mass-flow-controller-online/#comments</comments>
		<pubDate>Wed, 21 Oct 2009 23:37:39 +0000</pubDate>
		<dc:creator>Mark Suppes</dc:creator>
				<category><![CDATA[Deuterium]]></category>
		<category><![CDATA[Electronics]]></category>
		<category><![CDATA[Mass Flow Controller]]></category>

		<guid isPermaLink="false">http://prometheusfusionperfection.com/?p=1715</guid>
		<description><![CDATA[Big day. Big win. Big upgrade. Got the mass flow controller online! First we got a +/- 15V power supply on eBay for $30: Real nice Lambda. 3.3 Amp. Wire up the AC side: Solder the pins on the 9 pin Dsub &#8211; data cable on the left, power on the right: The MFC draws [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=prometheusfusionperfection.com&amp;blog=5230661&amp;post=1715&amp;subd=prometheusfusionperfection&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Big day. Big win. Big upgrade.</p>
<p>Got the mass flow controller online!</p>
<p><img class="aligncenter size-full wp-image-1721" title="IMG_4322" src="http://prometheusfusionperfection.files.wordpress.com/2009/10/img_4322.png?w=510" alt="IMG_4322"   /></p>
<p><span id="more-1715"></span></p>
<p>First we got a +/- 15V power supply on eBay for $30:</p>
<p><img class="aligncenter size-full wp-image-1717" title="IMG_4315" src="http://prometheusfusionperfection.files.wordpress.com/2009/10/img_4315.png?w=510" alt="IMG_4315"   />Real nice Lambda. 3.3 Amp.</p>
<p>Wire up the AC side:<img class="aligncenter size-full wp-image-1718" title="IMG_4319" src="http://prometheusfusionperfection.files.wordpress.com/2009/10/img_4319.png?w=510" alt="IMG_4319"   /></p>
<p>Solder the pins on the 9 pin Dsub &#8211; data cable on the left, power on the right:</p>
<p><img class="aligncenter size-full wp-image-1719" title="IMG_4333" src="http://prometheusfusionperfection.files.wordpress.com/2009/10/img_4333.png?w=510" alt="IMG_4333"   /></p>
<p>The MFC draws 60 mA. The MFC&#8217;s pinout:</p>
<p><img class="aligncenter size-full wp-image-1731" title="MFC_pinout" src="http://prometheusfusionperfection.files.wordpress.com/2009/10/mfc_pinout.png?w=510" alt="MFC_pinout"   /></p>
<p>Physically install the MFC:</p>
<p><img class="aligncenter size-full wp-image-1720" title="IMG_4324" src="http://prometheusfusionperfection.files.wordpress.com/2009/10/img_4324.png?w=510" alt="IMG_4324"   /></p>
<p>This required a female to female VCR fitting seen to the right of the MFC. It&#8217;s pretty securely connected with just the VCR. Stuart suggested installing the MFC upside down to reduce the chance of knocking it downward.</p>
<p>Here it is fully installed:</p>
<p><img class="aligncenter size-full wp-image-1724" title="IMG_4338" src="http://prometheusfusionperfection.files.wordpress.com/2009/10/img_4338.png?w=510" alt="IMG_4338"   /></p>
<p>And it works! First try. Here I have adjusted the chamber pressure to even numbers:</p>
<p><img class="aligncenter size-full wp-image-1726" title="IMG_4354" src="http://prometheusfusionperfection.files.wordpress.com/2009/10/img_4354.png?w=510" alt="IMG_4354"   /><img class="aligncenter size-full wp-image-1727" title="IMG_4358" src="http://prometheusfusionperfection.files.wordpress.com/2009/10/img_4358.png?w=510" alt="IMG_4358"   /></p>
<p>When I am running at full flow, the chamber reads 1.9 e-2 torr.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/prometheusfusionperfection.wordpress.com/1715/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/prometheusfusionperfection.wordpress.com/1715/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/prometheusfusionperfection.wordpress.com/1715/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/prometheusfusionperfection.wordpress.com/1715/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/prometheusfusionperfection.wordpress.com/1715/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/prometheusfusionperfection.wordpress.com/1715/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/prometheusfusionperfection.wordpress.com/1715/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/prometheusfusionperfection.wordpress.com/1715/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/prometheusfusionperfection.wordpress.com/1715/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/prometheusfusionperfection.wordpress.com/1715/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/prometheusfusionperfection.wordpress.com/1715/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/prometheusfusionperfection.wordpress.com/1715/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/prometheusfusionperfection.wordpress.com/1715/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/prometheusfusionperfection.wordpress.com/1715/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=prometheusfusionperfection.com&amp;blog=5230661&amp;post=1715&amp;subd=prometheusfusionperfection&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://prometheusfusionperfection.com/2009/10/21/mass-flow-controller-online/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/509664fc2e4cf8454c22717aa9f3a64e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">FAMULUS</media:title>
		</media:content>

		<media:content url="http://prometheusfusionperfection.files.wordpress.com/2009/10/img_4322.png" medium="image">
			<media:title type="html">IMG_4322</media:title>
		</media:content>

		<media:content url="http://prometheusfusionperfection.files.wordpress.com/2009/10/img_4315.png" medium="image">
			<media:title type="html">IMG_4315</media:title>
		</media:content>

		<media:content url="http://prometheusfusionperfection.files.wordpress.com/2009/10/img_4319.png" medium="image">
			<media:title type="html">IMG_4319</media:title>
		</media:content>

		<media:content url="http://prometheusfusionperfection.files.wordpress.com/2009/10/img_4333.png" medium="image">
			<media:title type="html">IMG_4333</media:title>
		</media:content>

		<media:content url="http://prometheusfusionperfection.files.wordpress.com/2009/10/mfc_pinout.png" medium="image">
			<media:title type="html">MFC_pinout</media:title>
		</media:content>

		<media:content url="http://prometheusfusionperfection.files.wordpress.com/2009/10/img_4324.png" medium="image">
			<media:title type="html">IMG_4324</media:title>
		</media:content>

		<media:content url="http://prometheusfusionperfection.files.wordpress.com/2009/10/img_4338.png" medium="image">
			<media:title type="html">IMG_4338</media:title>
		</media:content>

		<media:content url="http://prometheusfusionperfection.files.wordpress.com/2009/10/img_4354.png" medium="image">
			<media:title type="html">IMG_4354</media:title>
		</media:content>

		<media:content url="http://prometheusfusionperfection.files.wordpress.com/2009/10/img_4358.png" medium="image">
			<media:title type="html">IMG_4358</media:title>
		</media:content>
	</item>
		<item>
		<title>Computer Controlled Sorensen Hack</title>
		<link>http://prometheusfusionperfection.com/2009/10/07/computer-controlled-sorensen-hack/</link>
		<comments>http://prometheusfusionperfection.com/2009/10/07/computer-controlled-sorensen-hack/#comments</comments>
		<pubDate>Thu, 08 Oct 2009 01:31:41 +0000</pubDate>
		<dc:creator>Mark Suppes</dc:creator>
				<category><![CDATA[Data Acquisition]]></category>
		<category><![CDATA[Electronics]]></category>
		<category><![CDATA[Power Supply]]></category>

		<guid isPermaLink="false">http://prometheusfusionperfection.com/?p=1631</guid>
		<description><![CDATA[Sweet! Just got the high current (120 Amp) Sorensen power supply working with computer control (to power the superconducting magnet). Here is a video: Details after the jump. The Sorensen SRL 10-100 allows for remote control of voltage and current. For current control you simply remove the jumper between terminals 7 and 8 and install [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=prometheusfusionperfection.com&amp;blog=5230661&amp;post=1631&amp;subd=prometheusfusionperfection&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Sweet! Just got the high current (120 Amp) Sorensen power supply working with computer control (to power the superconducting magnet).</p>
<p>Here is a video:</p>
<div class='embed-vimeo' style='text-align:center;'><iframe src='http://player.vimeo.com/video/6956444' width='400' height='300' frameborder='0'></iframe></div>
<p>Details after the jump.</p>
<p><span id="more-1631"></span>The Sorensen SRL 10-100 allows for remote control of voltage and current. For current control you simply remove the jumper between terminals 7 and 8 and install a resistor to set a current. This model uses 10 ohms per amp &#8211; so a 10 ohm resister would set the current to 1 amp. From the manual:</p>
<blockquote>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">To adapt unit for current mode, resistance programming operation, proceed as follows:</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">a. Close POWER switch, adjust output voltage to desired compliance setting.</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">b. Open POWER switch and rotate CURRENT controls fully counter-clockwise.</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">c. Remove link between terminals TB2—7 and TB2·8, and replace with programming resistor.</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">CAUTION</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">Operating unit with open programming leads or links will result in high output current with possible crossover to voltage mode. If ·step changes in output current are to be made by abrupt resistance alterations, use make·before-break switching.</div>
<blockquote><p>To adapt unit for current mode, resistance programming operation, proceed as follows:</p></blockquote>
<blockquote><p>a. Close POWER switch, adjust output voltage to desired compliance setting.</p></blockquote>
<blockquote><p>b. Open POWER switch and rotate CURRENT controls fully counter-clockwise.</p></blockquote>
<blockquote><p>c. Remove link between terminals TB2—7 and TB2·8, and replace with programming resistor.</p></blockquote>
<blockquote><p>CAUTION</p></blockquote>
<blockquote><p>Operating unit with open programming leads or links will result in high output current with possible crossover to voltage mode. If ·step changes in output current are to be made by abrupt resistance alterations, use make·before-break switching.</p></blockquote>
<blockquote><p><span style="font-family:Helvetica, verdana, arial;white-space:pre-wrap;">d. Run load to terminals TB3·1 and ‘I‘B3·3, observlng polarity. </span></p>
<p><span style="font-family:Helvetica, verdana, arial;white-space:pre-wrap;">e. Set POWER switch to ON. Unit supplies regulated programmed current to the load. </span></p></blockquote>
<blockquote><p><span style="font-family:Helvetica, verdana, arial;white-space:pre-wrap;">NOTE Any rotatlon of the CURRENT control alters the output current. Dangerous output currents may result. The panel current knobs may be removed lf desired. </span></p></blockquote>
<div><span style="font-family:Helvetica, verdana, arial;"><span style="white-space:pre-wrap;"><br />
</span></span></div>
</blockquote>
<p>So easy enough. But I still need some way to change the resistance from the computer. Enter the <a href="http://en.wikipedia.org/wiki/Digital_potentiometer" target="_blank">digital potentiometer</a>.</p>
<p>This is the <a href="http://ww1.microchip.com/downloads/en/DeviceDoc/21945e.pdf" target="_blank">specific digital potentiometer chip</a> (MCP4021 &#8211; 202E/SN) I used:</p>
<p><img class="aligncenter size-full wp-image-1634" title="IMG_4138" src="http://prometheusfusionperfection.files.wordpress.com/2009/10/img_4138.png?w=510" alt="IMG_4138"   /></p>
<p>Pretty tiny. I had to switch my soldering tip:<br />
<img class="aligncenter size-full wp-image-1635" title="IMG_4101" src="http://prometheusfusionperfection.files.wordpress.com/2009/10/img_4101.png?w=510" alt="IMG_4101"   /></p>
<p>Here it is with tiny leads soldered to it:<br />
<img class="aligncenter size-full wp-image-1636" title="IMG_4141" src="http://prometheusfusionperfection.files.wordpress.com/2009/10/img_4141.png?w=510" alt="IMG_4141"   /></p>
<p>Very fragile, so I expoxied it to some prototype PCB:</p>
<p><img class="aligncenter size-full wp-image-1638" title="IMG_4147" src="http://prometheusfusionperfection.files.wordpress.com/2009/10/img_4147.png?w=510" alt="IMG_4147"   /></p>
<p>Schematic:<br />
<img class="aligncenter size-full wp-image-1637" style="display:block;margin-left:auto;margin-right:auto;border:0 initial initial;" title="chip" src="http://prometheusfusionperfection.files.wordpress.com/2009/10/chip.png?w=510" alt="chip"   /></p>
<p>Wired up to the DAQ, and the fluke multimeter set to measure ohms:</p>
<p><img class="aligncenter size-full wp-image-1640" title="IMG_4153" src="http://prometheusfusionperfection.files.wordpress.com/2009/10/img_4153.png?w=510" alt="IMG_4153"   /></p>
<p>Here is an overview of the protocol for wiping the potentiometer:</p>
<blockquote><p>A 2-wire synchronous serial protocol is used to increment or decrement the digital potentiometer’s wiper terminal. The Increment/Decrement (U/D) protocol utilizes the CS and U/D input pins. Both inputs are tolerant of signals up to 12.5V without damaging the device. The CS pin can differenciate between two high-voltage levels, VIH and VIHH. This enables additional commands without requiring additional input pins. The high-voltage commands (VIHH on the CS pin) are similar to the standard commands, except that they control (enable, disable, &#8230;) the state of the non-volatile WiperLock technolgy feature. The simple U/D protocol uses the state of the U/D pin at the falling edge of the CS pin to determine if Increment or Decrement mode is desired. Subsequent rising edges of the U/D pin move the wiper. The wiper value will not underflow or overflow. The new wiper setting can be saved to EEPROM, if desired, by selecting the state of the U/D pin during the rising edge of the CS pin.</p></blockquote>
<p>So I wrote a <a href="http://gist.github.com/204635" target="_blank">small ruby program</a> using the <a href="http://code.google.com/p/daqmxbase-swig/" target="_blank">DAQmx library</a> to slowly ramp up and down.</p>
<p>Short circuit the power supply for current mode operation:</p>
<p><img class="aligncenter size-full wp-image-1641" title="IMG_4155" src="http://prometheusfusionperfection.files.wordpress.com/2009/10/img_4155.png?w=510" alt="IMG_4155"   /></p>
<p>Finally hook up the assembly to the power supply:</p>
<p><img class="aligncenter size-full wp-image-1642" title="IMG_4208" src="http://prometheusfusionperfection.files.wordpress.com/2009/10/img_4208.png?w=510" alt="IMG_4208"   /></p>
<p>SUCCESS as you can see from the video at the top of the post!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/prometheusfusionperfection.wordpress.com/1631/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/prometheusfusionperfection.wordpress.com/1631/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/prometheusfusionperfection.wordpress.com/1631/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/prometheusfusionperfection.wordpress.com/1631/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/prometheusfusionperfection.wordpress.com/1631/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/prometheusfusionperfection.wordpress.com/1631/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/prometheusfusionperfection.wordpress.com/1631/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/prometheusfusionperfection.wordpress.com/1631/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/prometheusfusionperfection.wordpress.com/1631/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/prometheusfusionperfection.wordpress.com/1631/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/prometheusfusionperfection.wordpress.com/1631/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/prometheusfusionperfection.wordpress.com/1631/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/prometheusfusionperfection.wordpress.com/1631/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/prometheusfusionperfection.wordpress.com/1631/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=prometheusfusionperfection.com&amp;blog=5230661&amp;post=1631&amp;subd=prometheusfusionperfection&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://prometheusfusionperfection.com/2009/10/07/computer-controlled-sorensen-hack/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/509664fc2e4cf8454c22717aa9f3a64e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">FAMULUS</media:title>
		</media:content>

		<media:content url="http://prometheusfusionperfection.files.wordpress.com/2009/10/img_4138.png" medium="image">
			<media:title type="html">IMG_4138</media:title>
		</media:content>

		<media:content url="http://prometheusfusionperfection.files.wordpress.com/2009/10/img_4101.png" medium="image">
			<media:title type="html">IMG_4101</media:title>
		</media:content>

		<media:content url="http://prometheusfusionperfection.files.wordpress.com/2009/10/img_4141.png" medium="image">
			<media:title type="html">IMG_4141</media:title>
		</media:content>

		<media:content url="http://prometheusfusionperfection.files.wordpress.com/2009/10/img_4147.png" medium="image">
			<media:title type="html">IMG_4147</media:title>
		</media:content>

		<media:content url="http://prometheusfusionperfection.files.wordpress.com/2009/10/chip.png" medium="image">
			<media:title type="html">chip</media:title>
		</media:content>

		<media:content url="http://prometheusfusionperfection.files.wordpress.com/2009/10/img_4153.png" medium="image">
			<media:title type="html">IMG_4153</media:title>
		</media:content>

		<media:content url="http://prometheusfusionperfection.files.wordpress.com/2009/10/img_4155.png" medium="image">
			<media:title type="html">IMG_4155</media:title>
		</media:content>

		<media:content url="http://prometheusfusionperfection.files.wordpress.com/2009/10/img_4208.png" medium="image">
			<media:title type="html">IMG_4208</media:title>
		</media:content>
	</item>
		<item>
		<title>Reactor Controller / Data Acquisition</title>
		<link>http://prometheusfusionperfection.com/2009/09/17/reactor-controller-data-acquisition/</link>
		<comments>http://prometheusfusionperfection.com/2009/09/17/reactor-controller-data-acquisition/#comments</comments>
		<pubDate>Thu, 17 Sep 2009 14:52:01 +0000</pubDate>
		<dc:creator>Mark Suppes</dc:creator>
				<category><![CDATA[Data Acquisition]]></category>
		<category><![CDATA[Electrical Engineering]]></category>
		<category><![CDATA[Electronics]]></category>
		<category><![CDATA[Ruby]]></category>

		<guid isPermaLink="false">http://prometheusfusionperfection.com/?p=1549</guid>
		<description><![CDATA[Since the pump broke I&#8217;ve been working on the reactor controller / data acquisition system. This will allow us to record: Voltage reading (via voltage dividers and ammeter shunts); low power voltage reading from magnetometer, thermocouple, pressure gauge, etc; on the output side: voltage control of power supplies, servos for needle valves, triggering IGBTs; Our ion gauge has the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=prometheusfusionperfection.com&amp;blog=5230661&amp;post=1549&amp;subd=prometheusfusionperfection&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Since the <a href="http://prometheusfusionperfection.com/2009/09/08/pump-update/" target="_blank">pump broke</a> I&#8217;ve been working on the reactor controller / <a href="http://en.wikipedia.org/wiki/Data_acquisition" target="_blank">data acquisition</a> system. This will allow us to record:</p>
<p>Voltage reading (via voltage dividers and ammeter shunts); low power voltage reading from magnetometer, thermocouple, pressure gauge, etc; on the output side: voltage control of power supplies, servos for needle valves, triggering IGBTs; Our ion gauge has the option of digital over RS485.</p>
<p>I purchased an <a href="http://sine.ni.com/nips/cds/view/p/lang/en/nid/14604" target="_blank">NI USB-6008</a> (<a href="http://www.ni.com/pdf/manuals/371303e.pdf" target="_blank">manual</a>, <a href="http://joule.ni.com/nidu/cds/view/p/id/1341" target="_blank">driver</a>):</p>
<p><img class="aligncenter size-full wp-image-1550" title="IMG_4042" src="http://prometheusfusionperfection.files.wordpress.com/2009/09/img_4042.png?w=510" alt="IMG_4042"   /></p>
<p>Unfortunately the driver for this <a href="http://forums.ni.com/ni/board/message?board.id=250&amp;thread.id=51512" target="_blank">does not work with Snow Leopard</a> yet. I&#8217;ve already upgraded my main laptop to Snow Leopard and I really don&#8217;t want to downgrade to Leopard so I dug up and old G4 running Tiger. Had to swap out a broken CD drive:</p>
<p><img class="aligncenter size-full wp-image-1551" title="IMG_4038" src="http://prometheusfusionperfection.files.wordpress.com/2009/09/img_4038.png?w=510" alt="IMG_4038"   /></p>
<p>This G4 will be a challenge to upgrade to Leopard as it lacks a DVD drive, although it may be possible to <a href="http://forums.macosxhints.com/showthread.php?t=81498" target="_blank">install without DVD</a>.</p>
<p>I was able to install the driver <a href="http://joule.ni.com/nidu/cds/view/p/id/1341" target="_blank">NI-DAQmx_Base</a>. I opened up <a href="http://digital.ni.com/public.nsf/allkb/087EAD5AB69D59A786256F54007BB896" target="_blank">NIdatalogger</a> and performed a successful grab of voltage data on the analog input:</p>
<p><img class="aligncenter size-full wp-image-1552" title="NIdatalogger" src="http://prometheusfusionperfection.files.wordpress.com/2009/09/nidatalogger.png?w=510" alt="NIdatalogger"   /></p>
<p>I would like to get this <a href="http://code.google.com/p/daqmxbase-swig/" target="_blank">ruby adapter</a> working. So far I can&#8217;t get it to build on Tiger (it makes it further on Snow Leopard). I&#8217;m working with the <a href="http://bike-nomad.com/" target="_blank">creator</a> to get it installed and working:</p>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:931px;width:1px;height:1px;">make -f Makefile.swig install</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:931px;width:1px;height:1px;">swig -ruby -Fstandard -I/Applications/National\ Instruments/NI-DAQmx\ Base/includes -o daqmxbase_wrap.c daqmxbase.i</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:931px;width:1px;height:1px;">make: swig: Command not found</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:931px;width:1px;height:1px;">make: *** [daqmxbase_wrap.c] Error 127</div>
<div>make -f Makefile.swig install</div>
<div>swig -ruby -Fstandard -I/Applications/National\ Instruments/NI-DAQmx\ Base/includes -o daqmxbase_wrap.c daqmxbase.i</div>
<div>make: swig: Command not found</div>
<div>make: *** [daqmxbase_wrap.c] Error 127</div>
<div>&#8212;&#8212;&#8212;&#8212;&#8212;-</div>
<div>UPDATE:</div>
<div>I just needed to install <a href="http://en.wikipedia.org/wiki/SWIG" target="_blank">SWIG</a>. Although this took roughly 6 hours! It installed without a problem.</div>
<div>I AM UP AND RUNNING with data acquisition in my native programming language ruby.</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/prometheusfusionperfection.wordpress.com/1549/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/prometheusfusionperfection.wordpress.com/1549/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/prometheusfusionperfection.wordpress.com/1549/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/prometheusfusionperfection.wordpress.com/1549/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/prometheusfusionperfection.wordpress.com/1549/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/prometheusfusionperfection.wordpress.com/1549/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/prometheusfusionperfection.wordpress.com/1549/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/prometheusfusionperfection.wordpress.com/1549/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/prometheusfusionperfection.wordpress.com/1549/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/prometheusfusionperfection.wordpress.com/1549/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/prometheusfusionperfection.wordpress.com/1549/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/prometheusfusionperfection.wordpress.com/1549/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/prometheusfusionperfection.wordpress.com/1549/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/prometheusfusionperfection.wordpress.com/1549/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=prometheusfusionperfection.com&amp;blog=5230661&amp;post=1549&amp;subd=prometheusfusionperfection&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://prometheusfusionperfection.com/2009/09/17/reactor-controller-data-acquisition/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/509664fc2e4cf8454c22717aa9f3a64e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">FAMULUS</media:title>
		</media:content>

		<media:content url="http://prometheusfusionperfection.files.wordpress.com/2009/09/img_4042.png" medium="image">
			<media:title type="html">IMG_4042</media:title>
		</media:content>

		<media:content url="http://prometheusfusionperfection.files.wordpress.com/2009/09/img_4038.png" medium="image">
			<media:title type="html">IMG_4038</media:title>
		</media:content>

		<media:content url="http://prometheusfusionperfection.files.wordpress.com/2009/09/nidatalogger.png" medium="image">
			<media:title type="html">NIdatalogger</media:title>
		</media:content>
	</item>
		<item>
		<title>Superconducting Cable</title>
		<link>http://prometheusfusionperfection.com/2008/12/21/superconducting-cable/</link>
		<comments>http://prometheusfusionperfection.com/2008/12/21/superconducting-cable/#comments</comments>
		<pubDate>Sun, 21 Dec 2008 18:10:50 +0000</pubDate>
		<dc:creator>Mark Suppes</dc:creator>
				<category><![CDATA[Electronics]]></category>
		<category><![CDATA[polywell]]></category>
		<category><![CDATA[superconductors]]></category>

		<guid isPermaLink="false">http://prometheusfusionperfection.wordpress.com/?p=247</guid>
		<description><![CDATA[On Dec 4th 2008, I ordered 20 meters of 4mm YBCO superconducting cable from theva. The lead time is 8 weeks, so it hopefully will arrive at the end of January 2009. This should be more than enough cable to complete several basic tests of superconductor construction. I also want to explore the fabrication of a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=prometheusfusionperfection.com&amp;blog=5230661&amp;post=247&amp;subd=prometheusfusionperfection&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>On Dec 4th 2008, I ordered 20 meters of 4mm <a href="http://en.wikipedia.org/wiki/YBCO" target="_blank">YBCO</a> superconducting cable from <a href="http://www.theva.com/" target="_blank">theva</a>. The lead time is 8 weeks, so it hopefully will arrive at the end of January 2009. This should be more than enough cable to complete several basic tests of superconductor construction. I also want to explore the fabrication of a <a href="http://en.wikipedia.org/wiki/SMES" target="_blank">SMES</a> device for high power, high speed lab power supply. We will need to devise circuits to charge and discharge the superconducting cable, I&#8217;m not seeing much information on this topic on the internets.  And of course this will require <a href="http://en.wikipedia.org/wiki/Liquid_nitrogen" target="_blank">liquid nitrogen</a>. I&#8217;ve always wanted to play with liquid nitrogen.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/prometheusfusionperfection.wordpress.com/247/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/prometheusfusionperfection.wordpress.com/247/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/prometheusfusionperfection.wordpress.com/247/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/prometheusfusionperfection.wordpress.com/247/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/prometheusfusionperfection.wordpress.com/247/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/prometheusfusionperfection.wordpress.com/247/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/prometheusfusionperfection.wordpress.com/247/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/prometheusfusionperfection.wordpress.com/247/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/prometheusfusionperfection.wordpress.com/247/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/prometheusfusionperfection.wordpress.com/247/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/prometheusfusionperfection.wordpress.com/247/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/prometheusfusionperfection.wordpress.com/247/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/prometheusfusionperfection.wordpress.com/247/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/prometheusfusionperfection.wordpress.com/247/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=prometheusfusionperfection.com&amp;blog=5230661&amp;post=247&amp;subd=prometheusfusionperfection&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://prometheusfusionperfection.com/2008/12/21/superconducting-cable/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/509664fc2e4cf8454c22717aa9f3a64e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">FAMULUS</media:title>
		</media:content>
	</item>
		<item>
		<title>NYC RESISTER</title>
		<link>http://prometheusfusionperfection.com/2008/11/13/nyc-resister/</link>
		<comments>http://prometheusfusionperfection.com/2008/11/13/nyc-resister/#comments</comments>
		<pubDate>Thu, 13 Nov 2008 14:42:35 +0000</pubDate>
		<dc:creator>Mark Suppes</dc:creator>
				<category><![CDATA[Community]]></category>
		<category><![CDATA[Electronics]]></category>

		<guid isPermaLink="false">http://prometheusfusionperfection.wordpress.com/?p=116</guid>
		<description><![CDATA[Last night I attended NYC Resister for the first time&#8230; wow. Really impressive. Talented, well equipped, and fun. In 5 hours I went form zero knowledge to a working computer controlled stepper motor using the reprap electrical hardware. I can&#8217;t understate how much more productive and fun it is working with like minded individuals. <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=prometheusfusionperfection.com&amp;blog=5230661&amp;post=116&amp;subd=prometheusfusionperfection&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div>
<p>Last night I attended <a href="http://www.nycresistor.com/" target="_self">NYC Resister</a> for the first time&#8230; wow. Really impressive. Talented, well equipped, and fun. In 5 hours I went form zero knowledge to a working computer controlled stepper motor using the <a href="http://store.rrrf.org/product_info.php?cPath=1&amp;products_id=78" target="_self">reprap electrical hardware</a>. I can&#8217;t understate how much more productive and fun it is working with like minded individuals. </div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/prometheusfusionperfection.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/prometheusfusionperfection.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/prometheusfusionperfection.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/prometheusfusionperfection.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/prometheusfusionperfection.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/prometheusfusionperfection.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/prometheusfusionperfection.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/prometheusfusionperfection.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/prometheusfusionperfection.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/prometheusfusionperfection.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/prometheusfusionperfection.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/prometheusfusionperfection.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/prometheusfusionperfection.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/prometheusfusionperfection.wordpress.com/116/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=prometheusfusionperfection.com&amp;blog=5230661&amp;post=116&amp;subd=prometheusfusionperfection&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://prometheusfusionperfection.com/2008/11/13/nyc-resister/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/509664fc2e4cf8454c22717aa9f3a64e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">FAMULUS</media:title>
		</media:content>
	</item>
	</channel>
</rss>
