<?xml version="1.0" encoding="UTF-8"?>
<rss 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:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:rawvoice="http://www.rawvoice.com/rawvoiceRssModule/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Contesting &amp; SDR</title>
	
	<link>http://www.dh1tw.de</link>
	<description>Amateur Radio on its edge</description>
	<lastBuildDate>Mon, 14 May 2012 22:23:27 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
<!-- podcast_generator="Blubrry PowerPress/2.0.4" -->
	<itunes:summary>Random Episodes on the latest technologies and developments in Ham Radio. This is hot stuff! If you are an old fart and think that Ham Radio is all about soldering, then this Podcast is not for you. 
We talk about Software Defined Radio, Digital Modes, Digital Signal Processing and Software Development!</itunes:summary>
	<itunes:author>DH1TW, Tobias Wellnitz</itunes:author>
	<itunes:explicit>clean</itunes:explicit>
	<itunes:image href="http://www.dh1tw.de/images/Itunes.jpg" />
	<itunes:owner>
		<itunes:name>DH1TW, Tobias Wellnitz</itunes:name>
		<itunes:email>tobias@dh1tw.de</itunes:email>
	</itunes:owner>
	<managingEditor>tobias@dh1tw.de (DH1TW, Tobias Wellnitz)</managingEditor>
	<copyright>Tobias Wellnitz, DH1TW</copyright>
	<itunes:subtitle>Interviews, Techtalk and Chitchat on the latest technologies in Ham Radio</itunes:subtitle>
	<itunes:keywords>Software Defined Radio, SDR, Ham Radio, Amateur Radio, Homebrewing, Electronics, Engineering</itunes:keywords>
	<image>
		<title>Contesting &amp; SDR</title>
		<url>http://www.dh1tw.de/images/podcast.jpg</url>
		<link>http://www.dh1tw.de</link>
	</image>
	<itunes:category text="Technology" />
	<itunes:category text="Education">
		<itunes:category text="Education Technology" />
	</itunes:category>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/dh1tw/Mnut" /><feedburner:info uri="dh1tw/mnut" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Quick &amp; Easy: VPN through SSH Tunnel</title>
		<link>http://feedproxy.google.com/~r/dh1tw/Mnut/~3/vG1eKp631mo/how-to-setup-an-ssh-tunnel-for-a-vp-pptp-vp-server-client-with-amazon-ec2</link>
		<comments>http://www.dh1tw.de/how-to-setup-an-ssh-tunnel-for-a-vp-pptp-vp-server-client-with-amazon-ec2#comments</comments>
		<pubDate>Mon, 14 May 2012 22:22:11 +0000</pubDate>
		<dc:creator>Tobias</dc:creator>
				<category><![CDATA[IT Articles]]></category>
		<category><![CDATA[IT Stuff]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[OSX]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.dh1tw.de/?p=1758</guid>
		<description><![CDATA[In untrusted environments like open WiFi Hotspots you want to tunnel your traffic through an encrypted channel to the internet. Last year Firesheep has proven successfully how dangerous surfing in a public, non encrypted hotspot can be. A Virtual Private Network (VPN) can also be used to access internet services with IP Address restictions (e.g. [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-1777" title="Lock " src="http://www.dh1tw.de/wp-content/uploads/2012/05/iStock_000001056085XSmall1-e1336400044810.jpg" alt="VPN with SSH tunnels" width="103" height="150" />In untrusted environments like open WiFi Hotspots you want to tunnel your traffic through an encrypted channel to the internet. Last year <a href="http://en.wikipedia.org/wiki/Firesheep">Firesheep</a> has proven successfully how dangerous surfing in a public, non encrypted hotspot can be. A Virtual Private Network (VPN) can also be used to access internet services with IP Address restictions (e.g. Video or Music streaming services like Netflix, Hulu or Spotify). In this post I&#8217;ll show you a VPN solution which can be easily set up and used. The tutorial will work with the Windows and Mac OSX.</p>
<p><span id="more-1758"></span></p>
<h2>What&#8217;s the best VPN solution?</h2>
<p>Many roads lead to Rom. Probably, the most common VPN solutions are, SSH-Tunnel, PPTP and OpenVPN. I personally think that OpenVPN is the best option, it&#8217;s robust and secure. However it&#8217;s a bit more difficult to setup. On the other hand, PPTP is easy to setup and if encryption is enabled, it should do the job just as well, at least in non critical infrastructures. Finally the Secure Shell (SSH) can also be used to create an encrypted tunnel between two computers. It uses on-board means, is properly integrated in the Operating System and provides state of the art security.</p>
<h2>What&#8217;s needed?</h2>
<p>In order to establish a VPN connection you need to connect from your local computer to another endpoint, which usually is a server. in another post I&#8217;ve described how easy it is today to <a href="http://www.dh1tw.de/how-to-set-up-an-ubuntu-server-on-amazon-ec2">setup a server in the Amazon EC2 cloud</a>. Another solution could be your home router, in case it&#8217;s using a Mini Linux Kernel (like <a href="http://www.dd-wrt.com/site/index">DD-WRT</a> or <a href="http://www.polarcloud.com/tomato">Tomato</a>).</p>
<h2>SSH tunnel on Mac OSX</h2>
<p>With the help of SSH, a SOCKS proxy can be created with just one command.</p>
<pre class="brush: bash;">
ssh -i &quot;your private SSH key file&quot; -D &quot;port&quot; &quot;username&quot;@&quot;server&quot;
</pre>
<p>example:</p>
<pre class="brush: bash;">
ssh -i mykey.pem -D 8887 tobias@myserver.com
</pre>
<p>That&#8217;s it. Now you just need to route your traffic through the local SOCKS proxy you&#8217;ve just created. Therefore open in Mac OSX:</p>
<p><em>System Preferences &gt; Network &gt; Advanced &gt; Proxies</em></p>
<p><em></em>and enter the data as shown in the picture below (localhost &amp; port).</p>
<p><img class="alignnone size-full wp-image-1779" title="Socks proxy" src="http://www.dh1tw.de/wp-content/uploads/2012/05/proxy1-e1336401457658.png" alt="how to set up a SSH socks proxy Mac OSX" width="600" height="520" /></p>
<h2>SSH tunnel on Windows</h2>
<p>On Windows, I suggest to use an SSH client called <a href="http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html">Putty</a>. Putty comes with a nice Graphical User Interface so you actually don&#8217;t have to use the command line at all. I found a nice tutorial. Instead of copying it, I rather link it. It explains <a href="http://oldsite.precedence.co.uk/nc/putty.html">how to use putty to create an SSH tunnel</a>.</p>
<p>Don&#8217;t forget to register your SSH key within Putty. Otherwise the server might not accept your connection!</p>
<h2>Advanced: DNS through SSH</h2>
<p>In case you are worried about sending your DNS lookups over the local WiFi, you might want to tunnel them as well through the SSH tunnel. It&#8217;s not that easy, because SSH is based on TCP and DNS lookups are UDP. Since this is an advanced topic, I would like to refer to another website which explains in detail <a href="zarb.­org/­~gc/­html/­udp-­in-­ssh-­tunneling.­html">how to tunnel UDP packets through a TCP connection</a>. If you are really concerned about the DNS lookups, I think it might be the right time to think about a true VPN tunnel with PPTP or OpenVPN, both solve this problem.</p>
<p>&nbsp;</p>
<h2>Troubleshooting</h2>
<ul>
<li>In case the tunnel doesn&#8217;t work, try to establish a normal SSH connection</li>
<li>The standard port for SSH is 22</li>
<li>Make sure you have the private key on your client</li>
<li>Check the firewall on the server (Port 22 TCP needs to be open)</li>
<li>Check the Security rules on Amazon EC2 (Port 22 TCP needs to be open)</li>
</ul>
<img src="http://feeds.feedburner.com/~r/dh1tw/Mnut/~4/vG1eKp631mo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.dh1tw.de/how-to-setup-an-ssh-tunnel-for-a-vp-pptp-vp-server-client-with-amazon-ec2/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:thumbnail url="http://www.dh1tw.de/wp-content/uploads/2012/05/iStock_000001056085XSmall1-69x100.jpg" />
		<media:content url="http://www.dh1tw.de/wp-content/uploads/2012/05/iStock_000001056085XSmall1-e1336400044810.jpg" medium="image">
			<media:title type="html">Lock</media:title>
			<media:thumbnail url="http://www.dh1tw.de/wp-content/uploads/2012/05/iStock_000001056085XSmall1-69x100.jpg" />
		</media:content>
		<media:content url="http://www.dh1tw.de/wp-content/uploads/2012/05/proxy1-e1336401457658.png" medium="image">
			<media:title type="html">Socks proxy</media:title>
			<media:thumbnail url="http://www.dh1tw.de/wp-content/uploads/2012/05/proxy1-115x100.png" />
		</media:content>
	<feedburner:origLink>http://www.dh1tw.de/how-to-setup-an-ssh-tunnel-for-a-vp-pptp-vp-server-client-with-amazon-ec2?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=how-to-setup-an-ssh-tunnel-for-a-vp-pptp-vp-server-client-with-amazon-ec2</feedburner:origLink></item>
		<item>
		<title>How to set up an Ubuntu Server on Amazon EC2</title>
		<link>http://feedproxy.google.com/~r/dh1tw/Mnut/~3/l3R4SKyyg5A/how-to-set-up-an-ubuntu-server-on-amazon-ec2</link>
		<comments>http://www.dh1tw.de/how-to-set-up-an-ubuntu-server-on-amazon-ec2#comments</comments>
		<pubDate>Mon, 07 May 2012 13:43:59 +0000</pubDate>
		<dc:creator>Tobias</dc:creator>
				<category><![CDATA[IT Articles]]></category>
		<category><![CDATA[IT Stuff]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.dh1tw.de/?p=1762</guid>
		<description><![CDATA[If you have ever dreamed of having your own server, then I have good news. It has never been easier! In this tutorial I will discuss why you actually want to have your own server, how to setup your own Linux (Ubuntu) Server in less than 10 minutes and how to do this for free! Why would [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-1769" style="margin: 5px;" title="Server Building" src="http://www.dh1tw.de/wp-content/uploads/2012/05/water_company-e1336396292927.jpg" alt="" width="149" height="99" />If you have ever dreamed of having your own server, then I have good news. It has never been easier! In this tutorial I will discuss why you actually want to have your own server, how to setup your own Linux (Ubuntu) Server in less than 10 minutes and how to do this for free!</p>
<p><span id="more-1762"></span></p>
<h2>Why would you need your own server?</h2>
<p>A dedicated server with root access opens a whole new world of applications, even if you are just browsing the internet. Here are some use cases:</p>
<p><strong>1. Webserver</strong> &#8211; If you are hosting a website, it might be a good idea to move it to your own host, where you have full control.</p>
<p><strong>2. Code / file repository</strong> &#8211; If you are going to collaborate with colleagues or friends on a project, it is crucial to have a common file repository. I&#8217;ve been using Subversion (SVN) for a long time, and it has proofed to be a viable partner.</p>
<p><strong>3. Save Internet browsing</strong> &#8211; Is the local WiFi network at your favorite coffeehouse encrypted? If not, I recommend to route all your traffic through a Virtual Private Network (VPN). If you have your own server, it&#8217;s quite easy to set up a VPN.</p>
<p><strong>4. Streaming Netflix</strong> &#8211; Are you outside the United states? No problem &#8211; you can route the traffic from US based server through the VPN connection to your Computer, TV or iPhone, wherever you physically are.</p>
<p><strong>5. Experimentation</strong> &#8211; instead of installing your stuff locally into Virtual Machines, try a server. With Amazon EC2 it&#8217;s faster and more convenient.</p>
<p>These are just a few examples, to give you an idea about what you can do with your own server. Of course, the application of it is just limited to your imagination!</p>
<h2>Why Amazon EC2?</h2>
<p>Amazon has not only emerged from a bookseller to a wholeseller,  it has also created one of the world&#8217;s most powerful IT infrastructures in order to deliver it&#8217;s own content in a fast &amp; responsive way. Fortunately, Amazon has decided to sell these IT services to the public, as well. The are called <a href="http://aws.amazon.com">Amazon Web Services (AWS)</a> and consist by today of a wide variety of different services. For example, all the mp3 files of my podcast are stored and delivered through Amazon Simple Storage Service (S3). Another service is Amazon&#8217;s Elastic Cloud Computer (EC2), which makes it really easy to create a virtual Server. Within a few mouse-clicks you can add almost infinite hard disk space or multiply the amount of CPUs, as you like (and as you can pay) <img src='http://www.dh1tw.de/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p><strong>Best:</strong> During the first year, a microinstance is with 10Gbyte of Harddisk is <strong>completely free!</strong></p>
<p>All you have to do, is to <a href="http://aws.amazon.com">register your own Amazon AWS account</a>.</p>
<h2>Let&#8217;s get started</h2>
<p>After creating your Amazon AWS Account, you need to register for EC2. The management console allows you to select predefined images (AMIs). There exists a wide range of predefined images. Feel free to select your favourite Linux distribution and follow the installation instructions. After less then 5 minutes, your Server instance is configured and ready to lauch:</p>
<p><img class="alignnone size-full wp-image-1764" title="Amazon EC2 Instance configured and ready to be created" src="http://www.dh1tw.de/wp-content/uploads/2012/05/amazon_aws_instance_ready-e1336387188432.jpg" alt="" width="600" height="413" /></p>
<p>A minute later, your Server is up &amp; running. Now you can connect yourself to the server and start configuring it.</p>
<h2>Make it even more convenient</h2>
<p>A more convenient way however is to use an additional service called <a href="http://bitnami.org">Bitnami</a>. Bitnami allows you to preconfigure your server individually through a polished webinterface. Instead of installing the LAMP Stack (Linux, Apache, MySQL, PHP) by hand, Bitnami will do this for you. You just need to decide which kind of Linux Distribution you prefer and what you need on top (e.g. WordPress, Drupal, Joomla, etc). You just configure the server though Bitnami &#8211; it will be hosted directly on the AWS infrastructure, within your AWS Account. Here is a look the configuration looks like:</p>
<p><img class="alignnone size-full wp-image-1765" title="bitnami_configuration_console" src="http://www.dh1tw.de/wp-content/uploads/2012/05/bitnami_configuration_console-e1336387810645.jpg" alt="" width="600" height="286" /></p>
<p>Depending on the size of the instance and hard-disk, bitnami will show you automatically the estimated monthly cost. But again, if you are a new AWS client, a microinstance will be free for one year!</p>
<p>Here is a video which shows you how easy it is to set up your own server:<br />
<iframe src="http://www.youtube.com/embed/HqW-05cAUpc" frameborder="0" width="600" height="420"></iframe></p>
<p>If you are setting up a remote server on Amazon AWS I suggest to use bitnami. The preconfigured images are very good and they provide a useful Wiki which guides you though the first steps. Bitnami will for example register a DNS record for you automatically so that you can access your server directly by SSH or through your webbrowser.</p>
<h2>Costs</h2>
<p>Again, Amazon will give you a Micro Instance (2 cores &amp; 613 MB Ram) one year for free. Uptime of your server is billed hourly. By today, an online hour for the instance costs 0,02 USD (free for the first year).  Incoming traffic is free, outgoing traffic costs a little bit (0,1USD / GByte).</p>
<p>I&#8217;m using the Iphone App called <a href="http://itunes.apple.com/us/app/cloud-services-manager/id314316466?mt=8">Cloud Service Manager</a> to conveniently startup, shutdown or monitor my AWS instances.</p>
<h2>Final words</h2>
<p>It has never been easier to set up your own server. All you need in an <a href="http://aws.amazon.com">Amazon AWS account</a> and your server will be up and running within a few minutes. There is plenty of good wikis and help available, however some basic Linux administration skills won&#8217;t harm!</p>
<img src="http://feeds.feedburner.com/~r/dh1tw/Mnut/~4/l3R4SKyyg5A" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.dh1tw.de/how-to-set-up-an-ubuntu-server-on-amazon-ec2/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:thumbnail url="http://www.dh1tw.de/wp-content/uploads/2012/05/water_company-150x100.jpg" />
		<media:content url="http://www.dh1tw.de/wp-content/uploads/2012/05/water_company-e1336396292927.jpg" medium="image">
			<media:title type="html">Server Building</media:title>
			<media:thumbnail url="http://www.dh1tw.de/wp-content/uploads/2012/05/water_company-150x100.jpg" />
		</media:content>
		<media:content url="http://www.dh1tw.de/wp-content/uploads/2012/05/amazon_aws_instance_ready-e1336387188432.jpg" medium="image">
			<media:title type="html">Amazon EC2 Instance configured and ready to be created</media:title>
			<media:thumbnail url="http://www.dh1tw.de/wp-content/uploads/2012/05/amazon_aws_instance_ready-145x100.jpg" />
		</media:content>
		<media:content url="http://www.dh1tw.de/wp-content/uploads/2012/05/bitnami_configuration_console-e1336387810645.jpg" medium="image">
			<media:title type="html">bitnami_configuration_console</media:title>
			<media:thumbnail url="http://www.dh1tw.de/wp-content/uploads/2012/05/bitnami_configuration_console-150x71.jpg" />
		</media:content>
	<feedburner:origLink>http://www.dh1tw.de/how-to-set-up-an-ubuntu-server-on-amazon-ec2?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=how-to-set-up-an-ubuntu-server-on-amazon-ec2</feedburner:origLink></item>
		<item>
		<title>Testing-Device for GU74b / 4CX800 tubes</title>
		<link>http://feedproxy.google.com/~r/dh1tw/Mnut/~3/QgnpqyGhMSE/testing-device-for-gu74b-4cx800-tubes</link>
		<comments>http://www.dh1tw.de/testing-device-for-gu74b-4cx800-tubes#comments</comments>
		<pubDate>Wed, 14 Mar 2012 16:31:05 +0000</pubDate>
		<dc:creator>Tobias</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[4cx800]]></category>
		<category><![CDATA[amplifier]]></category>
		<category><![CDATA[gu74b]]></category>
		<category><![CDATA[hardware]]></category>

		<guid isPermaLink="false">http://www.dh1tw.de/?p=1747</guid>
		<description><![CDATA[It seems that the exchange of GU74b / 4CX800 tubes in Amplifiers like Alpha91b, Acom2000A and Acom1000 is of more interested than originally expected. In my post on how to replace the tubes of an Alpha91b I explained in depth why it is so important to recondition, to &#8220;getter&#8221;, the tubes at least 24 hours [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-1751" style="margin: 5px;" title="gu74b tube" src="http://www.dh1tw.de/wp-content/uploads/2012/03/DSC_01461-e1331742567867.jpg" alt="" width="120" height="93" />It seems that the exchange of GU74b / 4CX800 tubes in Amplifiers like Alpha91b, Acom2000A and Acom1000 is of more interested than originally expected. In my post on <a href="http://www.dh1tw.de/how-to-exchange-the-gu74b-4cx800-tubes-on-your-alpha91b-alpha99-amplifier">how to replace the tubes of an Alpha91b</a> I explained in depth why it is so important to recondition, to &#8220;getter&#8221;, the tubes at least 24 hours before any other voltage can be applied. Often amplifiers apply automatically HV and grid voltages which makes them unsuited for the gettering process. My Buddy <a href="http://qrz.com/db/dk4yj">Matthias, DK4YJ</a> built recently a simple device which makes the heating and testing of tubes much more convenient.</p>
<p><span id="more-1747"></span><img class="alignnone size-full wp-image-1750" title="Heater for GU74b tubes" src="http://www.dh1tw.de/wp-content/uploads/2012/03/DSC_0146-e1331741847776.jpg" alt="How to getter a GU74b tube" width="600" height="401" /></p>
<p>All is needed is a plastic box, one or two tube sockets, a few plugs and a fan</p>
<p><img class="alignnone size-full wp-image-1748" title="Inspecting GU74b " src="http://www.dh1tw.de/wp-content/uploads/2012/03/DSC_0145-e1331741963713.jpg" alt="" width="600" height="401" /></p>
<p>The plugs on the front allow a good access to the individual pins of the tubes. This makes troubleshooting more comfortable.</p>
<p><img class="alignnone size-full wp-image-1749" title="cooling the GU74b / 4CX800 testing device" src="http://www.dh1tw.de/wp-content/uploads/2012/03/DSC_0144-e1331742101453.jpg" alt="a view on the cooling the GU74b / 4CX800 testing device" width="600" height="401" /></p>
<p>When NOS tubes are reconditioned, heating voltage is applied for a period of at least 24 hours. Even if just a few watts of heat are produced, a constant airflow ensures that the tubes stay cool. Any 12V fan will do the job.</p>
<p>Thanks to Matthias, DK4YJ for sharing this pictures.</p>
<img src="http://feeds.feedburner.com/~r/dh1tw/Mnut/~4/QgnpqyGhMSE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.dh1tw.de/testing-device-for-gu74b-4cx800-tubes/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:thumbnail url="http://www.dh1tw.de/wp-content/uploads/2012/03/DSC_01461-e1331742543673-128x100.jpg" />
		<media:content url="http://www.dh1tw.de/wp-content/uploads/2012/03/DSC_01461-e1331742567867.jpg" medium="image">
			<media:title type="html">gu74b tube</media:title>
			<media:thumbnail url="http://www.dh1tw.de/wp-content/uploads/2012/03/DSC_01461-e1331742543673-128x100.jpg" />
		</media:content>
		<media:content url="http://www.dh1tw.de/wp-content/uploads/2012/03/DSC_0146-e1331741847776.jpg" medium="image">
			<media:title type="html">Heater for GU74b tubes</media:title>
			<media:thumbnail url="http://www.dh1tw.de/wp-content/uploads/2012/03/DSC_0146-150x100.jpg" />
		</media:content>
		<media:content url="http://www.dh1tw.de/wp-content/uploads/2012/03/DSC_0145-e1331741963713.jpg" medium="image">
			<media:title type="html">Inspecting GU74b</media:title>
			<media:thumbnail url="http://www.dh1tw.de/wp-content/uploads/2012/03/DSC_0145-150x100.jpg" />
		</media:content>
		<media:content url="http://www.dh1tw.de/wp-content/uploads/2012/03/DSC_0144-e1331742101453.jpg" medium="image">
			<media:title type="html">cooling the GU74b / 4CX800 testing device</media:title>
			<media:thumbnail url="http://www.dh1tw.de/wp-content/uploads/2012/03/DSC_0144-150x100.jpg" />
		</media:content>
	<feedburner:origLink>http://www.dh1tw.de/testing-device-for-gu74b-4cx800-tubes?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=testing-device-for-gu74b-4cx800-tubes</feedburner:origLink></item>
		<item>
		<title>Customs break my tubes (4CX800 / GU74b)</title>
		<link>http://feedproxy.google.com/~r/dh1tw/Mnut/~3/uaJITCNLrbY/customs-break-my-tubes-4cx800-gu74b</link>
		<comments>http://www.dh1tw.de/customs-break-my-tubes-4cx800-gu74b#comments</comments>
		<pubDate>Thu, 01 Mar 2012 00:04:51 +0000</pubDate>
		<dc:creator>Tobias</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[amplifier]]></category>

		<guid isPermaLink="false">http://www.dh1tw.de/?p=1733</guid>
		<description><![CDATA[A friend of mine recently was very generous and sent me four used 4CX800 / GU74b which he didn&#8217;t need anymore. The tubes where traveling a while and through several non-EU countries. Today the parcel finally arrived. I have already heard wild stories about customs, but I didn&#8217;t expect this: Customs drilled holes in two [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-1742" title="Fragile box" src="http://www.dh1tw.de/wp-content/uploads/2012/03/iStock_000003332138XSmall-e1330559549981.jpg" alt="" width="99" height="66" />A friend of mine recently was very generous and sent me four used 4CX800 / GU74b which he didn&#8217;t need anymore. The tubes where traveling a while and through several non-EU countries. Today the parcel finally arrived. I have already heard wild stories about customs, but I didn&#8217;t expect this: <strong>Customs drilled holes in two tubes and later opened them with a saw. Checkout the pictures.</strong></p>
<p><span id="more-1733"></span></p>
<p>Can you believe how mad I am?</p>
<p><img class="alignnone size-full wp-image-1734" title="_IGP8130" src="http://www.dh1tw.de/wp-content/uploads/2012/03/IGP8130-e1330559615932.jpg" alt="" width="600" height="398" /></p>
<p>Above, both damaged tubes</p>
<p><img class="alignnone size-full wp-image-1736" title="damaged GU74b / 4CX800" src="http://www.dh1tw.de/wp-content/uploads/2012/03/IGP8132-e1330559708100.jpg" alt="" width="600" height="398" /></p>
<p>Customs drilled a hole in the heat sink and thereby also damaged severely the inners</p>
<p><img class="alignnone size-full wp-image-1735" title="broken GU74b - opened by force" src="http://www.dh1tw.de/wp-content/uploads/2012/03/IGP8131-e1330559836514.jpg" alt="" width="600" height="398" /></p>
<p>This is the other tube. Here they tried to open the tube with some kind of screwdriver or plumber</p>
<p><img class="alignnone size-full wp-image-1739" title="GU74b Anode" src="http://www.dh1tw.de/wp-content/uploads/2012/03/IGP8138-e1330559993448.jpg" alt="" width="600" height="398" /></p>
<p>The anodes of the broken 4CX800 tubes; note: you see the damages from drilling on the left anode</p>
<p><img class="alignnone size-full wp-image-1741" title="4CX800 ceramic insulator" src="http://www.dh1tw.de/wp-content/uploads/2012/03/IGP8141-e1330560078657.jpg" alt="" width="600" height="398" /></p>
<p>A look on the ceramic insulator and the anode heatsink</p>
<p><img class="alignnone size-full wp-image-1740" title="GU74b heat sink - inner view" src="http://www.dh1tw.de/wp-content/uploads/2012/03/IGP8140-e1330560180807.jpg" alt="" width="600" height="398" /></p>
<p>And finally another look into the heatsink</p>
<p>Did I already mention how angry I am about these incompetent customs officers????</p>
<img src="http://feeds.feedburner.com/~r/dh1tw/Mnut/~4/uaJITCNLrbY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.dh1tw.de/customs-break-my-tubes-4cx800-gu74b/feed</wfw:commentRss>
		<slash:comments>11</slash:comments>
	
		<media:thumbnail url="http://www.dh1tw.de/wp-content/uploads/2012/03/iStock_000003332138XSmall-150x100.jpg" />
		<media:content url="http://www.dh1tw.de/wp-content/uploads/2012/03/iStock_000003332138XSmall-e1330559549981.jpg" medium="image">
			<media:title type="html">Fragile box</media:title>
			<media:thumbnail url="http://www.dh1tw.de/wp-content/uploads/2012/03/iStock_000003332138XSmall-150x100.jpg" />
		</media:content>
		<media:content url="http://www.dh1tw.de/wp-content/uploads/2012/03/IGP8130-e1330559615932.jpg" medium="image">
			<media:title type="html">_IGP8130</media:title>
			<media:thumbnail url="http://www.dh1tw.de/wp-content/uploads/2012/03/IGP8130-150x100.jpg" />
		</media:content>
		<media:content url="http://www.dh1tw.de/wp-content/uploads/2012/03/IGP8132-e1330559708100.jpg" medium="image">
			<media:title type="html">damaged GU74b / 4CX800</media:title>
			<media:thumbnail url="http://www.dh1tw.de/wp-content/uploads/2012/03/IGP8132-150x100.jpg" />
		</media:content>
		<media:content url="http://www.dh1tw.de/wp-content/uploads/2012/03/IGP8131-e1330559836514.jpg" medium="image">
			<media:title type="html">broken GU74b – opened by force</media:title>
			<media:thumbnail url="http://www.dh1tw.de/wp-content/uploads/2012/03/IGP8131-150x100.jpg" />
		</media:content>
		<media:content url="http://www.dh1tw.de/wp-content/uploads/2012/03/IGP8138-e1330559993448.jpg" medium="image">
			<media:title type="html">GU74b Anode</media:title>
			<media:thumbnail url="http://www.dh1tw.de/wp-content/uploads/2012/03/IGP8138-150x100.jpg" />
		</media:content>
		<media:content url="http://www.dh1tw.de/wp-content/uploads/2012/03/IGP8141-e1330560078657.jpg" medium="image">
			<media:title type="html">4CX800 ceramic insulator</media:title>
			<media:thumbnail url="http://www.dh1tw.de/wp-content/uploads/2012/03/IGP8141-150x100.jpg" />
		</media:content>
		<media:content url="http://www.dh1tw.de/wp-content/uploads/2012/03/IGP8140-e1330560180807.jpg" medium="image">
			<media:title type="html">GU74b heat sink – inner view</media:title>
			<media:thumbnail url="http://www.dh1tw.de/wp-content/uploads/2012/03/IGP8140-150x100.jpg" />
		</media:content>
	<feedburner:origLink>http://www.dh1tw.de/customs-break-my-tubes-4cx800-gu74b?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=customs-break-my-tubes-4cx800-gu74b</feedburner:origLink></item>
		<item>
		<title>Flex Control – Interviewing the Developer</title>
		<link>http://feedproxy.google.com/~r/dh1tw/Mnut/~3/6WUoVwSNXbY/flex-control-interviewing-the-developer</link>
		<comments>http://www.dh1tw.de/flex-control-interviewing-the-developer#comments</comments>
		<pubDate>Fri, 24 Feb 2012 11:32:41 +0000</pubDate>
		<dc:creator>Tobias</dc:creator>
				<category><![CDATA[Contesting]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[My Podcast]]></category>
		<category><![CDATA[Software Defined Radio]]></category>
		<category><![CDATA[FlexRadio]]></category>
		<category><![CDATA[PowerSDR]]></category>

		<guid isPermaLink="false">http://www.dh1tw.de/?p=1704</guid>
		<description><![CDATA[In this interview K6TU reveals the ideas behind FlexRadio System's Flex-Control and describes in detail the steps from the design to the industrial production. ]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;"><img class="size-full wp-image-1705 alignleft" style="margin: 5px;" title="FlexControl " src="http://www.dh1tw.de/wp-content/uploads/2012/02/FlexControl_420x356-e1329746613820.jpg" alt="Image of FlexRadio Flexcontrol" width="100" height="84" />I&#8217;m a believer in true knob and button radio interfaces&#8230; and I&#8217;m not the only one. A small team, formed around Stu, K6TU developed the Contest Knob, which is now today manufactured by FlexRadio Systems under the name FlexControl. In this interview K6TU reveals the ideas behind the Flex-Control and describes in detail the steps from the design to the industrial production. Download the MP3 or subscribe in iTunes to my podcast!</p>
<p><span id="more-1704"></span></p>
<h1>Listen or Download the Interview</h1>
<p></p>
<h1>Subscribe in iTunes</h1>
<p>Please consider subscribing to my Podcast feed in <strong>Apple <a href="http://itunes.apple.com/podcast/contesting-sdr/id398286126#" target="_blank">iTunes</a></strong></p>
<p><a href="http://itunes.apple.com/podcast/contesting-sdr/id398286126#" target="_blank"><img class="alignnone size-full wp-image-1010" title="itunes" src="http://www.dh1tw.de/wp-content/uploads/2010/10/itunes.jpg" alt="" width="123" height="44" /></a></p>
<p>Or subscribe to my <a href="http://www.dh1tw.de/feed/podcast" target="_blank">podcast feed</a> in any other Media Player</p>
<h1>Shownotes</h1>
<ul>
<li><a href="http://1vc.typepad.com/ethergeist/2011/03/origins-refinement-of-the-contest-knob-i.html">Stu, K6TU&#8217;s Blog</a> with three detailed articles on the Contest-Knob</li>
<li><a href="http://k6td.net/">Kevin, K6TD&#8217;s</a> website</li>
<li>K5FR&#8217;s <a href="http://k5fr.com/DDUtil.htm">DDUtil</a> &#8211; Interfacing FlexRadio Hardware</li>
<li><a href="http://cart.flexradio.com/KNB-FlexControl-USB-Controlled-Tuning-Knob_p_833.html">FlexControl </a>product website at FlexRadio Systems Website</li>
<li><a href="http://www.microchip.com/stellent/idcplg?IdcService=SS_GET_PAGE&amp;nodeId=1406&amp;dDocName=en019469&amp;part=SW007002">Microchip MPLab </a>Integrated Development Enviroment for PIC Microcontroller</li>
</ul>
<h1>Interview Transcription</h1>
<p><span style="color: #0000ff;"><strong>DH1TW:</strong> Hi everyone, this is Tobias, Delta Hotel One Tango Whiskey, with another episode of my SDR, Software Defined Radio Podcast. This is the place where interesting fellow hams come to talk about their projects, share their experience and knowledge with the goal to motivate you and to help you get started with your own project- even today.</span></p>
<p><span style="color: #0000ff;"> Over the past two years, I was working on PowerSDR-UI, a modified version of PowerSDR with the aim to improve the haptic- let’s say, the real knob user interface of FlexRadio’s SDRs. The way I took was to integrate an off-the-shelf DJ console which is available for little money but provides a lot of knobs and buttons. Almost at the same time, Stu, Kilo Six Tango Uniform, was working independently on a similar solution: The contest knob which is now manufactured and sold by FlexRadio Systems and in the name FlexControl. Today, Stu is here to talk about the FlexControl and the path he went from the first idea to an industrial manufactured product. So, without further ado, welcome, Stu.</span></p>
<p><strong>K6TU:</strong> Hi, Tobias, How are you?</p>
<p><span style="color: #0000ff;"><strong>DH1TW:</strong> Thanks, I’m fine. Thanks for coming here on the show tonight. Before we get started, I always ask the same question to all of my interviewees: Who are you and how did you get started in Ham Radio?</span></p>
<p><strong>K6TU:</strong> Well, I’m, Stu Phillips K6TU, originally from the UK, where I held my first call sign back in 1973. I got in to Ham Radio as an SWL many, many years earlier actually. And, it’s been a hobby that has stuck with me. I was always fascinated by propagation, being able to talk to people in other countries and just the technical intricacies and, the opportunity to experiment with Ham Radio.</p>
<p><span style="color: #0000ff;"> <strong>DH1TW:</strong> Good. Do you have any technical background? Any engineering degree?</span></p>
<p><strong>K6TU:</strong> Yes, I am electrical engineer by training and I spent the bulk of my operating career actually running software development for organizations. The last one of those I actually ran all of the software development for CISCO Systems up until 1997.</p>
<p><span style="color: #0000ff;"> <strong>DH1TW:</strong> Cool. So, then a few years ago FlexRadio Systems brought out their contest. Well, actually, not only contest radio but the Software Defined Radio platform and there was something missing. We had to operate the radio with a mouse and the keyboard but somehow it wasn’t the same feeling than operating a radio with the knobs. And, tell us a little bit about how you came up with the idea to develop the Contest-Knob.</span></p>
<p><strong>K6TU:</strong> Okay, sure. Uh, so, in the middle of 2009, I decided to upgrade my station. I had had a Kenwood Radio for many years and had found that I was hitting some of the limitations. Particularly, living here in Silicon Valley, it’s a pretty high RF environment, particularly in contests and the Kenwood would- the receiver in the TS-2000 would often be limiting for me. So I looked at a couple of different choices and decided actually to buy a FlexRadio 5000, which I did. And, one of the things that I had started doing- I had always been an active contester but I would say more on the sort of casual basis. And, a couple of my really good friends here in the Silicon Valley that encouraged me to take contesting a little more seriously and so that I began to do. So I operated one contest. Actually, the first contest I operated, I think with the Flex-5000 was the California QSO Party in 2009. And, quickly found that there was a real workflow issue.</p>
<p>So, I use Write Log as my contest logging software and obviously if you’re trying to work a lot of stations quickly you really want to keep all of the window focus on the logging software, and really not have to move the mouse outside of the logging window. And so, at that time, I had no other way of tuning PowerSDR other than using the mouse. And so, I was obviously taking the window focus backwards and forwards between PowerSDR and Write Log. And, several times found myself typing into, typing for example a pull sign into PowerSDR. Which, if you have the keyboard shortcuts enabled you can suddenly find yourself 10 MHz off frequency and whoever you were working you just lost.</p>
<p>And so, I decided that it really was critical to be able to have a way of separately tuning the radio independent of the mouse. And so, the window focus could remain solely on Write Log. So, that was the initial idea if you will. It actually developed a tuning knob some years earlier around a very expensive optical shafting coder. I’ve operated a remote control station for actually pretty close to the last 10 years now. And so, I was well familiar with what was needed but I decided that there was a much tighter integration needed on the PC side than I had done in the past. So that really was, if you will, the genesis of why I decided to build what ultimately became the FlexControl.</p>
<p><span style="color: #0000ff;"> <strong>DH1TW:</strong> Considering the user interface of a classical radio we have a lot of knobs. We have apart from the main frequency dial, we have volume, we have RF Power, we have the RIT, we have XIT, Noise Blanker, whatever. If I’m looking onto the FlexControl, it’s just basically one tuning knob and a few buttons. Was this always a design criteria just to have just one know or did you also play with the idea to include more knobs, more functionality?</span></p>
<p><strong>K6TU:</strong> Well, from the very beginning, I wanted to keep it simple. I was very focused on trying to build something with a cost of goods, built of materials- if you will- that was something that could be economically manufactured if that ever became of interest. Being a product development guy by background, I’ve always approached these things, as you want the minimum in the product that you can sensibly use. And so the original concept when I started looking at contest operation is there’s really two different modes. There’s what a lot of contesters call a “run” mode, which is when you are running on a single frequency, and you’re calling CQ and people come to work you. The opposite is “search and pounce” where you are tuning up and down the bend looking for multipliers or people that you haven’t worked.</p>
<p>So, I decided from the beginning that I wanted to be able to control a minimum number of functions using the knob. I actually enlisted the input from a very good friend of mine, Kevin, Kilo Six Tango Delta. Kevin has a lot of experience in contesting and in fact was the one who had persuaded me or encouraged me to take contesting more seriously. So, in the beginning we had focused really around a knob with a center push switch on it. And of using that pushing switch really as the way of being able to control backwards and forwards between different functions. So, we wound up with this initial specification that was jus the knob with the switch on the shaft encoder that senses the rotation. And, of using that switch to implement almost like mouse clicks. So, a single click, a double click and then a long click where you just press and hold the switch down. And, of using those to create two different modes. So, one mode for “running” and the second mode for “search and pounce” and then, being able to toggle between two different functions in each mode.</p>
<p>So, for example, if you’re running a single Operator 2 Radio (SO2R) in a contest you actually want to be able to control, typically the RIT on the radio or on the frequency that is your primary run frequency. And then, be able to control VFOB or the second radio’s VFO on the radio that you are using on another band to find multipliers. And so, this idea of a mode and within it being able to toggle between two different functions was a way of with using a single knob to say, “Okay, now I was to tune the RIT” or “Now I want to tune the other VFO.” And so, the whole concept became around the very simple user interface with a set number of functions that would control the shaft encoder switch. So, the original knob actually did not have shaft encoder switches in the design at all.</p>
<p><span style="color: #0000ff;"><strong>DH1TW:</strong> Okay, so basically just the big knob?</span></p>
<p><strong>K6TU:</strong> Yah, that’s correct.</p>
<p><span style="color: #0000ff;"><strong>DH1TW:</strong> Sounds pretty much like an Apple design…The Apple Philosophy.</span></p>
<p><strong>K6TU:</strong> Yah, I guess Silicon Valley infects everybody with the same thoughts. I mean really, if you’re going to try and build a project and if you can keep it simple and intuitive, then it becomes much easier for people to adopt and use. And, the more complicated you build a product- I mean, if you think about a lot of the hand held radios that are on the market for Hams there are so many functions in them and they’re buried in menus, you almost have to carry the user manual around with you if you want to do anything other than normally change frequency. And so, the whole concept behind the tuning knob was just to keep it simple.</p>
<p><span style="color: #0000ff;"><strong>DH1TW:</strong> Yeah. I made exactly the same experience. I set up for the DJ console an email reflector where everybody who was interested and can join. And I’m quite often, I receive some requests for “Why couldn’t you add this functionality” and “If I press this button combined with the other one…” I mean, okay, this might satisfy the wish of one or two particular users but I think I don’t want to increase too much the complexity of the product because the DJ console itself is like; it’s like way more complex from an optical or a haptic perspective than the FlexControl.  And, I also believe that a certain amount of complexity is just to high it might be counterproductive. So, you don’t want to overload the interface either. And, I’m always admiring Apple for their great use of interfaces and, I also like the simplicity of the FlexControl. It’s like if you can bring down the basic, the most needed functions into one knob and three buttons you can really see that there were some serious thoughts behind the product.</span></p>
<p><strong>K6TU:</strong> Yeah, that was very much the idea, was to keep it straightforward so that it was intuitive for people to use but at the same time the more functionality you add to a product, eventually you affect the price. And, from the beginning, Kevin K6TD, and myself we had both thought that there was an opportunity perhaps to turn this into a product. We certainly had enough interest from people locally, independent of whether they were using a FlexRadio or not in having a separate tuning knob. And so, right from the very beginning we were very focused on functionality because we had a particular price in mind that we wanted to be able to hit.</p>
<p><span style="color: #0000ff;"><strong>DH1TW:</strong> A funny story by the way. A friend of mine, Delta Fox Three Charlie Bravo, he developed his own remote control software for the Yaesu FT-2000 and he also started with the DJ Console. And lately, I think one or two months ago, he wrote me. And he told me, “Hey, do you know anything about this FlexRadio knob? Do you think I can use that in my software?” And I said, “ Yeah, sure.  It’s just opening, you just need a serial port and then you can implement it. And exactly for the same reason he just asked. I don’t need the other 25 knobs. I’m just fine with the main tuning knob and 3 functions. So, yea that’s right, your product the FlexControl is not only used on the FlexRadio Systems, it’s also used now on other platforms.</span></p>
<p>Okay, so, you also had- if I understand this right- from the very early begin a production, a series production in mind. Is that right?</p>
<p><strong>K6TU:</strong> Not entirely. The goal from the very beginning was to keep it simple and keep the design so that we could constrain the cost. Both Kevin and I had the experience of running a business out of our garage about 10 years earlier. We had built a business that was selling network time clocks. Now, if you’re familiar with the Internet network time protocol, we had a self-contained appliance that was a GPS receiver and a small microcomputer that provided a stand-alone and TV Strathmore box. And, we had sold a lot of them and eventually that business had got to the point where we were looking at one another going, “So, which of us is going to quit their main job to go run this company?” And, we decided that the market opportunity just wasn’t large enough in order to do that. And so, eventually we wound that business down.</p>
<p>So, one of the things that was very clear, we had very much in mind that if there was ever anybody interested in enough of these we would find somebody else to undertake the manufacturing because we weren’t going to do it. Neither of us saw this as a- you know the FlexControl has turned into a great product and sells well. But, as a single product it wasn’t sufficient to build a company. And both K6TD and I have what we call day jobs. So, you know, we had in mind that there was likely going to be interest so we both- Kevin’s actually the VP of Engineering for a very successful company here in Silicon Valley we’ve worked together professionally for very many years and been friends now for a very, very long time.</p>
<p>So, it was something we had in the back of our mind and its just kind of a basic disciplined approach to building something which is “Let’s keep it simple” and keep in mind that perhaps this thing winds up with other people wanting it. I think both Kevin and I have had a lot of experience with prototypes that became products. And often, with not very happy results. So we wanted to kind of do basic good engineering practice from the beginning.</p>
<p><span style="color: #0000ff;"><strong>DH1TW:</strong> Okay, so let’s come back to the Contest-Knob. And, let’s go a little bit inside the knob. What do we find inside? A microcontroller I suppose?</span></p>
<p><strong>K6TU:</strong> Yes, it’s actually a microchip Pic. Microchip has a very wide range of different single chip microcontroller solutions and we chose one that had an integrated USB controller as well as all of the standard peripheral stuff like timers and digital IO pins. So it’s very much intended to be a stand-alone embedded single chip solution system with a shaft encoder. And, basically a crystal, you know, canned crystal oscillator. That’s pretty much the contents of the hardware design.</p>
<p><span style="color: #0000ff;"><strong>DH1TW:</strong> So when you started developing the software what kind of problems did you encounter? What did you have in mind? Like you collect- you just count the number of impulses from the rotary encoder and you translate that to a CAT command and send it to PowerSDR right?</span></p>
<p><strong>K6TU:</strong> Well, not exactly. So, when we started this, obviously, although there is a USB hardware controller on the chip you actually have to have a software stack that implements the USB protocol layers and so the majority of the software that runs on the pick is actually to deal with the USB interface. We decided from the beginning we didn’t want to tie the knob to a particular CAT stream and there were a lot of reasons for that. And, we had in mind this was a design that could be used on things other than PowerSDR so the basic idea was to have a very simple serial protocol. The USB appearance to the system looks like a standard communications port. And so, we took the approach of using a very simple S Key command stream up and down the PC and the knob that does look like a CAT command insofar as its all in text and is delimited by a semicolon. But at that point it’s really its own basic command stream. So the software that’s on the pick aside from handling the USB interface, obviously it monitors the shafting code or it monitors the switches. It has capabilities- even the original design without the switches, has the LEDs on. So there’s- it’s timing and interrupt driven approach so the USB is all handled under interrupt control and all of the knob functions are handled based on timers.</p>
<p><span style="color: #0000ff;"><strong>DH1TW:</strong> Okay. And, when you connected the first prototype to PowerSDR what kind of problems did you encounter?</span></p>
<p><strong>K6TU:</strong> Actually, very few. So the, when we started development I bought an off the shelf board that had the same pick processor on it that we were building into the design. And so, the very first prototype of the knob was actually the shaft encoder on a perforated board with a couple of ribbon cables coming out of it to this off the shelf development board. And I had contacted Steve, Kilo Five Fox Radio (K5FR), who is the designer of DDUtil the data decoder utility that is just a complete godsend in terms of doing station integration with the flex.</p>
<p>So I had got to know Steve before I started the knob design actually. I had purchased a linear amplified and it was one of the ones that was on Steve’s list of things to support. So I had contacted him saying, “Hey, you know, I’ve got one of these amplifiers on its way. What’s it going to take to do the software support for it?” And Steve was very kind and said, “Well if you’ll help me debug it, I’ll put the software support in.” And so, he did it. And so, the two of us had got to know each other as we were going through that debug cycle of getting this amplifier supported by DDUtil. So when I had started the idea of the know I called Steve up and said, “Hey, what about the idea of putting the PC side support for the knob into DDUtil.”  And so, that’s actually how we started. So Steve was involved with the original protocol design of what messages went backwards and forwards between the knob. And he actually had a different version of a pick development board- fortunately with the same processor on it. So, he built again this kind of ribbon cable approach while Kevin, K6TD, began the stand-alone board development. So the actual software development was pretty straightforward.</p>
<p>We had the initial prototype of the ribbon cable version of the knob actually up and working in about 3 weeks. It was very quick. And so, that was the point where Steve started the development of the knob support into DDUtil. So we got all of the software design done and we had the knob working. And, I think from the beginning the idea with DDUtil was DDUtil manages the CAT interface to PowerSDR and over the years Steve has done a lot of work to minimize the amount of commands that go backwards and forwards over the actual PowerSDR CAT port. In common with any radio, the servicing of the CAT stream has limitations to it because the radio has to do all of the other things it’s doing. And so, you really want to make sure that you’re efficient because otherwise what we were really focused on from the beginning was when you stop turning the knob you expect and you demand that the radio stops tuning. And so we really wanted to make sure that there was no lag. And, at the beginning we came very, very close. We had the original knob was actually did not have any lag to it. We basically- whenever we detected a rotation of the shaft encoder we would map that into a step up or a step down command to PowerSDR. But, one of the things that Kevin suggested from the beginning was that we sense acceleration on the knob. So, the idea was that the faster you turn the knob, the radio should tune faster. So, this was a capability I think that was in the ICOM 756 PRO3. Where as you tune, as you turn the knob faster, the radio would rather than tuning it whatever your current step size is, it would move the step size up.</p>
<p>And so, I implemented an acceleration algorithm on the knob. And that will turn round to the PC and say, “In the last interval I saw the following number of steps.” And we use that in DDUtil to be able to dynamically resize the step size. And that required multiple CAT commands and that’s when we found ourselves with a cue. So, fortunately, over the years of development of DDUtil, Steve had got to know Bob Tracy who had done the original PowerSDR CAT design. And we were able to get Bob to implement some- two new CAT commands that allowed us to send a single CAT command into PowerSDR that said “Tune a different step size.”  And so, we were really focused from the very beginning on making sure that there was no cue. The whole idea here was: You turn the knob, the radio tunes, you stop tuning, the radio stops. And so, there was a huge amount of effort in terms of the acceleration algorithm, how the CAT commands were mapped in order to be able to do that.</p>
<p><span style="color: #0000ff;"><strong>DH1TW:</strong> Tell me a little bit more about the acceleration algorithm. In my simple mind, I would just count the amount of impulses over a defined period of time. Then, depending on the amount of impulses DDUtil looks up the corresponding frequency step in a table. So, for example, if we count let’s say 5 impulses within 50 milliseconds our table then might say this corresponds to a step of 10 kilohertz, which then will be sent through DDUtil to PowerSDR. Is that right?</span></p>
<p><strong>K6TU:</strong> Yeah. That’s pretty much it. It is a, it’s a time based algorithm. I mean acceleration is really the rate of change of velocity over time, right? And so, we implemented a very, a very simple integration algorithm on the knob. And then, that’s why I said in the original description the USB is all interrupt driven and everything else is based off of a clock interval. And so, it was very simple to interface to that. One of the challenges of shaft encoders, particularly mechanical ones such as the one that’s used in the FlexControl is being able to effectively debounce the switch contacts. And so, all of that debouncing is done is software. There’s a fair amount of subtlety to it. I wouldn’t say that the code is especially complicated but there was a lot of learning- I mean I have a digital oscilloscope that will also serve as a storage scope. And so I was using that to monitor the contact bounce on the shaft encoder. And so, there were some particular cases where you’d see some pretty complicated bouncing patterns, particularly when the knob was being turned slowly. And so, the actual contact changes when the knob is turned quickly are actually pretty clean. The irony was that when you were tuning the knob very slowly –say, for example, you’re trying to fine tune a CW signal or something like that, so you’re moving the knob very slowly backwards and forwards, that generated some very interesting debounce problems. And so, there was a fair amount of thought that went into, “Okay, so what does the algorithm need to look like in order to be able to make sure that you don’t get false tuning effects?”</p>
<p><span style="color: #0000ff;"><strong>DH1TW:</strong> Yeah. These are the small but nasty things, which come up during the development. They’re not mentioned in the date sheet and it takes quite a time to first identify them and second to create the proper work around it. During university I worked on a similar project. I created the user interface for a frequency generator. And, after a few tests with various rotary encoders I decided to go with the optical encoders. And because of my experience, they bounced significantly less and therefore provided much cleaner signals. But of course, they were also much more expensive and I only had to create one prototype. But, I still remember the hours spending in front of the digital storage oscilloscope, debugging the systems and adopting the software and microcontroller. Because, under all circumstances what you want to avoid is to upset the user, right?</span></p>
<p><strong>K6TU:</strong> Yeah, very much so. And, the vision that we had from the very beginning was, I think, best described, as we wanted the tuning to be quote-on-quote “silky smooth”. So, we wanted it to be exactly like tuning a regular radio. And, we got there. I mean, it certainly- it was- we got a lot of valuable feedback from folks and I’m actually very happy with how it turned out.</p>
<p><span style="color: #0000ff;"><strong>DH1TW:</strong> You already mentioned a couple of names: K6TD Kevin, K5FR Steve, and Bob Tracy. Who else was involved in the contest knob or respectively the FlexControl Project, in terms of development, beta testing, and etcetera?</span></p>
<p><strong>K6TU:</strong> Sure, so the development was done- so: Kevin, K6TD did the hardware design and actually took care of getting the initial PC boards produced. And then I assembled, well, I guess between Kevin and I; we assembled probably 6 or 8 of the initial boards. They’re surface mount parts so you know, microscope, and a magnifying glass at least and a very fine tipped soldering iron. We didn’t flow- we didn’t heat flow the boards. So, Kevin was responsible for the hardware, I did all of the knob software development and Steve did the integration of the PC side knob support into DDUtil. And so, it was the three of us initially. Steve had got some help from Bob Tracy that was really invaluable.</p>
<p>And then, we decided that we would build probably 10 or so beta units. And so, we relayed the board. We had actually sent one of the original prototypes to Lee, W9OY, Whiskey Nine Oscar Yankee, who has an SDR Radio blog. And Lee actually, was the one who came back and said, “Gee, this is really great. But, man, it would be great if there were a couple of switches on it.” And so, I got this feedback from Steve and I groaned and like “Oh no! The next thing someone’s going to want the kitchen sink on this thing.” And so, we agreed that after a lot of discussion between Steve and Lee and myself they convinced me that it would be really great to have 3 switches so that it would be able to control other capabilities. So, the original support I added the three switches- the so-called auxiliary switches. And, the original implementation of them was “Okay so, somebody presses the switch… big deal.” So Steve used that to map different capabilities.</p>
<p>So we sent this to Lee and Lee came back with, “Well, gee. This is great but could you implement the same click detection that you did on the shaft encoder so that with each button I could control 3 functions?” And, at that point it was like, “Oh no! The kitchen sink is really coming. I can hear it now.” So, I implemented the single double and long click detection on each of the auxiliary switches so that we had built about 10- I would say more- alpha units this time that were small boxes with a knob, with the 3 LEDs and the 3 switches. And, we had sent those to a number of different folks around the world who had given us really good feedback. I mean, I think by this point there really wasn’t anything that came back that affected the design or the concept. It was just really more comments to Steve in terms of what kinds of capabilities people wanted to be able to adjust using the knob. So, at that point I’d also sent one of the prototypes actually the original green board prototypes to Greg, the VP of Sales and Marketing at FlexRadio. And I said, “Hey, you might be interested in this.” And that was actually what had prompted the original discussion. So that was really the development team, you know. Kind of Lee was there as the initial sort of non development team guinea pig and came back with the switches and then ultimately the click detection for the auxiliary switches as well.</p>
<p><span style="color: #0000ff;"><strong>DH1TW:</strong> And, well, Kevin and you were both living in the Silicon Valley. And Steve, I think was living in Texas. Lee probably also not on the West Coast. How did you communicate with each other? Through telephone? Did you meet on the air?</span></p>
<p><strong>K6TU:</strong> No, we didn’t meet on the air. In fact, it took a long time before Steve and I even had a QSO. That was the irony of it. I would say that the majority of it was done by email and the occasional Skype or phone call. Lee actually lives in Florida and I’ve never spoken to him. It was all email communication. So, email worked really well for “Here’s the spec, what do you think?” “Hey, this is what I’m seeing.” “What explains this?” So, I think Kevin, Steve and I had a couple of 3 way conference calls but to this day I have never met Steve in person.</p>
<p><span style="color: #0000ff;"><strong>DH1TW:</strong> Speaking about development tools, since the main FlexControl development team consisted of just Kevin and you, you didn’t have the necessity for any project management tool or centralized repositories, right?</span></p>
<p><strong>K6TU:</strong> No, you’re correct. I mean, we weren’t really working with multiple people on the same code base. So we didn’t use an online repository. The source code is relatively small, in terms of its size. So I would email zip files basically of the project. I used the microchip integrated design environment really as the primary tool and then with a C compiler from Source Boost. So really, that was the development chain of emailing zip files to Kevin and to Steve if they needed to reprogram their particular units.</p>
<p><span style="color: #0000ff;"><strong>DH1TW:</strong> How long did it take you guys to develop the FlexControl? I mean from the beginning when you took the first time the soldering iron in your hand or respectively wrote the first line of code, to the moment you had done industrial fabricated product in your hand?</span></p>
<p><strong>K6TU:</strong> So, from the very beginning I probably started in early January of 2010. And, by the April by- yeah by mid or late April of 2010 we had the majority of the units built and all of the software was working. Steve had done the integration with DDUtil. We built the alpha unit I would say probably around September or October of 2010 and it was about that time that I actually started the discussion with FlexRadio about whether they would be interested in manufacturing what became the FlexControl. So you know, this was a part time effort. I had actually used the original ribbon cable prototype I think for the RTTY WPX Contest in the early part of 2010. I can’t remember whether the WPX RTTY its either in February or March. So the original design was up and running I would say from the point where I started writing the very first code to having the first working knob was about three weeks. And again, you know this was sort of evenings and weekends kind of work.</p>
<p><span style="color: #0000ff;"><strong>DH1TW:</strong> Can you estimate the amount of labor, the amount of working hours the whole team put into the FlexControl Project? Just give me a rough estimate.</span></p>
<p><strong>K6TU:</strong> Oh lord. Hundreds. Without any question. I mean, I know Steve spent a huge amount of effort designing the support into PowerSDR then ultimately coming up with the control tab that’s in DDUtil. Laying out printed circuit boards even with an order router is a time consuming thing even on a small board. Yeah, there’s several hundred hours worth of effort went into the design development of this.</p>
<p><span style="color: #0000ff;"><strong>DH1TW:</strong> That’s what I expected. Sometimes you wouldn’t expect this amount of work just by looking at the product itself. And I also think that sometimes we easily tend to underestimate the amount of work put into such a product.</span></p>
<p><strong>K6TU:</strong> Yeah. Building a product, I mean, you can build one of anything in a few hours in your garage- and I’ve done that many times. But to build a product to the point where it can be manufactured, where it can be tested that it just goes together and works, even something that looks as simple as the FlexControl there’s a lot of design, effort and thought that goes into building a product.</p>
<p><span style="color: #0000ff;"><strong>DH1TW:</strong> So, after the first prototypes were built up, tested and were working you sent one of the prototypes to Greg, the VP of Marketing and Sales at FlexRadio Systems. By today, the FlexControl is obviously available for purchase as an industrial manufactured product. Tell me, what happened in between. So from the time you approached Greg to the time they shipped the first unit and, what was your involvement?</span></p>
<p><strong>K6TU:</strong> Yes, I had contacted Greg with this idea and said, “Look this is something we had developed” and I had sent him one of the original prototypes and Greg is an active VHF contester himself and he’d wound up using one of the prototypes in a VHF contest. And said, “Oh wow, this really helps on the work flow.” And so, we had gotten into a discussion about whether it made sense for Flex to actually have this as a product. Kevin and I had decided right from the very beginning that we would not manufacture the product. It’s just taking orders, dealing with order fulfillment, projecting how many units you want to build and the whole order cycle of getting parts and boards built and put in to boxes. It was more logistics than we were prepared to undertake.</p>
<p>And so, it was one thing for us to build a handful or a dozen prototype units for our own use and for the use of some people we knew had similar requirements but it was a completely different one. So, I had started this discussion with FlexRadio. You know, obviously they have their own development schedule, their own product plans and so on. So part of it was just getting to a point where Flex felt that they had the time and capacity to do this.</p>
<p>And so, what we ultimately did was we sent them the schematics and the board layout and one of the guys at Flex- well actually two of the guys at FlexRadio got involved. One did the mechanical design of the box and we actually relayed the board in a different way. Again, primarily with a focus on manufacturability. And so, I worked with them to bring up that third revision- if you will- of the hardware design. And, it was actually, I would say, very much flawless. It’s a very- we had put a lot of effort in the very beginning into making this a very simple hardware design. And so, we never had any issues with any of the boards either, that we built, or, that flex built. They all came up and worked first time. So the process of working with Flex even remotely on the hardware design was actually really good.</p>
<p><span style="color: #0000ff;"><strong>DH1TW:</strong> Just by curiosity… do you know how many FlexControls have been sold by today?</span></p>
<p><strong>K6TU:</strong> I don’t</p>
<p><span style="color: #0000ff;"><strong>DH1TW:</strong> Okay.</span></p>
<p><strong>K6TU:</strong> I’ve seen a lot of them. So. But I don’t know what the numbers are.</p>
<p><span style="color: #0000ff;"><strong>DH1TW:</strong> Yeah. Maybe I should bring Greg here also on the podcast and ask him about the numbers. Okay, Stu, I think we are almost through the interview. I think it was a very fruitful one. And- but tell me, what are your future plans? Do you have any projects you’re working on?</span></p>
<p><strong>K6TU:</strong> Not at the moment. My primary focus at the moment is on operating the contests. We’re right in the middle of the contest season and I wound up taking the role as the contest chairman for the Northern California Contest Club in the middle of this contest year. And so, we’re all just pretty busy keeping focused on competing in contests and operating.</p>
<p><span style="color: #0000ff;"><strong>DH1TW:</strong> Oh, me too, me too. I am currently preparing the CQ160 Contest and we want to put up a two element vertical array and four beverages for listening. And therefore, I am currently redesigning my beverage distribution box, which allows us to use to listen on the full beverages independently on the 3 lowbands 160, 80, and 40.</span></p>
<p><strong>K6TU:</strong> Yeah. That’s really good. I envy you the space that’s required.</p>
<p><span style="color: #0000ff;"><strong>DH1TW:</strong> Yeah. That’s right. We are actually very fortunate at the station where I usually operate from Echo Delta One Radio (160m) that’s located in Central Spain about a hundred kilometers north of Madrid. We found an agreement with the farmer, with the owner of the fields close to the station and in winter time we are allowed to put up there all beverages. And, yes, it’s a significant difference listening on the vertical or being able to have full directional beverage system. And yeah, for transmission I am planning to put up a two element vertical array just to get 3dB more towards the United States. So we’ll see, maybe we’ll have a contact in the 160CW Contest. It would be cool.</span></p>
<p><strong>K6TU:</strong> Well, I just got my 160 transmitter antenna back up literally yesterday so I will definitely take a listen for you.</p>
<p><span style="color: #0000ff;"><strong>DH1TW:</strong> Okay, Stu, where can the listeners find more information about you and your product?</span></p>
<p><strong>K6TU:</strong> Well they can go to- I have a blog, if they look up K6TU through QRZ.com there is a pointer to my blog and there’s a lot of information on a variety of different technical topics on that blog including 3 kind of in-depth pieces on the development and evolution of the Contest-Knob.</p>
<p><span style="color: #0000ff;"><strong>DH1TW:</strong> Awesome. If they want to get in touch with you, if they have questions, how can they contact you?</span></p>
<p><strong>K6TU:</strong> Then my email address is also available through QRZ.com as well.</p>
<p><span style="color: #0000ff;"><strong>DH1TW:</strong> Perfect! So, I want to thank you again very, very much, Stu, for coming here onto the show. For sharing your knowledge and, the experiences you made. And if you, my dear listeners, want to know more about the Contest-Knob called the FlexControl stop by at Stu’s blog and if you’re already using the Flex Control maybe drop him a little line to appreciate the time and the effort that he and the team invested into the development. So, thanks again and take care.</span></p>
<p><strong>K6TU:</strong> My pleasure, Tobias.</p>
<img src="http://feeds.feedburner.com/~r/dh1tw/Mnut/~4/6WUoVwSNXbY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.dh1tw.de/flex-control-interviewing-the-developer/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://media.blubrry.com/dh1tw/s3.amazonaws.com/dh1tw/flex-control-k6td-interview.mp3" length="73432818" type="audio/mpeg" />
			<itunes:keywords>Ham Radio, Amateur Radio, FlexRadio, Flexradio Systems, Software Defined Radio, SDR</itunes:keywords>
		<itunes:subtitle>In this interview Stu, K6TU reveals the story behind the Flex-Control, a user interface for FlexRadio Systems SDRs.</itunes:subtitle>
		<itunes:summary>In this interview K6TU reveals the ideas behind FlexRadio System's Flex-Control and describes in detail the steps from the design to the industrial production.</itunes:summary>
		<itunes:author>Tobias Wellnitz, DH1TW</itunes:author>
		<itunes:explicit>clean</itunes:explicit>
		<itunes:duration>51:00</itunes:duration>

		<media:thumbnail url="http://www.dh1tw.de/wp-content/uploads/2012/02/FlexControl_420x356-117x100.jpg" />
		<media:content url="http://www.dh1tw.de/wp-content/uploads/2012/02/FlexControl_420x356-e1329746613820.jpg" medium="image">
			<media:title type="html">FlexControl</media:title>
			<media:thumbnail url="http://www.dh1tw.de/wp-content/uploads/2012/02/FlexControl_420x356-117x100.jpg" />
		</media:content>
		<media:content url="http://www.dh1tw.de/wp-content/uploads/2010/10/itunes.jpg" medium="image">
			<media:title type="html">itunes</media:title>
		</media:content>
	<feedburner:origLink>http://www.dh1tw.de/flex-control-interviewing-the-developer?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=flex-control-interviewing-the-developer</feedburner:origLink></item>
		<item>
		<title>Building and measuring the 2el 160m Array</title>
		<link>http://feedproxy.google.com/~r/dh1tw/Mnut/~3/TWte_JFAHI8/building-and-measuring-the-2el-160m-array</link>
		<comments>http://www.dh1tw.de/building-and-measuring-the-2el-160m-array#comments</comments>
		<pubDate>Mon, 23 Jan 2012 16:20:11 +0000</pubDate>
		<dc:creator>Tobias</dc:creator>
				<category><![CDATA[Contesting]]></category>
		<category><![CDATA[Hardware]]></category>

		<guid isPermaLink="false">http://www.dh1tw.de/?p=1660</guid>
		<description><![CDATA[Last weekend we spend quite some time to prepare our contest station ED1R for the upcoming CQWW 160m contests. The biggest task was the installation of a 2el parasitic Array of two verticals. During the installation I took the time to document the measurement results. Find them with my (preliminary) conculsion in this blog post. [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Last weekend we spend quite some time to prepare our contest station <a href="http://www.ed1r.com/">ED1R</a> for the upcoming CQWW 160m contests. The biggest task was the installation of a <a href="http://www.dh1tw.de/2el-vertical-array-for-160m">2el parasitic Array of two verticals</a>. During the installation I took the time to document the measurement results. Find them with my (preliminary) conculsion in this blog post.</p>
<p style="text-align: justify;"><span id="more-1660"></span></p>
<h2 style="text-align: justify;">The effect of adding radials</h2>
<p style="text-align: justify;">The first tests were conducted with a single vertical and the 25 radials which we have always used on 160m so far. Find below the impedance chart:</p>
<p style="text-align: justify;"><a href="http://www.dh1tw.de/wp-content/uploads/2012/01/radiator-with-spiderbeam-17m-and-T.png"><img class="alignnone size-medium wp-image-1661" title="160m Vertical with appox 20 radials" src="http://www.dh1tw.de/wp-content/uploads/2012/01/radiator-with-spiderbeam-17m-and-T-600x371.png" alt="" width="600" height="371" /></a></p>
<p style="text-align: justify;">Now, after adding another 50 35m long radials the impedance on the same vertical looks like this:</p>
<p style="text-align: justify;"><a href="http://www.dh1tw.de/wp-content/uploads/2012/01/vertical-with-80-radials.png"><img class="alignnone size-medium wp-image-1662" title="160m vertical with 80 radials" src="http://www.dh1tw.de/wp-content/uploads/2012/01/vertical-with-80-radials-600x371.png" alt="" width="600" height="371" /></a></p>
<p style="text-align: justify;">The S11 / VSWR curve is sharper (as a proper vertical should look like) and the impedance dropped from 20 Ohm down to 15 Ohm. This means that we reduced the losses by 5 Ohms!</p>
<p style="text-align: justify;"><img class="alignnone size-full wp-image-1683" title="Radials 160m Verticals" src="http://www.dh1tw.de/wp-content/uploads/2012/01/DSCN4178-e1327352218301.jpg" alt="Radials added to the 160m vertical" width="600" height="448" /></p>
<p style="text-align: justify;">80 radials in place</p>
<p style="text-align: justify;">Below is the simulated (NEC2) impedance curve of our vertical. (17m tall, a 35m long, slooping T-hat and MININEC ground (13mS and epsilon 26)).</p>
<p style="text-align: justify;"><img class="alignnone size-medium wp-image-1670" title="160m ground plane with T hat" src="http://www.dh1tw.de/wp-content/uploads/2012/01/160m-ground-plane_bild-600x373.jpg" alt="" width="600" height="373" /></p>
<p style="text-align: justify;">The picture above shows the radiator of our 160m array</p>
<p style="text-align: justify;"><img class="alignnone size-full wp-image-1672" title="160m ground plane swr curve" src="http://www.dh1tw.de/wp-content/uploads/2012/01/160m-ground-plane-swr.jpg" alt="" width="402" height="300" /></p>
<p style="text-align: justify;">Above the simulated SWR curve is shown</p>
<p style="text-align: justify;"><img class="alignnone size-full wp-image-1671" title="160m ground plane impedance" src="http://www.dh1tw.de/wp-content/uploads/2012/01/160m-ground-plane-impedance.jpg" alt="" width="402" height="300" /></p>
<p style="text-align: justify;">And finally the simulated impedance is shown as well</p>
<p style="text-align: justify;">Even if the real antenna impedance is likely to be a little bit lower as simulated (14.2 Ohm), I&#8217;m happy with the measured 15 Ohms.</p>
<h2 style="text-align: justify;">Making the Reflector work (or not&#8230;)</h2>
<p style="text-align: justify;">After having set up correctly the radiator it was time to install the reflector. The reflector was another vertical, 18m tall with an almost horizontal T-hat. At the feedpoint an additional roll inductor was connected between the reflector and ground. The roll inductor (0.5&#8230; 15,8µHenry) was used to adjust the reflector for a maximum front / back ratio.</p>
<p style="text-align: justify;"><img class="alignnone size-full wp-image-1685" title="Adjusting reflector of 160m vertical array" src="http://www.dh1tw.de/wp-content/uploads/2012/01/DSCN4168-e1327352308482.jpg" alt="" width="600" height="448" /></p>
<p style="text-align: justify;">Macbook + DG8SAQ Vector Network Analyzer + Reflectorbox</p>
<p style="text-align: justify;"><img class="alignnone size-full wp-image-1692" title="Coil to adjust the reflector" src="http://www.dh1tw.de/wp-content/uploads/2012/01/DSCN4170-e1327352806546.jpg" alt="" width="600" height="448" /></p>
<p style="text-align: justify;">In order to measure the front / back ratio, we installed a probe (4m tall vertical, terminated with 75Ohm) in a distance of approx. 250m behind the reflector in the field. While transmitting with low power on the vertical (array) I used the DG8SAQ as a Spectrum Analyzer in order to optimize the reflector length for optimum f/b.</p>
<p style="text-align: justify;">Unfortunately for still unkown reasons, the F/B did not exceed 3dB. This is of course very poor.</p>
<p style="text-align: justify;">I&#8217;m still struggeling for reasons&#8230; Probably the most likely reason is mutual coupling with the 22m tall tower (with a 2el 40m yagi) just behind the reflector.</p>
<h2 style="text-align: justify;">Coupling between radiator and reflector</h2>
<p style="text-align: justify;"><a href="http://www.dh1tw.de/wp-content/uploads/2012/01/vertical-with-reflector-connected.png"><img class="alignnone size-medium wp-image-1664" title="Impedance of radiator with and without the reflector connected to ground" src="http://www.dh1tw.de/wp-content/uploads/2012/01/vertical-with-reflector-connected-600x371.png" alt="" width="600" height="371" /></a></p>
<p style="text-align: justify;">Next I measured the coupling between the radiator and the reflector. The chart above shows the feed impedance for the two cases</p>
<ol style="text-align: justify;">
<li>Reflector connected to Ground (red)</li>
<li>Reflector not connected (black) -&gt; invisible to radiator</li>
</ol>
<p style="text-align: justify;">This measurement confirmed that at least some coupling is happening between the two elements. The simulation shows the following SWR and antenna impedance for the array:</p>
<p style="text-align: justify;"><a href="http://www.dh1tw.de/wp-content/uploads/2012/01/160m-vertical-array-swr1.jpg"><img class="alignnone size-full wp-image-1680" title="160m vertical array swr" src="http://www.dh1tw.de/wp-content/uploads/2012/01/160m-vertical-array-swr1.jpg" alt="" width="402" height="300" /></a></p>
<p style="text-align: justify;">The chart above is the SWR curve of the 2el vertical array simulated at the feedpoint of the radiator</p>
<p style="text-align: justify;"><a href="http://www.dh1tw.de/wp-content/uploads/2012/01/160m-vertical-array-impedance1.jpg"><img class="alignnone size-full wp-image-1681" title="160m vertical array impedance" src="http://www.dh1tw.de/wp-content/uploads/2012/01/160m-vertical-array-impedance1.jpg" alt="" width="402" height="300" /></a></p>
<p style="text-align: justify;">And this chart above shows the simulated antenna impedance</p>
<h2 style="text-align: justify;">Impedance of the reflector</h2>
<p style="text-align: justify;">I also measured the impedance of the reflector (while have the radiator disconnected).</p>
<p style="text-align: justify;"><a href="http://www.dh1tw.de/wp-content/uploads/2012/01/refelector-without-roll-inductor.png"><img class="alignnone size-medium wp-image-1675" title="160m refelector without roll inductor" src="http://www.dh1tw.de/wp-content/uploads/2012/01/refelector-without-roll-inductor-600x371.png" alt="" width="600" height="371" /></a></p>
<p style="text-align: justify;">The chart above shows the SWR and impedance measured without the roll-inductor. The self resonance of the reflector without roll inductor is located at 1.87 MHz.Unfortunately, the antenna impedance is 25 Ohm, which means that the earth screen of the reflector is still quite lossy.</p>
<p style="text-align: justify;"><a href="http://www.dh1tw.de/wp-content/uploads/2012/01/refelector-with-roll-inductor.png"><img class="alignnone size-medium wp-image-1676" title="refelector with roll inductor" src="http://www.dh1tw.de/wp-content/uploads/2012/01/refelector-with-roll-inductor-600x371.png" alt="" width="600" height="371" /></a></p>
<p style="text-align: justify;">In the chart above, the roll inductor (2,6µHenry) make the reflector resonant at 1.81 MHz, approximately 20kHz below the radiator.</p>
<h2 style="text-align: justify;">Conclusions</h2>
<p style="text-align: justify;">Unfortunately we couldn&#8217;t verify yet the desired antenna performance. It is not clear what is the reason for the low front / back. Two possible reasons could be:</p>
<p style="text-align: justify;">- Too little coupling between the two antennas</p>
<p style="text-align: justify;">- Too much looses on the reflectors ground network. More radials must be installed in order to reduce the losses</p>
<p style="text-align: justify;">- The 23m tall tower behind the reflector is resonant on approx 1.8MHz and distorting the antenna pattern.</p>
<p style="text-align: justify;"><strong>&#8230; investigations to be continued</strong></p>
<img src="http://feeds.feedburner.com/~r/dh1tw/Mnut/~4/TWte_JFAHI8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.dh1tw.de/building-and-measuring-the-2el-160m-array/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
	
		<media:thumbnail url="http://www.dh1tw.de/wp-content/uploads/2012/01/radiator-with-spiderbeam-17m-and-T-150x92.png" />
		<media:content url="http://www.dh1tw.de/wp-content/uploads/2012/01/radiator-with-spiderbeam-17m-and-T.png" medium="image">
			<media:title type="html">160m Vertical with appox 20 radials</media:title>
			<media:thumbnail url="http://www.dh1tw.de/wp-content/uploads/2012/01/radiator-with-spiderbeam-17m-and-T-150x92.png" />
		</media:content>
		<media:content url="http://www.dh1tw.de/wp-content/uploads/2012/01/vertical-with-80-radials.png" medium="image">
			<media:title type="html">160m vertical with 80 radials</media:title>
			<media:thumbnail url="http://www.dh1tw.de/wp-content/uploads/2012/01/vertical-with-80-radials-150x92.png" />
		</media:content>
		<media:content url="http://www.dh1tw.de/wp-content/uploads/2012/01/DSCN4178-e1327352218301.jpg" medium="image">
			<media:title type="html">Radials 160m Verticals</media:title>
			<media:thumbnail url="http://www.dh1tw.de/wp-content/uploads/2012/01/DSCN4178-133x100.jpg" />
		</media:content>
		<media:content url="http://www.dh1tw.de/wp-content/uploads/2012/01/160m-ground-plane_bild-e1327337653657.jpg" medium="image">
			<media:title type="html">160m ground plane with T hat</media:title>
			<media:thumbnail url="http://www.dh1tw.de/wp-content/uploads/2012/01/160m-ground-plane_bild-150x93.jpg" />
		</media:content>
		<media:content url="http://www.dh1tw.de/wp-content/uploads/2012/01/160m-ground-plane-swr.jpg" medium="image">
			<media:title type="html">160m ground plane swr curve</media:title>
			<media:thumbnail url="http://www.dh1tw.de/wp-content/uploads/2012/01/160m-ground-plane-swr-134x100.jpg" />
		</media:content>
		<media:content url="http://www.dh1tw.de/wp-content/uploads/2012/01/160m-ground-plane-impedance.jpg" medium="image">
			<media:title type="html">160m ground plane impedance</media:title>
			<media:thumbnail url="http://www.dh1tw.de/wp-content/uploads/2012/01/160m-ground-plane-impedance-134x100.jpg" />
		</media:content>
		<media:content url="http://www.dh1tw.de/wp-content/uploads/2012/01/DSCN4168-e1327352308482.jpg" medium="image">
			<media:title type="html">Adjusting reflector of 160m vertical array</media:title>
			<media:thumbnail url="http://www.dh1tw.de/wp-content/uploads/2012/01/DSCN4168-133x100.jpg" />
		</media:content>
		<media:content url="http://www.dh1tw.de/wp-content/uploads/2012/01/DSCN4170-e1327352806546.jpg" medium="image">
			<media:title type="html">Coil to adjust the reflector</media:title>
			<media:thumbnail url="http://www.dh1tw.de/wp-content/uploads/2012/01/DSCN4170-133x100.jpg" />
		</media:content>
		<media:content url="http://www.dh1tw.de/wp-content/uploads/2012/01/vertical-with-reflector-connected.png" medium="image">
			<media:title type="html">Impedance of radiator with and without the reflector connected to ground</media:title>
			<media:thumbnail url="http://www.dh1tw.de/wp-content/uploads/2012/01/vertical-with-reflector-connected-150x92.png" />
		</media:content>
		<media:content url="http://www.dh1tw.de/wp-content/uploads/2012/01/160m-vertical-array-swr1.jpg" medium="image">
			<media:title type="html">160m vertical array swr</media:title>
			<media:thumbnail url="http://www.dh1tw.de/wp-content/uploads/2012/01/160m-vertical-array-swr1-134x100.jpg" />
		</media:content>
		<media:content url="http://www.dh1tw.de/wp-content/uploads/2012/01/160m-vertical-array-impedance1.jpg" medium="image">
			<media:title type="html">160m vertical array impedance</media:title>
			<media:thumbnail url="http://www.dh1tw.de/wp-content/uploads/2012/01/160m-vertical-array-impedance1-134x100.jpg" />
		</media:content>
		<media:content url="http://www.dh1tw.de/wp-content/uploads/2012/01/refelector-without-roll-inductor.png" medium="image">
			<media:title type="html">160m refelector without roll inductor</media:title>
			<media:thumbnail url="http://www.dh1tw.de/wp-content/uploads/2012/01/refelector-without-roll-inductor-150x92.png" />
		</media:content>
		<media:content url="http://www.dh1tw.de/wp-content/uploads/2012/01/refelector-with-roll-inductor.png" medium="image">
			<media:title type="html">refelector with roll inductor</media:title>
			<media:thumbnail url="http://www.dh1tw.de/wp-content/uploads/2012/01/refelector-with-roll-inductor-150x92.png" />
		</media:content>
	<feedburner:origLink>http://www.dh1tw.de/building-and-measuring-the-2el-160m-array?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=building-and-measuring-the-2el-160m-array</feedburner:origLink></item>
		<item>
		<title>W7IUV Beverage Pre-Amp (2N5109)</title>
		<link>http://feedproxy.google.com/~r/dh1tw/Mnut/~3/EOBco0oKLAg/w7iuv-beverage-pre-amp-2n5109</link>
		<comments>http://www.dh1tw.de/w7iuv-beverage-pre-amp-2n5109#comments</comments>
		<pubDate>Wed, 18 Jan 2012 11:48:59 +0000</pubDate>
		<dc:creator>Tobias</dc:creator>
				<category><![CDATA[Contesting]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[amplifier]]></category>
		<category><![CDATA[Bandpass Filter]]></category>
		<category><![CDATA[beverage antennas]]></category>
		<category><![CDATA[Measurements]]></category>
		<category><![CDATA[w7uiv amplifier]]></category>

		<guid isPermaLink="false">http://www.dh1tw.de/?p=1642</guid>
		<description><![CDATA[In preparation of the upcoming CQWW 160m Contests my friend Hannes, DK1NO was so kind to give me one of his W7IUV broadband, high IP3 preamplifier. Thanks, Hannes! Without knowing the exact performance data, I ran a few measurements with my Network Analyzer on the amplifier to determine the Gain and it&#8217;s operational fitness. Read [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">In preparation of the upcoming CQWW 160m Contests my friend <a href="http://qrz.com/db/dk1no">Hannes, DK1NO</a> was so kind to give me one of his W7IUV broadband, high IP3 preamplifier. Thanks, Hannes! Without knowing the exact performance data, I ran a few measurements with my Network Analyzer on the amplifier to determine the Gain and it&#8217;s operational fitness. Read on for measurement results and additional notes on how to measure active components.</p>
<p style="text-align: justify;"><span id="more-1642"></span>In the pictures below, the measurement setup can be seen. I&#8217;m using a high precision <a href="http://sdr-kits.net">USB Network Analyzer</a> made by DG8SAQ (90dB dynamic range), a Mini-Circuits BNC Calibration kit and some Mini-circuits attenuators.</p>
<p style="text-align: justify;">A few notes on measuring amplifiers:</p>
<ul>
<li style="text-align: justify;">When measuring active components on a network analyzer DC must not be applied at any time at the Network Anlyzer&#8217;s input terminals. Just with a few Volts you can brick your (expensive) measurement devices. A good way to be make sure than DC reaches the VNWA&#8217;s terminals is to use a coupling capacitor.</li>
<li style="text-align: justify;">Amplifiers can easily overload your VNWAs input terminals. Caution is needed, especially if the gain is unknown, as in my case. My VNWA allows me to reduce the output power in 0.1 dB steps, therefor I started with -40dBm and added a 20dB attenuator at the receiving port, just to make sure that no overloading will happen.</li>
</ul>
<p><img class="alignnone size-full wp-image-1643" title="_IGP8042" src="http://www.dh1tw.de/wp-content/uploads/2012/01/IGP8042-e1326886265731.jpg" alt="Measurement setup - VNWA and W7UIV preamp" width="600" height="398" /></p>
<p>Measurement setup &#8211; Regulated Powersupply (with current limiter), USB Vector Network Analyzer and the W7IUV amplifier</p>
<p><img class="alignnone size-full wp-image-1644" title="w7iuv Beverage amplifier" src="http://www.dh1tw.de/wp-content/uploads/2012/01/IGP8044-e1326886561627.jpg" alt="closer look on W7IUV Beverage Amplifier" width="600" height="398" /></p>
<p>A closer look in the VNWA and the W7IUV Beverage Amplifier</p>
<p><img class="alignnone size-full wp-image-1645" title="W7IUV Beverage Preamp" src="http://www.dh1tw.de/wp-content/uploads/2012/01/IGP8043-e1326886752610.jpg" alt="W7IUV Beverage Preamplifier" width="600" height="398" /></p>
<p>A detailed picture of W7IUV Beverage Pre-Amplifier. Note the 20dB attenuator at the output port</p>
<p><a href="http://www.dh1tw.de/wp-content/uploads/2012/01/Messung-DK1NO-Beverage-Preamp-100MHz.png"><img class="alignnone size-medium wp-image-1646" title="Messung DK1NO Beverage Preamp 100MHz" src="http://www.dh1tw.de/wp-content/uploads/2012/01/Messung-DK1NO-Beverage-Preamp-100MHz-600x371.png" alt="Gain Measurement W7UIV Amplifier" width="600" height="371" /></a></p>
<p style="text-align: justify;">The amplifier shows a satisfactory behaviour. Over the whole shortwave band  (1MHz &#8230; 30MHz) the gain (S21) is 20dB, decreasing to approx. 8dB at 100MHz. Also the input impedance (S11) is good from 1 MHz to 30MHz.</p>
<p style="text-align: justify;">In overall I&#8217;m happy with the gain and the input impedance. Of course a few other important measurements (e.g. IP3) are missing. Since I don&#8217;t have the necessary means to measure the IP3 I&#8217;ll accept the amplifier as is. For the contest I&#8217;ll put the Amplifier behind a Lowpass / Bandpass filter just to make sure that no unnecessary intermodulation products are generated.</p>
<p style="text-align: justify;">
<img src="http://feeds.feedburner.com/~r/dh1tw/Mnut/~4/EOBco0oKLAg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.dh1tw.de/w7iuv-beverage-pre-amp-2n5109/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:thumbnail url="http://www.dh1tw.de/wp-content/uploads/2012/01/IGP8042-150x100.jpg" />
		<media:content url="http://www.dh1tw.de/wp-content/uploads/2012/01/IGP8042-e1326886265731.jpg" medium="image">
			<media:title type="html">_IGP8042</media:title>
			<media:thumbnail url="http://www.dh1tw.de/wp-content/uploads/2012/01/IGP8042-150x100.jpg" />
		</media:content>
		<media:content url="http://www.dh1tw.de/wp-content/uploads/2012/01/IGP8044-e1326886561627.jpg" medium="image">
			<media:title type="html">w7iuv Beverage amplifier</media:title>
			<media:thumbnail url="http://www.dh1tw.de/wp-content/uploads/2012/01/IGP8044-150x100.jpg" />
		</media:content>
		<media:content url="http://www.dh1tw.de/wp-content/uploads/2012/01/IGP8043-e1326886752610.jpg" medium="image">
			<media:title type="html">W7IUV Beverage Preamp</media:title>
			<media:thumbnail url="http://www.dh1tw.de/wp-content/uploads/2012/01/IGP8043-150x100.jpg" />
		</media:content>
		<media:content url="http://www.dh1tw.de/wp-content/uploads/2012/01/Messung-DK1NO-Beverage-Preamp-100MHz.png" medium="image">
			<media:title type="html">Messung DK1NO Beverage Preamp 100MHz</media:title>
			<media:thumbnail url="http://www.dh1tw.de/wp-content/uploads/2012/01/Messung-DK1NO-Beverage-Preamp-100MHz-150x92.png" />
		</media:content>
	<feedburner:origLink>http://www.dh1tw.de/w7iuv-beverage-pre-amp-2n5109?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=w7iuv-beverage-pre-amp-2n5109</feedburner:origLink></item>
		<item>
		<title>2el Vertical Array for 160m</title>
		<link>http://feedproxy.google.com/~r/dh1tw/Mnut/~3/3rIsSPznu4c/2el-vertical-array-for-160m</link>
		<comments>http://www.dh1tw.de/2el-vertical-array-for-160m#comments</comments>
		<pubDate>Tue, 10 Jan 2012 06:40:18 +0000</pubDate>
		<dc:creator>Tobias</dc:creator>
				<category><![CDATA[Contesting]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[160m]]></category>
		<category><![CDATA[Antenna Simulation]]></category>
		<category><![CDATA[antennas]]></category>

		<guid isPermaLink="false">http://www.dh1tw.de/?p=1619</guid>
		<description><![CDATA[In CQWW 160m we are planning again a serious participation. This time we want to errect a 2el vertical Array for 160m towards the US. In this post you will find some detailes regarding our unique situation and some design thoughts. ED1R Contesting site Even while having more space than the average ham, at ED1R [...]]]></description>
			<content:encoded><![CDATA[<p>In CQWW 160m we are planning again a serious participation. This time we want to errect a 2el vertical Array for 160m towards the US. In this post you will find some detailes regarding our unique situation and some design thoughts.<br />
<span id="more-1619"></span></p>
<h1>ED1R Contesting site</h1>
<p style="text-align: justify;">Even while having more space than the average ham, at ED1R we are restricted when it comes to lowband antennas. Our 80m and 160m antennas have to be installed the day before the contest and be removed the night after the contest. Fortunately the friendly neighbors allow us to use their  fields during the weekends. Here is a 3D model of the ED1R contest station. Note the two (brown) areas which mark the fields we can use for our 80m / 160m antennas.</p>
<p><img class="alignnone size-full wp-image-1630" title="ED1R_2" src="http://www.dh1tw.de/wp-content/uploads/2012/01/ED1R_2-e1326176669655.png" alt="" width="600" height="331" /></p>
<h2>Hight is everything</h2>
<p>When it comes to 160m, vertical antennas are hard to beat. During the last year we used sucessfully (subjectively measured) a 15 tall inverted L-Antenna. The L-Antenna is a poor man&#8217;s T-Antenna. The reason is because the L-Antenna has a rather significant high angle radiation which is usually not desired. On the other hand, the equally long horizontal wires of a T-antenna cancel effectively the high angle radiation.</p>
<p>On 160m a Lambda/4 radiation is almost 40m tall. This results in an antenna radiation resistance of 36 Ohm. Unfortunately it is impossible for us to errect a 40m tall antenna. The maximum height is defined by our 18m tall Spiderbeam poles. The main problem with verticals lower than Lamdba/4 is that the antenna radiation resistance decreases. With a low antenna impedance it is extremely important to have an excellent ground (radial) net. Otherwise, most of the power will be lost in the earth.</p>
<p>There are several ways to make a 18m tall antenna resonant on 160m. Here are some of the more popular designs:</p>
<ol>
<li>Adding an inductor at the feedpoint</li>
<li>Extending the antenna with a horizontal wire (L-antenna)</li>
<li>Adding a slooping T-hat</li>
<li>Adding a horizontal T-hat</li>
</ol>
<div>The horizontal T-hat is the best solution. With a horizontal T-hat at 18m the antenna radiation resistance &#8220;only&#8221; drops down to approx 15 Ohm. In comparison a slooping T-hat (two 15m long wires, slooping down at an angle of 45°) and 5mHenry at the feedpoint bring the antenna impedance down to 7 Ohm!</div>
<div>Being lucky at ED1R we have to possibility to span a long non conductive guy-wire between the tallest tower (23m) and EC1KR&#8217;s remote tower, located approximately 130m away. This allows us to install a horizontal T-hat.</div>
<h2>No Pain, no gain</h2>
<div>Since we want to seriously enter the 160m contest, we are thinking in a 2-element vertical array with the following characteristics:</div>
<div>-&gt; Two identical T-Hat Verticals</div>
<div>-&gt; 100 radials (30m long) at the feedpoint of each vertical</div>
<div>-&gt; Radial systems interconnected with a broad layer of chicken wire</div>
<div>-&gt; Optimized at 1830MHz</div>
<div>-&gt; Forced Current feeding method (Lewallen)</div>
<div>-&gt; Spacing 35m</div>
<div>-&gt; Phase: 1A &#8211; 120°</div>
<div>-&gt; Approx. 3dB Gain</div>
<div>Here are some pictures of how we think the antenna should look like:</div>
<div><img class="alignnone size-full wp-image-1626" title="papa3_160m_2el_USA_view1" src="http://www.dh1tw.de/wp-content/uploads/2012/01/papa3_160m_2el_USA_view1-e1326176051545.png" alt="" width="600" height="400" /></div>
<div><img class="alignnone size-full wp-image-1627" title="papa3_160m_2el_USA_view2" src="http://www.dh1tw.de/wp-content/uploads/2012/01/papa3_160m_2el_USA_view2-e1326176110326.png" alt="" width="600" height="400" /></div>
<div><img class="alignnone size-full wp-image-1628" title="papa3_160m_2el_USA_view3" src="http://www.dh1tw.de/wp-content/uploads/2012/01/papa3_160m_2el_USA_view3-e1326176147923.png" alt="" width="600" height="426" /></div>
<h2>Antenna pattern</h2>
<div>The results were calculated with Mininec (good ground) and 8 Ohm losses at each feedpoint. The losses of the 90° feedlines were not included yet. Therefor I think 3dB gain should be realistic.</div>
<div><img class="alignnone size-full wp-image-1632" title="vertical pattern 160m 2el vertical array" src="http://www.dh1tw.de/wp-content/uploads/2012/01/vertical-pattern.jpg" alt="" width="394" height="436" /></div>
<div>See above the vertical antenna pattern</div>
<div><img class="alignnone size-full wp-image-1631" title="horizontal pattern" src="http://www.dh1tw.de/wp-content/uploads/2012/01/horizontal-pattern.jpg" alt="" width="394" height="436" /></div>
<div>See above the horizontal antenna pattern of the 2el vertical array</div>
<div><img class="alignnone size-full wp-image-1633" title="Gain curve of the 2el Vertical Array for 160m" src="http://www.dh1tw.de/wp-content/uploads/2012/01/gain.jpg" alt="" width="499" height="666" /></div>
<div>See above the gain curve for the 2el vertical array for 160m</div>
<h2>Comments welcome</h2>
<div>Do you have any suggestions? The design is still not finalized yet. If you have an idea how this antenna could be improved, I would appreciate to receive your feedback!</div>
<img src="http://feeds.feedburner.com/~r/dh1tw/Mnut/~4/3rIsSPznu4c" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.dh1tw.de/2el-vertical-array-for-160m/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:thumbnail url="http://www.dh1tw.de/wp-content/uploads/2012/01/ED1R_2-150x82.png" />
		<media:content url="http://www.dh1tw.de/wp-content/uploads/2012/01/ED1R_2-e1326176669655.png" medium="image">
			<media:title type="html">ED1R_2</media:title>
			<media:thumbnail url="http://www.dh1tw.de/wp-content/uploads/2012/01/ED1R_2-150x82.png" />
		</media:content>
		<media:content url="http://www.dh1tw.de/wp-content/uploads/2012/01/papa3_160m_2el_USA_view1-e1326176051545.png" medium="image">
			<media:title type="html">papa3_160m_2el_USA_view1</media:title>
			<media:thumbnail url="http://www.dh1tw.de/wp-content/uploads/2012/01/papa3_160m_2el_USA_view1-150x100.png" />
		</media:content>
		<media:content url="http://www.dh1tw.de/wp-content/uploads/2012/01/papa3_160m_2el_USA_view2-e1326176110326.png" medium="image">
			<media:title type="html">papa3_160m_2el_USA_view2</media:title>
			<media:thumbnail url="http://www.dh1tw.de/wp-content/uploads/2012/01/papa3_160m_2el_USA_view2-150x100.png" />
		</media:content>
		<media:content url="http://www.dh1tw.de/wp-content/uploads/2012/01/papa3_160m_2el_USA_view3-e1326176147923.png" medium="image">
			<media:title type="html">papa3_160m_2el_USA_view3</media:title>
			<media:thumbnail url="http://www.dh1tw.de/wp-content/uploads/2012/01/papa3_160m_2el_USA_view3-140x100.png" />
		</media:content>
		<media:content url="http://www.dh1tw.de/wp-content/uploads/2012/01/vertical-pattern.jpg" medium="image">
			<media:title type="html">vertical pattern 160m 2el vertical array</media:title>
			<media:thumbnail url="http://www.dh1tw.de/wp-content/uploads/2012/01/vertical-pattern-90x100.jpg" />
		</media:content>
		<media:content url="http://www.dh1tw.de/wp-content/uploads/2012/01/horizontal-pattern.jpg" medium="image">
			<media:title type="html">horizontal pattern</media:title>
			<media:thumbnail url="http://www.dh1tw.de/wp-content/uploads/2012/01/horizontal-pattern-90x100.jpg" />
		</media:content>
		<media:content url="http://www.dh1tw.de/wp-content/uploads/2012/01/gain.jpg" medium="image">
			<media:title type="html">Gain curve of the 2el Vertical Array for 160m</media:title>
			<media:thumbnail url="http://www.dh1tw.de/wp-content/uploads/2012/01/gain-74x100.jpg" />
		</media:content>
	<feedburner:origLink>http://www.dh1tw.de/2el-vertical-array-for-160m?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=2el-vertical-array-for-160m</feedburner:origLink></item>
		<item>
		<title>HC2/AL1O qrv from Ecuador</title>
		<link>http://feedproxy.google.com/~r/dh1tw/Mnut/~3/3RsRd-cvtmg/hc2al1o-qrv-from-ecuador</link>
		<comments>http://www.dh1tw.de/hc2al1o-qrv-from-ecuador#comments</comments>
		<pubDate>Fri, 06 Jan 2012 00:57:49 +0000</pubDate>
		<dc:creator>Tobias</dc:creator>
				<category><![CDATA[Contesting]]></category>
		<category><![CDATA[DX-Peditions]]></category>
		<category><![CDATA[HC2/AL1O]]></category>
		<category><![CDATA[N1MM]]></category>

		<guid isPermaLink="false">http://www.dh1tw.de/?p=1596</guid>
		<description><![CDATA[ During my stay in Ecuador I was able to operate two days under my US Callsign as HC2/AL1O. Special thanks to my host Alberto, HC2AQ who offered me his shack. Within two days, 1700 QSOs found their way into the log.  Read on for pictures, online log &#38; QSL information. Operation During my stay I [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;"><img class="size-full wp-image-1601 alignleft" style="margin: 5px;" title="life_is_simple" src="http://www.dh1tw.de/wp-content/uploads/2012/01/life_is_simple-e1325811428439.jpg" alt="" width="170" height="93" /> During my stay in Ecuador I was able to operate two days under my US Callsign as HC2/AL1O. Special thanks to my host Alberto, HC2AQ who offered me his shack. Within two days, 1700 QSOs found their way into the log.</p>
<p style="text-align: justify;"> Read on for pictures, online log &amp; QSL information.</p>
<p><span id="more-1596"></span></p>
<h2>Operation</h2>
<p>During my stay I tried to work on all bands from 10m down to 80m. I had great pileups on 15m and 20m from JA and the US. In the evening I enjoyed very much the operation on 80m CW. During the time of the European sunrise (06:00Z &#8211; 08:00Z) I worked EU, NA, JA and ZL at the same time!</p>
<h2>Online Log &amp; LoTW</h2>
<p style="text-align: justify;">Thanks to everyone who gave me a call. The check your callsign in the online log below. The log will soon be submitted to LOTW as well.</p>
<form method="GET" action="http://dx.qsl.net/cgi-bin/logsearch.cgi">
Your Callsign:</p>
<input type=hidden name=L value=hc2-al1o>
<input name="C" size=30 maxlength=40>
<input type="submit" value="Search Log" style="width:100px;height:20px">
<input type="reset" value="Clear Callsign" style="width:100px;height:20px">
</form>
<h2>QSL Cards</h2>
<p style="text-align: justify;">In case you are interested in a QSL card please send it to <a href="http://qrz.com/db/dh1tw">my address</a> or through the buro via my German Callsign DH1TW.</p>
<h2>Pictures</h2>
<p>Here are a few pictures of the operation:</p>
<p><img class="size-full wp-image-1599 alignnone" title="HC2AQs great station" src="http://www.dh1tw.de/wp-content/uploads/2012/01/hc2aq-e1325810414700.jpg" alt="" width="600" height="450" /></p>
<p style="text-align: justify;"><a href="http://qrz.com/db/hc2aq">Albertos</a> great Station with Monoband antennas from 10m to 160m. Usually the group of <a href="http://qrz.com/db/hd2a">HD2A</a> operate from the station. If you hear them the next time, give them a call!</p>
<p><img class="alignnone size-full wp-image-1597" title="operating" src="http://www.dh1tw.de/wp-content/uploads/2012/01/048-e1325810710807.jpg" alt="" width="600" height="450" /></p>
<p style="text-align: justify;">DH1TW operating CW on 80m with a Kenwood TS-450 and a SB-220.</p>
<p><img class="alignnone size-full wp-image-1598" title="with my host" src="http://www.dh1tw.de/wp-content/uploads/2012/01/051-e1325810810719.jpg" alt="" width="600" height="450" /></p>
<p>My host Alberto, HC2AQ (right) and me (left)</p>
<img src="http://feeds.feedburner.com/~r/dh1tw/Mnut/~4/3RsRd-cvtmg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.dh1tw.de/hc2al1o-qrv-from-ecuador/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:thumbnail url="http://www.dh1tw.de/wp-content/uploads/2012/01/life_is_simple-150x82.jpg" />
		<media:content url="http://www.dh1tw.de/wp-content/uploads/2012/01/life_is_simple-e1325811428439.jpg" medium="image">
			<media:title type="html">life_is_simple</media:title>
			<media:thumbnail url="http://www.dh1tw.de/wp-content/uploads/2012/01/life_is_simple-150x82.jpg" />
		</media:content>
		<media:content url="http://www.dh1tw.de/wp-content/uploads/2012/01/hc2aq-e1325810414700.jpg" medium="image">
			<media:title type="html">HC2AQs great station</media:title>
			<media:thumbnail url="http://www.dh1tw.de/wp-content/uploads/2012/01/hc2aq-133x100.jpg" />
		</media:content>
		<media:content url="http://www.dh1tw.de/wp-content/uploads/2012/01/048-e1325810710807.jpg" medium="image">
			<media:title type="html">operating</media:title>
			<media:thumbnail url="http://www.dh1tw.de/wp-content/uploads/2012/01/048-133x100.jpg" />
		</media:content>
		<media:content url="http://www.dh1tw.de/wp-content/uploads/2012/01/051-e1325810810719.jpg" medium="image">
			<media:title type="html">with my host</media:title>
			<media:thumbnail url="http://www.dh1tw.de/wp-content/uploads/2012/01/051-133x100.jpg" />
		</media:content>
	<feedburner:origLink>http://www.dh1tw.de/hc2al1o-qrv-from-ecuador?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=hc2al1o-qrv-from-ecuador</feedburner:origLink></item>
		<item>
		<title>How to exchange the GU74b / 4CX800 tubes on your Alpha91b (Alpha99) Amplifier</title>
		<link>http://feedproxy.google.com/~r/dh1tw/Mnut/~3/eY1DVhz9hmQ/how-to-exchange-the-gu74b-4cx800-tubes-on-your-alpha91b-alpha99-amplifier</link>
		<comments>http://www.dh1tw.de/how-to-exchange-the-gu74b-4cx800-tubes-on-your-alpha91b-alpha99-amplifier#comments</comments>
		<pubDate>Thu, 15 Dec 2011 05:30:51 +0000</pubDate>
		<dc:creator>Tobias</dc:creator>
				<category><![CDATA[Contesting]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Alpha91b]]></category>
		<category><![CDATA[amplifier]]></category>
		<category><![CDATA[Measurements]]></category>
		<category><![CDATA[Modifications]]></category>

		<guid isPermaLink="false">http://www.dh1tw.de/?p=1556</guid>
		<description><![CDATA[The GU74b / 4CX800 tubes were broken in my Alpha91b. In this blog post I explain how we diagnosed the problem, and then sucessfully exchanged the tubes.]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;"><img class="alignleft size-full wp-image-1570" style="margin: 5px;" title="ampli" src="http://www.dh1tw.de/wp-content/uploads/2011/12/DSCN40611-e1323034994717.jpg" alt="" width="100" height="74" />it finally happend&#8230;. After a decade of reliable service, my Alpha91b amplifier broke. Most likely on it&#8217;s way to Spain one of the tubes broke. During the comissioning at <a href="http://www.ed1r.com">ED1R contest station</a>, fire &amp; smoke shot out of a chimney. The first shock was big, but a few measurements confirmed that just the tubes were broken. In this blog post I will share the knowledge I gained during during debugging, comissioning and breathing new life into the amplifier.</p>
<p><span id="more-1556"></span></p>
<h2>Disclaimer &amp; WARNING</h2>
<p style="text-align: justify;">WARNING! Do not perform ANY work on your amplifier if you are not exactly sure what you are doing. The amplifier is using high voltages up to 3000V which is LETHAL. Touching the wrong part inside the amp can KILL YOU. Again &#8211; if you are not absolutely sure, contact <a href="http://www.rfconcepts.com/">RF-concepts</a> or your local dealer. Perform everything which is written here under your own responsibility. It has worked for me, it might work for you, but it might also not work for you. This article claims no professional advice.</p>
<p style="text-align: justify;">AGAIN: With the slightest doubts, please don&#8217;t experiment with high voltages. Look for professional help from your next dealer.</p>
<h2>The broken amplifier</h2>
<p style="text-align: justify;">While I couldn&#8217;t figure out the root cause of the tube&#8217;s failure, the symptoms where quite obvious.</p>
<p style="text-align: justify;">The most likely theory is that one of the tubes was damaged during the shipment. The broken tube then caused the remaining good tube to overheat and finally burn out during the commissioning tests.</p>
<p style="text-align: justify;">During the comissioning, I noted three strange behaviors of the Alpha91b (across all bands):</p>
<ol>
<li style="text-align: justify;">The tuning peak became extremely sharp; slight readjustments of tune/load would cause the amp to go into error-modus</li>
<li style="text-align: justify;">The tuning meter wasn&#8217;t really useable; Tuning had to be performed with the max-output indicator; Once max output was reached, the tuning LED would always remain 3-4 LEDs right to the center.</li>
<li style="text-align: justify;">Max output was limited to approx. 1000 Watts</li>
</ol>
<div style="text-align: justify;">A few minutes into the testing, fire suddenly shot out of a chimney. The tube in question got so hot that it ignited the red, high-temperature silicon-rubber chimney. Even 30 minutes after removing the power, the tube was still not touchable by hand. Here are some pictures:</div>
<div><img class="alignnone size-full wp-image-1557" title="burnt GU74b tune &amp; silicon chimney in Alpha91b" src="http://www.dh1tw.de/wp-content/uploads/2011/12/DSCN4061-e1323022225402.jpg" alt="burnt GU74b tune &amp; silicon chimney in Alpha91b" width="600" height="448" /></div>
<div><img class="alignnone size-full wp-image-1559" title="burnt GU74b / 4CX800 from Alpha91b" src="http://www.dh1tw.de/wp-content/uploads/2011/12/DSCN4063-e1323022331986.jpg" alt="burnt GU74b / 4CX800 from Alpha91b" width="600" height="448" /></div>
<div><img class="alignnone size-full wp-image-1560" title="burnt high-temperature silicon chimney from my Alpha91b" src="http://www.dh1tw.de/wp-content/uploads/2011/12/DSCN4064-e1323022386851.jpg" alt="burnt high-temperature silicon chimney from my Alpha91b" width="600" height="448" /></div>
<h2>Damage Assessment</h2>
<div style="text-align: justify;">The Alpha91b is an old school amplifier with just a few Integrated Circuits and no Microcontrollers. The Schematic is quite simple and easy to understand. The Manual includes all schematics is available from <a href="http://www.rfconcepts.com/Alpha-91b-Parts">RF-Concepts</a> or other sources like <a href="http://www.qsl.net/dl1stg/Datei/alpha91b.pdf">DG1STG&#8217;s website</a>. The Alpha91b is powered by a matched pair of GU74b / 4CX800 tubes. G8WRB has a great list of <a href="http://www.g8wrb.org">tube datasheets</a> online. Here is the datasheet for Svetlana&#8217;s <a href="http://www.g8wrb.org/data/Svetlana/pdf/4CX800A.pdf">4CX800 / GU74b</a>.</div>
<div style="text-align: justify;">A careful visual inspection showed no other damage than the burnt chimney. Everything else (including the input network &#8211; which is accessible through a cover plate on the bottom of the amp) had no visible damage.</div>
<div style="text-align: justify;">After a phone call with my friend and amplifier expert <a href="http://www.hoeppe.name/1.html">Tom, DJ5RE</a> I decided to perform a couple of measurements / experiments:</div>
<h3>Initial measurements</h3>
<div>Conditions:</div>
<div>
<ul>
<li>Both tubes removed from the Alpha91b</li>
<li>High Voltage connector physically disconnected from the power supply board</li>
</ul>
</div>
<div>Measurements:</div>
<div>
<ul>
<li>Voltage of Grid 1 at the tube sockets</li>
<li>Voltage of Grid 2 at the tube sockets</li>
<li>Voltage of Grid 1 with PTT pressed</li>
</ul>
</div>
<div style="text-align: justify;">to see if the supply voltages were still ok.</div>
<div style="text-align: justify;">Measurements proved that the supply voltages were working as expected and located within the operational boundaries.</div>
<div>
<ul>
<li>Grid 1: -125 V</li>
<li>Grid 2: +350V</li>
<li>Grid 1 (with PTT pressed): -77V</li>
</ul>
</div>
<div>In the next step I tried to get out some RF from the Amp.</div>
<div>
<h3>Advanced tests</h3>
</div>
<div>
<div>Conditions:</div>
<div>
<ul>
<li>Place the visually undamaged GU74b into the first socket and then repeat the test with the same tube in the other socket</li>
<li>Apply high voltage</li>
<li>Connect Dummyload</li>
<li>Apply 5-10 Watts</li>
</ul>
</div>
<div>Measurements:</div>
<div>
<ul>
<li>Output power of the Alpha91</li>
</ul>
</div>
</div>
<div style="text-align: justify;">Unfortunately, this test didn&#8217;t work at all I couldn&#8217;t get out any power of the amplifier. I guess due to the fact that the tube, which was visually ok, was actually  broken.</div>
<h2>Ordering a matched pair of GU74b / 4CX800</h2>
<div style="text-align: justify;">It is absolutely important to replace the tubes with a matched pair. Matched pair means that they have been selected as two tubes with equal parameters. Usually a matched pair is a bit more expensive because the selection has to be done manually.</div>
<div style="text-align: justify;">Today there is still no shortage on GU74b / 4CX800 tubes. Googling for these tube brings up several webshops. Almost all are selling NOS (new old stock). These tubes have been manufactures decades ago, have been stored in russian military depots without being used a single time. Since I needed the tubes on a short notice (this happend just one week before CQWW CW) I considered buying from two sources</div>
<div style="text-align: justify;">
<ul>
<li><a href="http://www.qro-shop.com/">QRO-Shop.com</a> (based in Germany)</li>
<li><a href="http://www.vinecom.co.uk/">Vinecom</a> (based in the UK)</li>
</ul>
</div>
<div style="text-align: justify;">I think both provide a good service. Especially Vinecom puts a lot of effort in <a href="http://www.vinecom.co.uk/gu74b.htm">testing tubes</a> before shipment. But since Vinecom has run out of GU74bs just the day before I called, I bought the tubes from QRO-Shop.com. The owner, Ralf DL3JJ responded very fast and pre-heated both tubes the remaining 9 hours before they left his shop through express shipment the next day.</div>
<h2 style="text-align: justify;">Gettering / Conditioning GU74b / 4CX800 tubes</h2>
<div style="text-align: justify;">Before using transmission tubes after a longer storage period (in my case almost 20 years), the tubes must be conditioned. This process is called Gettering.</div>
<div style="text-align: justify;"><a href="http://blog.kotarak.net/2009/02/gettering-gu74b-4cx800a.html">Andrey, AE1S</a> explains on his blog:</div>
<div style="text-align: justify;"><em>&#8220;There is no such thing as a perfect seal! Vacuum tubes (especially high-power transmitting tubes) not used for a few years might exhibit serious problems if put into service without a prior conditioning of the vacuum. With time, gas molecules leak inside or are released by the tube&#8217;s internal components. With years and years of storage, the vacuum could deteriorate and once the tube is used for the first time it could &#8220;flash-over&#8221; &#8211; the gas molecules inside will become ionized by the electron flow and this will create a flash of high-temperature plasma between the cathode and anode, damaging the grid(s) and other internal components. A chemical composition, called &#8220;getter&#8221; is factory deposited inside the tube to maintain the quality of the vacuum &#8211; this is the shiny, metallic area on the inside wall of the glass envelope (in smaller tubes). In power tubes, the activation of the getter is done by heat. Therefore, it is recommended, before putting into service a power tube with very long on-the-shelf life (more than a couple of years) to condition the vacuum first. This is done by applying power to the filament (cathode heater) only and leaving it on for a period of time. The hot filament will heat up the getter and also will improve the vacuum by itself (some gases will react with the hot tungsten filament and the cathode surface).&#8221;</em></div>
<div style="text-align: justify;">Wikipedia has also an entry about the <a href="http://en.wikipedia.org/wiki/Getter">Getter of tubes</a>. This is no hocus-pocus &#8211; it is absolutely crucial to getter the tube before applying HV &amp; power.</div>
<div style="text-align: justify;">Other articles I found about gettering GU74bs / 4CX800s are here:</div>
<div style="text-align: justify;">
<ul>
<li><a href="http://www.ve1dx.net/acomtube/">VE1DX on conditioning a NOS GU74b tube for his ACOM1000</a></li>
<li><a href="http://www.sm5bsz.com/recondit.htm">SM5BSZ, SM6EYH and ON4ADN on reconditioning tubes</a></li>
</ul>
</div>
<div style="text-align: justify;">Thanks to the help of my friend Ariel, CX5AO we found a way to condition the tubes within the Alpha91b. So here is the CX5AO way:</div>
<div style="text-align: justify;">
<ol>
<li>Remove the high voltage connector from the Power Supply board</li>
<li>Remove J1 and J3 from the Power Supply board and connect them as indicated on the picture.</li>
</ol>
</div>
<div style="text-align: justify;">J1 connects the support voltages (Grid1, Grid2, Heating) to the power supply board. Since the power supply board is nothing else than a simple jumper for the heating supply, the connectors can be rearranged so that no Grid voltages are connected to the power supply board. We don&#8217;t want to apply any other voltage than the heating voltage during the conditioning process.</div>
<div style="text-align: justify;">NO HV, NO GRID1 and NO GRID2.</div>
<div style="text-align: justify;">IMPORTANT: Make sure that you have done this correct. Doing this wrong can damage you new tubes (and maybe even the whole amplifier!!!). Double check it! Better: Tripple check it!</div>
<div>
<p><div id="attachment_1562" class="wp-caption alignnone" style="width: 394px"><img class="size-full wp-image-1562" title="Schematic of Alpha91b power supply board" src="http://www.dh1tw.de/wp-content/uploads/2011/12/Screen-Shot-2011-12-04-at-9.42.44-PM1.png" alt="Schematic of Alpha91b power supply board" width="384" height="306" /><p class="wp-caption-text">Schematic of Alpha91b power supply board (Heating is directly connecting to J3)</p></div></p>
<p><div id="attachment_1563" class="wp-caption alignnone" style="width: 610px"><img class="size-full wp-image-1563" title="Alpha91b Power supply board without any modifications" src="http://www.dh1tw.de/wp-content/uploads/2011/12/IGP8033-e1323032499608.jpg" alt="Alpha91b Power supply board without any modifications" width="600" height="398" /><p class="wp-caption-text">Alpha91b Power supply board without any modifications</p></div></p>
<p><div id="attachment_1564" class="wp-caption alignnone" style="width: 610px"><img class="size-medium wp-image-1564" title="Alpha91b Power Supply board with CX5AO method to only apply heating voltage" src="http://www.dh1tw.de/wp-content/uploads/2011/12/IGP8040-600x398.jpg" alt="Alpha91b Power Supply board with CX5AO method to only apply heating voltage" width="600" height="398" /><p class="wp-caption-text">Alpha91b Power Supply board with CX5AO method to only apply heating voltage. HV connector is disconnceted!</p></div></p>
<p><div id="attachment_1566" class="wp-caption alignnone" style="width: 610px"><img class="size-medium wp-image-1566" title="Alpha91b Power Supply Board - CX5AO method - different view" src="http://www.dh1tw.de/wp-content/uploads/2011/12/IGP8038-600x398.jpg" alt="Alpha91b Power Supply Board - CX5AO method - different view" width="600" height="398" /><p class="wp-caption-text">Alpha91b Power Supply Board - CX5AO method - different view</p></div></p>
</div>
<div style="text-align: justify;">With this modification we left the Amp for appox. 24 hours running. Since only the heating was applied, the tubes had sufficient time to condition the vacuum.</div>
<h2 style="text-align: justify;">New Chimney</h2>
<div style="text-align: justify;">In the meantime we installed a new chimney. Special thanks to Imanol, EC2DX who donated the 2mm PTFE teflon sheet.</div>
<div><img class="alignnone size-full wp-image-1567" title="Alpha91b with new Chimney" src="http://www.dh1tw.de/wp-content/uploads/2011/12/IGP8018-e1323034079401.jpg" alt="" width="600" height="398" /></div>
<h2>Applying HV &amp; power</h2>
<div style="text-align: justify;">After sufficient gettering, we connected the Grid and HV voltages to the tube. (NEVER connected HV without the grid voltages!!) and&#8230;. no big bang. After smoothly applying a few watts, the Alpha91b behaved as before. During the first 1-2 hours we drove the amplifier carefully with a just a few hundert watts doing some rag chewing on the air. When the contest started the Amp was driven up to full power. Without any moaning, full 1500 watts were back on all bands.</div>
<h2>Thanks to&#8230;</h2>
<div>DJ5RE, CX5AO, EC2DX for their extensive help!</div>
<h2>More resources</h2>
<div style="text-align: justify;">Another great resource (tnx <a href="http://www.technik.dhbw-ravensburg.de/~lau/">DL1GLH</a>) is the webpage of Penta Laboratories. The explain in detail <a href="http://pentalaboratories.com/tech_no54.html">how to extend the life of tubes</a>. Do you know how the grid, the anode or the getter in a tube actually looks like? If not, check out their site.</div>
<img src="http://feeds.feedburner.com/~r/dh1tw/Mnut/~4/eY1DVhz9hmQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.dh1tw.de/how-to-exchange-the-gu74b-4cx800-tubes-on-your-alpha91b-alpha99-amplifier/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:thumbnail url="http://www.dh1tw.de/wp-content/uploads/2011/12/DSCN40611-133x100.jpg" />
		<media:content url="http://www.dh1tw.de/wp-content/uploads/2011/12/DSCN40611-e1323034994717.jpg" medium="image">
			<media:title type="html">ampli</media:title>
			<media:thumbnail url="http://www.dh1tw.de/wp-content/uploads/2011/12/DSCN40611-133x100.jpg" />
		</media:content>
		<media:content url="http://www.dh1tw.de/wp-content/uploads/2011/12/DSCN4061-e1323022225402.jpg" medium="image">
			<media:title type="html">burnt GU74b tune &amp; silicon chimney in Alpha91b</media:title>
			<media:thumbnail url="http://www.dh1tw.de/wp-content/uploads/2011/12/DSCN4061-133x100.jpg" />
		</media:content>
		<media:content url="http://www.dh1tw.de/wp-content/uploads/2011/12/DSCN4063-e1323022331986.jpg" medium="image">
			<media:title type="html">burnt GU74b / 4CX800 from Alpha91b</media:title>
			<media:thumbnail url="http://www.dh1tw.de/wp-content/uploads/2011/12/DSCN4063-133x100.jpg" />
		</media:content>
		<media:content url="http://www.dh1tw.de/wp-content/uploads/2011/12/DSCN4064-e1323022386851.jpg" medium="image">
			<media:title type="html">burnt high-temperature silicon chimney from my Alpha91b</media:title>
			<media:thumbnail url="http://www.dh1tw.de/wp-content/uploads/2011/12/DSCN4064-133x100.jpg" />
		</media:content>
		<media:content url="http://www.dh1tw.de/wp-content/uploads/2011/12/Screen-Shot-2011-12-04-at-9.42.44-PM1.png" medium="image">
			<media:title type="html">Schematic of Alpha91b power supply board</media:title>
			<media:description type="html">Schematic of Alpha91b power supply board (Heating is directly connecting to J3)</media:description>
			<media:thumbnail url="http://www.dh1tw.de/wp-content/uploads/2011/12/Screen-Shot-2011-12-04-at-9.42.44-PM1-125x100.png" />
		</media:content>
		<media:content url="http://www.dh1tw.de/wp-content/uploads/2011/12/IGP8033-e1323032499608.jpg" medium="image">
			<media:title type="html">Alpha91b Power supply board without any modifications</media:title>
			<media:description type="html">Alpha91b Power supply board without any modifications</media:description>
			<media:thumbnail url="http://www.dh1tw.de/wp-content/uploads/2011/12/IGP8033-150x100.jpg" />
		</media:content>
		<media:content url="http://www.dh1tw.de/wp-content/uploads/2011/12/IGP8040-e1323032669776.jpg" medium="image">
			<media:title type="html">Alpha91b Power Supply board with CX5AO method to only apply heating voltage</media:title>
			<media:description type="html">Alpha91b Power Supply board with CX5AO method to only apply heating voltage. HV connector is disconnceted!</media:description>
			<media:thumbnail url="http://www.dh1tw.de/wp-content/uploads/2011/12/IGP8040-150x100.jpg" />
		</media:content>
		<media:content url="http://www.dh1tw.de/wp-content/uploads/2011/12/IGP8038-e1323033241427.jpg" medium="image">
			<media:title type="html">Alpha91b Power Supply Board – CX5AO method – different view</media:title>
			<media:description type="html">Alpha91b Power Supply Board - CX5AO method - different view</media:description>
			<media:thumbnail url="http://www.dh1tw.de/wp-content/uploads/2011/12/IGP8038-150x100.jpg" />
		</media:content>
		<media:content url="http://www.dh1tw.de/wp-content/uploads/2011/12/IGP8018-e1323034079401.jpg" medium="image">
			<media:title type="html">Alpha91b with new Chimney</media:title>
			<media:thumbnail url="http://www.dh1tw.de/wp-content/uploads/2011/12/IGP8018-150x100.jpg" />
		</media:content>
	<feedburner:origLink>http://www.dh1tw.de/how-to-exchange-the-gu74b-4cx800-tubes-on-your-alpha91b-alpha99-amplifier?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=how-to-exchange-the-gu74b-4cx800-tubes-on-your-alpha91b-alpha99-amplifier</feedburner:origLink></item>
	</channel>
</rss>

