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

<channel>
	<title>சுதர்சன் சாந்தியப்பன் &#187; Electrical</title>
	<atom:link href="http://sudarsun.in/blog/category/electrical/feed/" rel="self" type="application/rss+xml" />
	<link>http://sudarsun.in/blog</link>
	<description>Dream of the Impossible™</description>
	<lastBuildDate>Sun, 05 Feb 2012 12:03:07 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Temperature Monitoring Device</title>
		<link>http://sudarsun.in/blog/2012/01/temperature-monitoring-device/</link>
		<comments>http://sudarsun.in/blog/2012/01/temperature-monitoring-device/#comments</comments>
		<pubDate>Sun, 01 Jan 2012 17:25:08 +0000</pubDate>
		<dc:creator>sudarsun</dc:creator>
				<category><![CDATA[Construction]]></category>
		<category><![CDATA[Electrical]]></category>
		<category><![CDATA[Electronics]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[arduino]]></category>
		<category><![CDATA[atmega8]]></category>
		<category><![CDATA[atmel]]></category>
		<category><![CDATA[avr]]></category>
		<category><![CDATA[development board]]></category>
		<category><![CDATA[freeduino]]></category>
		<category><![CDATA[hitachi]]></category>
		<category><![CDATA[lcd]]></category>
		<category><![CDATA[lm35]]></category>
		<category><![CDATA[microcontroller]]></category>
		<category><![CDATA[onlinetps]]></category>
		<category><![CDATA[sensor]]></category>
		<category><![CDATA[usbasp]]></category>

		<guid isPermaLink="false">http://sudarsun.in/blog/2012/01/temperature-monitoring-device/</guid>
		<description><![CDATA[LM35 Temperature Sensor The System. The monitor. The mixed water line: The hot water line: The cold water line: monitor opened up: the atmega8 microcontroller the lcd unit: theboard: inside the monitor: The AVR code. const&#160;int COLD = 0, HOT = 1, MIXED = 2, CALIBRATE = 3;const&#160;int PWMPORT = 5; float SCALE = 5000.0/1024.0; [...]]]></description>
			<content:encoded><![CDATA[<p>LM35 Temperature Sensor <img style="max-width: 800px;" src="http://sudarsun.in/blog/wp-content/uploads/2012/01/lm35.jpg" alt="" /></p>
<p>The System. <img style="max-width: 800px;" src="http://sudarsun.in/blog/wp-content/uploads/2012/01/setup.jpg" alt="" /></p>
<p>The monitor. <img style="max-width: 800px;" src="http://sudarsun.in/blog/wp-content/uploads/2012/01/monitor.jpg" alt="" /></p>
<p>The mixed water line: <img style="max-width: 800px;" src="http://sudarsun.in/blog/wp-content/uploads/2012/01/mixed.jpg" alt="" /></p>
<p>The hot water line: <img style="max-width: 800px;" src="http://sudarsun.in/blog/wp-content/uploads/2012/01/hot.jpg" alt="" /></p>
<p>The cold water line: <img style="max-width: 800px;" src="http://sudarsun.in/blog/wp-content/uploads/2012/01/cold1.jpg" alt="" /><br /><img style="max-width: 800px;" src="http://sudarsun.in/blog/wp-content/uploads/2012/01/cold2.jpg" alt="" /></p>
<p>monitor opened up: <img style="max-width: 800px;" src="http://sudarsun.in/blog/wp-content/uploads/2012/01/opened.jpg" alt="" /></p>
<p>the atmega8 microcontroller <img style="max-width: 800px;" src="http://sudarsun.in/blog/wp-content/uploads/2012/01/uP.jpg" alt="" /></p>
<p>the lcd unit: <img style="max-width: 800px;" src="http://sudarsun.in/blog/wp-content/uploads/2012/01/lcd.jpg" alt="" /></p>
<p>theboard: <img style="max-width: 800px;" src="http://sudarsun.in/blog/wp-content/uploads/2012/01/board.jpg" alt="" /></p>
<p>inside the monitor: <img style="max-width: 800px;" src="http://sudarsun.in/blog/wp-content/uploads/2012/01/inside1.jpg" alt="" /></p>
<p>The AVR code.<br />
<blockquote>const&nbsp;<span style="color: #CC6600;">int</span> COLD = 0, HOT = 1, MIXED = 2, CALIBRATE = 3;<br />const&nbsp;<span style="color: #CC6600;">int</span> PWMPORT = 5;</p>
<p><span style="color: #CC6600;">float</span> SCALE = 5000.0/1024.0; <span style="color: #7E7E7E;">// 10 bit resolution for ADC</span><br />const&nbsp;<span style="color: #CC6600;">float</span> LM35SCALE = 10;  <span style="color: #7E7E7E;">// 10mV per Centigrade</span></p>
<p>#include&nbsp;&lt;<span style="color: #CC6600;">LiquidCrystal</span>.h&gt;</p>
<p><span style="color: #CC6600;">LiquidCrystal</span> lcd(13, 12, 11, 10, 9, 8 );</p>
<p><span style="color: #CC6600;">byte</span> smiley[8] = {<br />&nbsp;&nbsp;<span style="color: #006699;">B00010</span>,<br />&nbsp;&nbsp;<span style="color: #006699;">B00101</span>,<br />&nbsp;&nbsp;<span style="color: #006699;">B00010</span>,<br />&nbsp;&nbsp;<span style="color: #006699;">B00000</span>,<br />&nbsp;&nbsp;<span style="color: #006699;">B00000</span>,<br />&nbsp;&nbsp;<span style="color: #006699;">B00000</span>,<br />&nbsp;&nbsp;<span style="color: #006699;">B00000</span>,<br />};</p>
<p><span style="color: #CC6600;">float</span> Calibrate( <span style="color: #CC6600;">void</span> )<br />{<br />&nbsp;&nbsp;<span style="color: #7E7E7E;">// write 5v to PWM port  </span><br />&nbsp;&nbsp;<span style="color: #CC6600;">analogWrite</span>(PWMPORT, 255);</p>
<p>&nbsp;&nbsp;<span style="color: #7E7E7E;">// read the 5v analog value in the calibrate port</span><br />&nbsp;&nbsp;<span style="color: #CC6600;">delay</span>(500);<br />&nbsp;&nbsp;<span style="color: #CC6600;">int</span> val = <span style="color: #CC6600;">analogRead</span>(CALIBRATE);</p>
<p>&nbsp;&nbsp;<span style="color: #7E7E7E;">// read again the 5v analog value in the calibrate port</span><br />&nbsp;&nbsp;<span style="color: #CC6600;">delay</span>(100);<br />&nbsp;&nbsp;val&nbsp;=&nbsp;<span style="color: #CC6600;">analogRead</span>(CALIBRATE);</p>
<p>&nbsp;&nbsp;<span style="color: #7E7E7E;">// whatever digital value we read is the range of output that we would get for 5v input.</span><br />&nbsp;&nbsp;<span style="color: #7E7E7E;">// so, set the scale appropriately.</span><br />&nbsp;&nbsp;SCALE&nbsp;=&nbsp;5000.0/(<span style="color: #CC6600;">float</span>)val;    <br />&nbsp;&nbsp;<br />&nbsp;&nbsp;<span style="color: #CC6600;">return</span> SCALE;<br />}</p>
<p><span style="color: #CC6600;">void</span> <span style="color: #CC6600;"><b>setup</b></span>()<br />{<br />&nbsp;&nbsp;<span style="color: #CC6600;">pinMode</span>(PWMPORT, <span style="color: #006699;">OUTPUT</span>);<br />&nbsp;&nbsp;<br />&nbsp;&nbsp;lcd.<span style="color: #CC6600;">createChar</span>(0, smiley);<br />&nbsp;&nbsp;lcd.<span style="color: #CC6600;">begin</span>(16,2);<br />&nbsp;&nbsp;<br />&nbsp;&nbsp;lcd.<span style="color: #CC6600;">setCursor</span>(0,0);<br />&nbsp;&nbsp;lcd.<span style="color: #CC6600;">print</span>(<span style="color: #006699;">&#8220;Calibrating..&#8221;</span>);<br />&nbsp;&nbsp;<span style="color: #CC6600;">float</span> scale = Calibrate();<br />&nbsp;&nbsp;lcd.<span style="color: #CC6600;">setCursor</span>(0,1);<br />&nbsp;&nbsp;lcd.<span style="color: #CC6600;">print</span>(<span style="color: #006699;">&#8220;Scale=&#8221;</span>);<br />&nbsp;&nbsp;lcd.<span style="color: #CC6600;">print</span>(scale);<br />&nbsp;&nbsp;<span style="color: #CC6600;">delay</span>(1000);<br />}</p>
<p><span style="color: #CC6600;">int</span> Temp( <span style="color: #CC6600;">int</span> inADC )<br />{<br />&nbsp;&nbsp;<span style="color: #CC6600;">float</span> lm35volts = (<span style="color: #CC6600;">float</span>)inADC * SCALE;<br />&nbsp;&nbsp;<span style="color: #CC6600;">float</span> temp = lm35volts/LM35SCALE;<br />&nbsp;&nbsp;<br />&nbsp;&nbsp;<span style="color: #CC6600;">return</span> (<span style="color: #CC6600;">int</span>)temp;<br />}</p>
<p><span style="color: #CC6600;">int</span> ReadData( <span style="color: #CC6600;">int</span> port )<br />{<br />&nbsp;&nbsp;<span style="color: #CC6600;">int</span> data = -1;<br />&nbsp;&nbsp;<span style="color: #CC6600;">for</span> ( <span style="color: #CC6600;">int</span> i = 0; i &lt; 3; ++i ) <br />&nbsp;&nbsp;{<br />&nbsp;&nbsp;&nbsp;&nbsp;data&nbsp;=&nbsp;<span style="color: #CC6600;">analogRead</span>( port );<br />&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: #CC6600;">delay</span>(100);<br />&nbsp;&nbsp;}<br />&nbsp;&nbsp;<br />&nbsp;&nbsp;<span style="color: #CC6600;">return</span> data;<br />}</p>
<p><span style="color: #CC6600;">void</span> <span style="color: #CC6600;"><b>loop</b></span>()<br />{<br />&nbsp;&nbsp;<span style="color: #CC6600;">int</span> cold = ReadData( COLD );<br />&nbsp;&nbsp;<span style="color: #CC6600;">int</span> hot  = ReadData( HOT );<br />&nbsp;&nbsp;<span style="color: #CC6600;">int</span> mixed= ReadData( MIXED );<br />&nbsp;&nbsp;<br />&nbsp;&nbsp;<span style="color: #CC6600;">int</span> cold_temp = Temp(cold);<br />&nbsp;&nbsp;<span style="color: #CC6600;">int</span> hot_temp = Temp(hot);<br />&nbsp;&nbsp;<span style="color: #CC6600;">int</span> mixed_temp = Temp(mixed);<br />&nbsp;&nbsp;<br />&nbsp;&nbsp;lcd.<span style="color: #CC6600;">clear</span>();</p>
<p>&nbsp;&nbsp;lcd.<span style="color: #CC6600;">print</span>( <span style="color: #006699;">&#8220;C=&#8221;</span> );<br />&nbsp;&nbsp;lcd.<span style="color: #CC6600;">print</span>( cold_temp );<br />&nbsp;&nbsp;lcd.<span style="color: #CC6600;">write</span>(0);<br />&nbsp;&nbsp;lcd.<span style="color: #CC6600;">print</span>(<span style="color: #006699;">&#8220;C&#8221;</span>);<br />&nbsp;&nbsp;lcd.<span style="color: #CC6600;">print</span>( <span style="color: #006699;">&#8221; H=&#8221;</span> );<br />&nbsp;&nbsp;lcd.<span style="color: #CC6600;">print</span>( hot_temp );<br />&nbsp;&nbsp;lcd.<span style="color: #CC6600;">write</span>(0);<br />&nbsp;&nbsp;lcd.<span style="color: #CC6600;">print</span>(<span style="color: #006699;">&#8220;C&#8221;</span>);<br />&nbsp;&nbsp;<br />&nbsp;&nbsp;lcd.<span style="color: #CC6600;">setCursor</span>(0,1);<br />&nbsp;&nbsp;lcd.<span style="color: #CC6600;">print</span>( <span style="color: #006699;">&#8220;Mixed=&#8221;</span> );<br />&nbsp;&nbsp;lcd.<span style="color: #CC6600;">print</span>( mixed_temp );<br />&nbsp;&nbsp;lcd.<span style="color: #CC6600;">write</span>(0);<br />&nbsp;&nbsp;lcd.<span style="color: #CC6600;">print</span>(<span style="color: #006699;">&#8220;C&#8221;</span>);<br />&nbsp;&nbsp;<br />&nbsp;&nbsp;<span style="color: #CC6600;">delay</span>(1000);<br />}</p>
</blockquote>
<p>
<div class="zemanta-pixie"><img class="zemanta-pixie-img" alt="" src="http://img.zemanta.com/pixy.gif?x-id=7ff3ac86-2329-8470-a0f4-72287d4bd8f3" /></div>
]]></content:encoded>
			<wfw:commentRss>http://sudarsun.in/blog/2012/01/temperature-monitoring-device/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AWG Vs Current Flow Capacity</title>
		<link>http://sudarsun.in/blog/2011/09/awg-vs-current-flow-capacity/</link>
		<comments>http://sudarsun.in/blog/2011/09/awg-vs-current-flow-capacity/#comments</comments>
		<pubDate>Tue, 13 Sep 2011 09:05:39 +0000</pubDate>
		<dc:creator>sudarsun</dc:creator>
				<category><![CDATA[Construction]]></category>
		<category><![CDATA[Electrical]]></category>
		<category><![CDATA[Help]]></category>
		<category><![CDATA[KnowWhat]]></category>
		<category><![CDATA[amps]]></category>
		<category><![CDATA[awg]]></category>
		<category><![CDATA[copper]]></category>
		<category><![CDATA[current]]></category>
		<category><![CDATA[gauge]]></category>
		<category><![CDATA[resistance]]></category>
		<category><![CDATA[swg]]></category>

		<guid isPermaLink="false">http://sudarsun.in/blog/2011/09/awg-vs-current-flow-capacity/</guid>
		<description><![CDATA[This write up is taken from http://www.engineeringtoolbox.com/wire-gauges-d_419.html The AWG &#8211; American Wire Gauge &#8211; is used as a standard method of denoting wire diameter, measuring the diameter of the conductor (the bare wire) with the insulation removed. AWG is sometimes also known as Brown and Sharpe (B&#38;S) Wire Gauge. The AWG table below is for [...]]]></description>
			<content:encoded><![CDATA[<p>This write up is taken from <a target="_blank" href="http://www.engineeringtoolbox.com/wire-gauges-d_419.html">http://www.engineeringtoolbox.com/wire-gauges-d_419.html</a> </p>
<div align="justify">The AWG &#8211; American Wire Gauge &#8211; is used as a standard method of  denoting wire diameter, measuring the diameter of the conductor (the  bare wire) with the insulation removed. AWG is sometimes also known as  Brown and Sharpe (B&amp;S) Wire Gauge. </div>
<p align="justify">The AWG table below is for a single, solid, round conductor. Because of the small gaps between the strands in a stranded wire, a stranded wire with the same  current-carrying capacity and electrical resistance as a solid wire,  always have a slightly larger overall diameter. The higher the  number &#8211; the thinner the wire. Typical household wiring is AWG number 12 or 14. For telephone wires there are common with AWG 22, 24, or 26.</p>
<table class="large" border="1" cellpadding="0" cellspacing="0" align="center">
<tbody>
<tr>
<td bgcolor="#ffffcc" width="16%">AWG</td>
<td bgcolor="#ffffcc" width="16%">Diameter<br /> (mm)</td>
<td bgcolor="#ffffcc" width="16%">Diameter<br /> (in)</td>
<td bgcolor="#ffffcc" width="16%">Square<br /> (mm<sup>2</sup>)</td>
<td bgcolor="#ffffcc" width="16%">Resistance<br /> (ohm/1000m)</td>
</tr>
<tr>
<td>40</td>
<td>0.08</td>
<td>.</td>
<td>0.0050</td>
<td>3420</td>
</tr>
<tr>
<td>39</td>
<td>0.09</td>
<td>.</td>
<td>0.0064</td>
<td>2700</td>
</tr>
<tr>
<td>38</td>
<td>0.10</td>
<td>0.0040</td>
<td>0.0078</td>
<td>2190</td>
</tr>
<tr>
<td>37</td>
<td>0.11</td>
<td>0.0045</td>
<td>0.0095</td>
<td>1810</td>
</tr>
<tr>
<td>36</td>
<td>0.13</td>
<td>0.005</td>
<td>0.013</td>
<td>1300</td>
</tr>
<tr>
<td>35</td>
<td>0.14</td>
<td>0.0056</td>
<td>0.015</td>
<td>1120</td>
</tr>
<tr>
<td>34</td>
<td>0.16</td>
<td>0.0063</td>
<td>0.020</td>
<td>844</td>
</tr>
<tr>
<td>33</td>
<td>0.18</td>
<td>0.0071</td>
<td>0.026</td>
<td>676</td>
</tr>
<tr>
<td>32</td>
<td>0.20</td>
<td>0.008</td>
<td>0.031</td>
<td>547</td>
</tr>
<tr>
<td>30</td>
<td>0.25</td>
<td>0.01</td>
<td>0.049</td>
<td>351</td>
</tr>
<tr>
<td>28</td>
<td>0.33</td>
<td>0.013</td>
<td>0.08</td>
<td>232.0</td>
</tr>
<tr>
<td>27</td>
<td>0.36</td>
<td>0.018</td>
<td>0.096</td>
<td>178</td>
</tr>
<tr>
<td>26</td>
<td>0.41</td>
<td>0.016</td>
<td>0.13</td>
<td>137</td>
</tr>
<tr>
<td>25</td>
<td>0.45</td>
<td>0.018</td>
<td>0.16</td>
<td>108</td>
</tr>
<tr>
<td>24</td>
<td>0.51</td>
<td>0.02</td>
<td>0.20</td>
<td>87.5</td>
</tr>
<tr>
<td>22</td>
<td>0.64</td>
<td>0.025</td>
<td>0.33</td>
<td>51.7</td>
</tr>
<tr>
<td>20</td>
<td>0.81</td>
<td>0.032</td>
<td>0.50</td>
<td>34.1</td>
</tr>
<tr>
<td>18</td>
<td>1.02</td>
<td>0.04</td>
<td>0.82</td>
<td>21.9</td>
</tr>
<tr>
<td>16</td>
<td>1.29</td>
<td>0.051</td>
<td>1.3</td>
<td>13.0</td>
</tr>
<tr>
<td>14</td>
<td>1.63</td>
<td>0.064</td>
<td>2.0</td>
<td>8.54</td>
</tr>
<tr>
<td>13</td>
<td>1.80</td>
<td>0.072</td>
<td>2.6</td>
<td>6.76</td>
</tr>
<tr>
<td>12</td>
<td>2.05</td>
<td>0.081</td>
<td>3.3</td>
<td>5.4</td>
</tr>
<tr>
<td>10</td>
<td>2.59</td>
<td>0.10</td>
<td>5.26</td>
<td>3.4</td>
</tr>
<tr>
<td>8</td>
<td>3.25</td>
<td>0.13</td>
<td>8.30</td>
<td>2.2</td>
</tr>
<tr>
<td>6</td>
<td>4.115</td>
<td>0.17</td>
<td>13.30</td>
<td>1.5</td>
</tr>
<tr>
<td>4</td>
<td>5.189</td>
<td>0.20</td>
<td>21.15</td>
<td>0.8</td>
</tr>
<tr>
<td>2</td>
<td>6.543</td>
<td>0.26</td>
<td>33.62</td>
<td>0.5</td>
</tr>
<tr>
<td>1</td>
<td>7.348</td>
<td>0.29</td>
<td>42.41</td>
<td>0.4</td>
</tr>
<tr>
<td>0</td>
<td>8.252</td>
<td>0.33</td>
<td>53.49</td>
<td>0.31</td>
</tr>
<tr>
<td>00 (2/0)</td>
<td>9.266</td>
<td>0.37</td>
<td>67.43</td>
<td>0.25</td>
</tr>
<tr>
<td>000 (3/0)</td>
<td>10.40</td>
<td>0.41</td>
<td>85.01</td>
<td>0.2</td>
</tr>
<tr>
<td>0000 (4/0)</td>
<td>11.684</td>
<td>0.46</td>
<td>107.22</td>
<td>0.16</td>
</tr>
</tbody>
</table>
<p align="justify">The higher the gauge number, the smaller the diameter, and the thinner the wire.&nbsp; Because of less electrical resistance a thick wire will carry more current with less voltage drop than a thin wire. For a long distance it may be  necessary to increase the wire diameter &#8211; reducing the gauge &#8211; to limit  the voltage drop.</p>
<p>
<table class="large" border="1" cellpadding="0" cellspacing="0" width="80%" align="center">
<tbody>
<tr>
<td colspan="11"><a href="http://www.engineeringtoolbox.com/wire-gauges-d_419.html">American Wire Gauge (AWG)</a></td>
</tr>
<tr>
<td rowspan="2" bgcolor="#ccffcc">Length<br />  (feet)</td>
<td colspan="10" bgcolor="#ffffcc">Current (amps)</td>
</tr>
<tr>
<td bgcolor="#ffffcc">5</td>
<td bgcolor="#ffffcc">10</td>
<td bgcolor="#ffffcc">15</td>
<td bgcolor="#ffffcc">20</td>
<td bgcolor="#ffffcc">25</td>
<td bgcolor="#ffffcc">30</td>
<td bgcolor="#ffffcc">40</td>
<td bgcolor="#ffffcc">50</td>
<td bgcolor="#ffffcc">60</td>
<td bgcolor="#ffffcc">70</td>
</tr>
<tr>
<td bgcolor="#ccffcc" width="9%">15</td>
<td width="9%">16</td>
<td width="9%">12</td>
<td width="9%">10</td>
<td width="9%">10</td>
<td width="9%">8</td>
<td width="9%">8</td>
<td width="9%">6</td>
<td width="9%">6</td>
<td width="9%">4</td>
<td width="9%">4</td>
</tr>
<tr>
<td bgcolor="#ccffcc">20</td>
<td>14</td>
<td>12</td>
<td>10</td>
<td>8</td>
<td>8</td>
<td>6</td>
<td>6</td>
<td>4</td>
<td>4</td>
<td>4</td>
</tr>
<tr>
<td bgcolor="#ccffcc">25</td>
<td>14</td>
<td>10</td>
<td>8</td>
<td>8</td>
<td>6</td>
<td>6</td>
<td>4</td>
<td>4</td>
<td>2</td>
<td>2</td>
</tr>
<tr>
<td bgcolor="#ccffcc">30</td>
<td>12</td>
<td>10</td>
<td>8</td>
<td>6</td>
<td>6</td>
<td>4</td>
<td>4</td>
<td>2</td>
<td>2</td>
<td>2</td>
</tr>
<tr>
<td bgcolor="#ccffcc">40</td>
<td>12</td>
<td>8</td>
<td>6</td>
<td>6</td>
<td>4</td>
<td>4</td>
<td>2</td>
<td>2</td>
<td>1</td>
<td>1/0</td>
</tr>
<tr>
<td bgcolor="#ccffcc">50</td>
<td>10</td>
<td>8</td>
<td>6</td>
<td>4</td>
<td>4</td>
<td>2</td>
<td>2</td>
<td>1</td>
<td>1/0</td>
<td>1/0</td>
</tr>
<tr>
<td bgcolor="#ccffcc">60</td>
<td>10</td>
<td>6</td>
<td>6</td>
<td>4</td>
<td>2</td>
<td>2</td>
<td>1</td>
<td>1/0</td>
<td>2/0</td>
<td>2/0</td>
</tr>
<tr>
<td bgcolor="#ccffcc">70</td>
<td>10</td>
<td>6</td>
<td>4</td>
<td>2</td>
<td>2</td>
<td>2</td>
<td>1/0</td>
<td>2/0</td>
<td>2/0</td>
<td>3/0</td>
</tr>
<tr>
<td bgcolor="#ccffcc">80</td>
<td>8</td>
<td>6</td>
<td>4</td>
<td>2</td>
<td>2</td>
<td>1</td>
<td>1/0</td>
<td>2/0</td>
<td>3/0</td>
<td>3/0</td>
</tr>
<tr>
<td bgcolor="#ccffcc">90</td>
<td>8</td>
<td>4</td>
<td>4</td>
<td>2</td>
<td>1</td>
<td>1/0</td>
<td>2/0</td>
<td>3/0</td>
<td>3/0</td>
<td>4/0</td>
</tr>
</tbody>
</table>
<div align="center"><b>Standard Wire Gauge (SWG)</b></div>
<p>
<table class="medium" border="1" cellpadding="0" cellspacing="0" height="1487" width="166" align="center">
<tbody>
<tr>
<td style="width: 33%; background-color: rgb(255, 255, 204);">SWG</td>
<td style="width: 33%; background-color: rgb(255, 255, 204);">inches</td>
<td style="width: 33%; background-color: rgb(255, 255, 204);">mm</td>
</tr>
<tr>
<td>7/0</td>
<td>0.500</td>
<td>12.700</td>
</tr>
<tr>
<td>6/0</td>
<td>0.464</td>
<td>11.786</td>
</tr>
<tr>
<td>5/0</td>
<td>0.432</td>
<td>10.973</td>
</tr>
<tr>
<td>4/0</td>
<td>0.400</td>
<td>10.160</td>
</tr>
<tr>
<td>3/0</td>
<td>0.372</td>
<td>9.449</td>
</tr>
<tr>
<td>2/0</td>
<td>0.348</td>
<td>8.839</td>
</tr>
<tr>
<td>1/0</td>
<td>0.324</td>
<td>8.236</td>
</tr>
<tr>
<td>1</td>
<td>0.300</td>
<td>7.620</td>
</tr>
<tr>
<td>2</td>
<td>0.276</td>
<td>7.010</td>
</tr>
<tr>
<td>3</td>
<td>0.252</td>
<td>6.401</td>
</tr>
<tr>
<td>4</td>
<td>0.232</td>
<td>5.893</td>
</tr>
<tr>
<td>5</td>
<td>0.212</td>
<td>5.385</td>
</tr>
<tr>
<td>6</td>
<td>0.192</td>
<td>4.877</td>
</tr>
<tr>
<td>7</td>
<td>0.176</td>
<td>4.470</td>
</tr>
<tr>
<td>8</td>
<td>0.160</td>
<td>4.064</td>
</tr>
<tr>
<td>9</td>
<td>0.144</td>
<td>3.658</td>
</tr>
<tr>
<td>10</td>
<td>0.128</td>
<td>3.251</td>
</tr>
<tr>
<td>11</td>
<td>0.116</td>
<td>2.946</td>
</tr>
<tr>
<td>12</td>
<td>0.104</td>
<td>2.642</td>
</tr>
<tr>
<td>13</td>
<td>0.092</td>
<td>2.337</td>
</tr>
<tr>
<td>14</td>
<td>0.080</td>
<td>2.032</td>
</tr>
<tr>
<td>15</td>
<td>0.072</td>
<td>1.829</td>
</tr>
<tr>
<td>16</td>
<td>0.064</td>
<td>1.626</td>
</tr>
<tr>
<td>17</td>
<td>0.056</td>
<td>1.422</td>
</tr>
<tr>
<td>18</td>
<td>0.048</td>
<td>1.219</td>
</tr>
<tr>
<td>19</td>
<td>0.040</td>
<td>1.016</td>
</tr>
<tr>
<td>20</td>
<td>0.036</td>
<td>0.914</td>
</tr>
<tr>
<td>21</td>
<td>0.032</td>
<td>0.813</td>
</tr>
<tr>
<td>22</td>
<td>0.028</td>
<td>0.711</td>
</tr>
<tr>
<td>23</td>
<td>0.024</td>
<td>0.610</td>
</tr>
<tr>
<td>24</td>
<td>0.022</td>
<td>0.559</td>
</tr>
<tr>
<td>25</td>
<td>0.020</td>
<td>0.508</td>
</tr>
<tr>
<td>26</td>
<td>0.018</td>
<td>0.457</td>
</tr>
<tr>
<td>27</td>
<td>0.0164</td>
<td>0.417</td>
</tr>
<tr>
<td>28</td>
<td>0.0148</td>
<td>0.376</td>
</tr>
<tr>
<td>29</td>
<td>0.0136</td>
<td>0.345</td>
</tr>
<tr>
<td>30</td>
<td>0.0124</td>
<td>0.315</td>
</tr>
<tr>
<td>31</td>
<td>0.0116</td>
<td>0.295</td>
</tr>
<tr>
<td>32</td>
<td>0.0108</td>
<td>0.274</td>
</tr>
<tr>
<td>33</td>
<td>0.0100</td>
<td>0.254</td>
</tr>
<tr>
<td>34</td>
<td>0.0092</td>
<td>0.234</td>
</tr>
<tr>
<td>35</td>
<td>0.0084</td>
<td>0.213</td>
</tr>
<tr>
<td>36</td>
<td>0.0076</td>
<td>0.193</td>
</tr>
<tr>
<td>37</td>
<td>0.0068</td>
<td>0.173</td>
</tr>
<tr>
<td>38</td>
<td>0.006</td>
<td>0.152</td>
</tr>
<tr>
<td>39</td>
<td>0.0052</td>
<td>0.132</td>
</tr>
<tr>
<td>40</td>
<td>0.0048</td>
<td>0.122</td>
</tr>
<tr>
<td>41</td>
<td>0.0044</td>
<td>0.112</td>
</tr>
<tr>
<td>42</td>
<td>0.004</td>
<td>0.102</td>
</tr>
<tr>
<td>43</td>
<td>0.0036</td>
<td>0.091</td>
</tr>
<tr>
<td>44</td>
<td>0.0032</td>
<td>0.081</td>
</tr>
<tr>
<td>45</td>
<td>0.0028</td>
<td>0.071</td>
</tr>
<tr>
<td>46</td>
<td>0.0024</td>
<td>0.061</td>
</tr>
<tr>
<td>47</td>
<td>0.002</td>
<td>0.051</td>
</tr>
<tr>
<td>48</td>
<td>0.0016</td>
<td>0.041</td>
</tr>
<tr>
<td>49</td>
<td>0.0012</td>
<td>0.030</td>
</tr>
<tr>
<td>50</td>
<td>0.001</td>
<td>0.025</td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://sudarsun.in/blog/2011/09/awg-vs-current-flow-capacity/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Solar Battery Charger Cutoff Circuit</title>
		<link>http://sudarsun.in/blog/2011/08/solar-battery-charger-cutoff-circuit/</link>
		<comments>http://sudarsun.in/blog/2011/08/solar-battery-charger-cutoff-circuit/#comments</comments>
		<pubDate>Sun, 07 Aug 2011 15:35:53 +0000</pubDate>
		<dc:creator>sudarsun</dc:creator>
				<category><![CDATA[Electrical]]></category>
		<category><![CDATA[Electronics]]></category>
		<category><![CDATA[Hacks]]></category>
		<category><![CDATA[KnowHow]]></category>
		<category><![CDATA[battery-charger]]></category>
		<category><![CDATA[circuit]]></category>
		<category><![CDATA[cl100]]></category>
		<category><![CDATA[cut off]]></category>
		<category><![CDATA[potential divider]]></category>
		<category><![CDATA[preset]]></category>
		<category><![CDATA[pv]]></category>
		<category><![CDATA[relay]]></category>
		<category><![CDATA[solar]]></category>
		<category><![CDATA[zener]]></category>

		<guid isPermaLink="false">http://sudarsun.in/blog/2011/08/solar-battery-charger-cutoff-circuit/</guid>
		<description><![CDATA[Using very few components, I have built a solar battery charger cutoff circuitry that would enable automatic cutoff of battery charging when the potential across the battery terminals reached a voltage level chosen by the preset setting in the circuit.&#160; Medium power transistor is operated in Cutoff mode most of the time, so the quotient [...]]]></description>
			<content:encoded><![CDATA[<p><img style="max-width: 800px;" src="http://sudarsun.in/blog/wp-content/uploads/2011/08/solar-charger.jpeg" /></p>
<div align="justify">Using very few components, I have built a solar battery charger cutoff circuitry that would enable automatic cutoff of battery charging when the potential across the battery terminals reached a voltage level chosen by the preset setting in the circuit.&nbsp; Medium power transistor is operated in Cutoff mode most of the time, so the quotient current of the circuit is fairly low in the order of few mA.&nbsp; It should be noted that the Vopen-circuit of the solar panel is few volts higher than the voltage when the panel is connected across a load.&nbsp; So, don&#8217;t adjust the preset without connecting the battery. When the circuit is turned on, the battery is directly connected with the solar panel, and hence the voltage perceived by the voltage divider is the load voltage.&nbsp; When the voltage across the load goes beyond the set point, zener conducts to turn the transistor on, which would pull the relay down and break the charging circuit.&nbsp; After the battery is disconnected, the voltage perceived by the potential divider circuit is the open-circuit voltage of the panel, which eventually creates a latch effect for the battery charger off condition.&nbsp; The relay will be ON, till there is sun light and when in the dusk, the input voltage should drop below the threshold voltage to turn off the transistor.</p>
<p>There is a flaw in this circuit. <img src='http://sudarsun.in/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>When the sun light drops, the relay turns off as the transistor is turned off.&nbsp; But now, the battery potential will be again available across the potential divider circuit.&nbsp;&nbsp; There is a potential, oscillation condition here!!</div>
<div class="zemanta-pixie"><img class="zemanta-pixie-img" alt="" src="http://img.zemanta.com/pixy.gif?x-id=5a99a042-8a23-82c5-8d9e-e4f60933a4fd" /></div>
]]></content:encoded>
			<wfw:commentRss>http://sudarsun.in/blog/2011/08/solar-battery-charger-cutoff-circuit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Solar Panel Structure Design</title>
		<link>http://sudarsun.in/blog/2011/07/solar-panel-structure-design/</link>
		<comments>http://sudarsun.in/blog/2011/07/solar-panel-structure-design/#comments</comments>
		<pubDate>Sun, 17 Jul 2011 14:15:40 +0000</pubDate>
		<dc:creator>sudarsun</dc:creator>
				<category><![CDATA[Construction]]></category>
		<category><![CDATA[Electrical]]></category>
		<category><![CDATA[Fun]]></category>
		<category><![CDATA[Help]]></category>
		<category><![CDATA[KnowWhat]]></category>
		<category><![CDATA[fabricators]]></category>
		<category><![CDATA[green]]></category>
		<category><![CDATA[iron]]></category>
		<category><![CDATA[machine drawing]]></category>
		<category><![CDATA[metal works]]></category>
		<category><![CDATA[photovoltic]]></category>
		<category><![CDATA[projection]]></category>
		<category><![CDATA[pv]]></category>
		<category><![CDATA[solar]]></category>
		<category><![CDATA[solar panel]]></category>
		<category><![CDATA[steel]]></category>

		<guid isPermaLink="false">http://sudarsun.in/blog/2011/07/solar-panel-structure-design/</guid>
		<description><![CDATA[This was the original design of the solar panel mounting structure.&#160; Later, I had simplified the design and fabricated them at the local metal fabricators.&#160; Please click on the images to open the big sized drawing. Pole that would hold the weight of a heavy solar panel over a base structure (not shown). Hinge design [...]]]></description>
			<content:encoded><![CDATA[<p>This was the original design of the solar panel mounting structure.&nbsp; Later, I had simplified the design and fabricated them at the local metal fabricators.&nbsp; Please click on the images to open the big sized drawing.</p>
<p><a target="_blank" href="http://sudarsun.in/blog/wp-content/uploads/2011/07/pole-50.jpg"><img style="max-width: 800px;" src="http://sudarsun.in/blog/wp-content/uploads/2011/07/pole-20.jpg" /></a></p>
<p>Pole that would hold the weight of a heavy solar panel over a base structure (not shown).</p>
<p><a target="_blank" href="http://sudarsun.in/blog/wp-content/uploads/2011/07/hinge-50.jpg"><img style="max-width: 800px;" src="http://sudarsun.in/blog/wp-content/uploads/2011/07/hinge-15.jpg" /></a></p>
<p>Hinge design that would transfer the weight from the base structure to the pole, with one degree of freedom.</p>
<div class="zemanta-pixie"><img class="zemanta-pixie-img" alt="" src="http://img.zemanta.com/pixy.gif?x-id=e0a80057-17d4-8ba2-ad29-578894f33d04" /></div>
]]></content:encoded>
			<wfw:commentRss>http://sudarsun.in/blog/2011/07/solar-panel-structure-design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>சூரிய ஒளி மின்சாரம் (Solar Electricity)</title>
		<link>http://sudarsun.in/blog/2011/07/%e0%ae%9a%e0%af%82%e0%ae%b0%e0%ae%bf%e0%ae%af-%e0%ae%92%e0%ae%b3%e0%ae%bf-%e0%ae%ae%e0%ae%bf%e0%ae%a9%e0%af%8d%e0%ae%9a%e0%ae%be%e0%ae%b0%e0%ae%ae%e0%af%8d-solar-electricity/</link>
		<comments>http://sudarsun.in/blog/2011/07/%e0%ae%9a%e0%af%82%e0%ae%b0%e0%ae%bf%e0%ae%af-%e0%ae%92%e0%ae%b3%e0%ae%bf-%e0%ae%ae%e0%ae%bf%e0%ae%a9%e0%af%8d%e0%ae%9a%e0%ae%be%e0%ae%b0%e0%ae%ae%e0%af%8d-solar-electricity/#comments</comments>
		<pubDate>Sun, 10 Jul 2011 11:23:10 +0000</pubDate>
		<dc:creator>sudarsun</dc:creator>
				<category><![CDATA[Construction]]></category>
		<category><![CDATA[Electrical]]></category>
		<category><![CDATA[Electronics]]></category>
		<category><![CDATA[Fun]]></category>
		<category><![CDATA[Hacks]]></category>
		<category><![CDATA[KnowWhat]]></category>
		<category><![CDATA[12v]]></category>
		<category><![CDATA[70w]]></category>
		<category><![CDATA[akshaya]]></category>
		<category><![CDATA[bolts]]></category>
		<category><![CDATA[fabrication]]></category>
		<category><![CDATA[green]]></category>
		<category><![CDATA[mounts]]></category>
		<category><![CDATA[post]]></category>
		<category><![CDATA[solar electricity]]></category>
		<category><![CDATA[solar panel]]></category>
		<category><![CDATA[swingarm]]></category>
		<category><![CDATA[welding]]></category>

		<guid isPermaLink="false">http://sudarsun.in/blog/2011/07/%e0%ae%9a%e0%af%82%e0%ae%b0%e0%ae%bf%e0%ae%af-%e0%ae%92%e0%ae%b3%e0%ae%bf-%e0%ae%ae%e0%ae%bf%e0%ae%a9%e0%af%8d%e0%ae%9a%e0%ae%be%e0%ae%b0%e0%ae%ae%e0%af%8d-solar-electricity/</guid>
		<description><![CDATA[The completed Solar Panel mount structure. Bottom side view of the panel.&#160; The Panel is fully resting on the Iron frame constructed in the nearby fabrication shop based on my design. This is my assistant Aakash, the boy next door.&#160; He has been my aide for all the mechanical and automobile works. The base frame [...]]]></description>
			<content:encoded><![CDATA[<p><img style="max-width: 800px; float: none;" src="http://sudarsun.in/blog/wp-content/uploads/2011/07/assembled1.jpg" /></p>
<p>The completed Solar Panel mount structure.</p>
<p><img style="max-width: 800px; float: none;" src="http://sudarsun.in/blog/wp-content/uploads/2011/07/assembled2.jpg" /></p>
<p>Bottom side view of the panel.&nbsp; The Panel is fully resting on the Iron frame constructed in the nearby fabrication shop based on my design.</p>
<p><img style="max-width: 800px; float: none;" src="http://sudarsun.in/blog/wp-content/uploads/2011/07/assistant.jpg" /></p>
<p>This is my assistant Aakash, the boy next door.&nbsp; He has been my aide for all the mechanical and automobile works.</p>
<p><img style="max-width: 800px;" src="http://sudarsun.in/blog/wp-content/uploads/2011/07/frame.jpg" /></p>
<p>The base frame of 30&#8243; x 21&#8243; with the center piece at 15&#8243;.</p>
<p><img style="max-width: 800px;" src="http://sudarsun.in/blog/wp-content/uploads/2011/07/frame2.jpg" /></p>
<p>The base frame from perspective projection.&nbsp; The center piece is a 5&#8243; x 2&#8243; 10mm plate welded at the center.&nbsp; The holes are 10mm diameter drilled at 1&#8243; and 3&#8243; from the top and centered. </p>
<p><img style="max-width: 800px;" src="http://sudarsun.in/blog/wp-content/uploads/2011/07/pole.jpg" /></p>
<p>The main load bearing vertical pole measuring approx 2m and 2&#8243; diameter.&nbsp; The base plate is 6&#8243; in horizontal length and 6&#8243; on vertical depths.&nbsp; The holes are 1/2&#8243; and drilled at 3&#8243; and 5&#8243;. </p>
<p><img style="max-width: 800px;" src="http://sudarsun.in/blog/wp-content/uploads/2011/07/panel1.jpg" /></p>
<p>This is the solar panel bought from Akshaya Solar Pvt Ltd, AP.&nbsp; The panel is rated 12v 70w and of dimension 1200mm x 21&#8243; and weighting approximately 5kg.</p>
<p><img style="max-width: 800px;" src="http://sudarsun.in/blog/wp-content/uploads/2011/07/swingarm1.jpg" /></p>
<p>The swing arm connecting the base frame and vertical pole.&nbsp; The holes are 10 mm diameter and punched at 1&#8243; and 3&#8243; from the top.&nbsp; The bottom pipe is 2.25&#8243; diameter and about 5&#8243; long.&nbsp; The cross bolt is 0.5&#8243; diameter.&nbsp; This swing arm mounts on the pole on one side and attached to the base frame on the other side.&nbsp; The base frame is pivoted on the top hole with swing setting using one of the 3 bottom holes.&nbsp; The positions are provided to compensate of uttrayanam (north bound sun movement) and dakshanayanam (south bound sun&#8217;s movement).</p>
<p><img style="max-width: 800px;" src="http://sudarsun.in/blog/wp-content/uploads/2011/07/through-bolt.jpg" /></p>
<p>The bottom link of the vertical pole.&nbsp; This U link attaches to the parapet wall, which is 6&#8243; is width and the cross bolts pass through the wall to lock the vertical plates.&nbsp; The horizontal and the vertical plates are 6&#8243;x2&#8243; and 10mm in thickness.</p>
<p><img style="max-width: 800px;" src="http://sudarsun.in/blog/wp-content/uploads/2011/07/bolts.jpg" /></p>
<p>These are the bolts used.&nbsp; The 1&#8243; (4 nos) bolts are used to secure the solar panel on the base frame.&nbsp; The 1.5&#8243; bolts are used to secure the base frame to the swing arm.&nbsp; The 4&#8243; bolt is used to secure the swing arm to the vertical pole and the 8&#8243; bolts are the bolts to secure the entire unit on the parapet wall by passing through the wall.</p>
<div class="zemanta-pixie"><img class="zemanta-pixie-img" alt="" src="http://img.zemanta.com/pixy.gif?x-id=2f6ce0bc-2f86-83d9-89fd-69aacaae4e56" /></div>
]]></content:encoded>
			<wfw:commentRss>http://sudarsun.in/blog/2011/07/%e0%ae%9a%e0%af%82%e0%ae%b0%e0%ae%bf%e0%ae%af-%e0%ae%92%e0%ae%b3%e0%ae%bf-%e0%ae%ae%e0%ae%bf%e0%ae%a9%e0%af%8d%e0%ae%9a%e0%ae%be%e0%ae%b0%e0%ae%ae%e0%af%8d-solar-electricity/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fitting LED Strip to Getz Radiator Grill</title>
		<link>http://sudarsun.in/blog/2010/08/fitting-led-strip-to-getz-radiator-grill/</link>
		<comments>http://sudarsun.in/blog/2010/08/fitting-led-strip-to-getz-radiator-grill/#comments</comments>
		<pubDate>Sun, 15 Aug 2010 11:30:19 +0000</pubDate>
		<dc:creator>sudarsun</dc:creator>
				<category><![CDATA[Automobiles]]></category>
		<category><![CDATA[Electrical]]></category>
		<category><![CDATA[Hacks]]></category>
		<category><![CDATA[KnowHow]]></category>
		<category><![CDATA[KnowWhat]]></category>
		<category><![CDATA[bonnet]]></category>
		<category><![CDATA[connector]]></category>
		<category><![CDATA[getz]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[led]]></category>
		<category><![CDATA[line-tapping]]></category>
		<category><![CDATA[parking-lamp]]></category>

		<guid isPermaLink="false">http://sudarsun.in/blog/2010/08/fitting-led-strip-to-getz-radiator-grill/</guid>
		<description><![CDATA[White (Blueish) LED strips with 3M water proof stickers are available for 300-350Rs/30cm.&#160; These LED strips are pretty bright when illuminated and draws lesser power when compared to incandescent lamps. Step 1: Open the Bonnet of the Car Step 2: Identify the Parking Lamp + Head Lamp Positioning Motor Power Line Step 3: Remove the [...]]]></description>
			<content:encoded><![CDATA[<p>White (Blueish) LED strips with 3M water proof stickers are available for 300-350Rs/30cm.&nbsp; These LED strips are pretty bright when illuminated and draws lesser power when compared to incandescent lamps.<br /><img style="max-width: 800px;" src="http://sudarsun.in/blog/wp-content/uploads/2010/08/led-strip-final1.jpg" /></p>
<p>Step 1: Open the Bonnet of the Car<br /><img style="max-width: 800px;" src="http://sudarsun.in/blog/wp-content/uploads/2010/08/bonnet-open.jpg" /></p>
<p>Step 2: Identify the Parking Lamp + Head Lamp Positioning Motor Power Line<br /><img style="max-width: 800px;" src="http://sudarsun.in/blog/wp-content/uploads/2010/08/finding-the-parking-power-line.jpg" /></p>
<p>Step 3: Remove the Parking Lamp, Lamp Positioning Motor Power Connector<br /><img style="max-width: 800px;" src="http://sudarsun.in/blog/wp-content/uploads/2010/08/removing-connector.jpg" /></p>
<p><img style="max-width: 800px;" src="http://sudarsun.in/blog/wp-content/uploads/2010/08/connector.jpg" /></p>
<p>Step 4: Remove the Connector Shield to find the Power lines<br /><img style="max-width: 800px;" src="http://sudarsun.in/blog/wp-content/uploads/2010/08/removing-shield-of-connector.jpg" /></p>
<p><img style="max-width: 800px;" src="http://sudarsun.in/blog/wp-content/uploads/2010/08/connector-shield-opened.jpg" /></p>
<p>Step 5: Find and Tap the Parking Lamp Line.<br /><img style="max-width: 800px;" src="http://sudarsun.in/blog/wp-content/uploads/2010/08/picking-the-parking-lamp-line.jpg" /></p>
<p><img style="max-width: 800px;" src="http://sudarsun.in/blog/wp-content/uploads/2010/08/parking-lamp-line-picked-and-tapped.jpg" /></p>
<p>Step 6: Put the connector shield back on the connector<br />Step 7: Put the connector back on the Lamp assembly<br />Step 8: Turn on Parking Lamp; Hurray LED Strip is AWESOME.</p>
<p>
<div class="zemanta-pixie"><img class="zemanta-pixie-img" alt="" src="http://img.zemanta.com/pixy.gif?x-id=dd16ec48-a428-870d-9b5c-c5bbae24d8a3" /></div>
<p class="scribefire-powered">Powered by <a href="http://www.scribefire.com/">ScribeFire</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://sudarsun.in/blog/2010/08/fitting-led-strip-to-getz-radiator-grill/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Thunderbird Battery Charger</title>
		<link>http://sudarsun.in/blog/2010/06/thunderbird-battery-charger/</link>
		<comments>http://sudarsun.in/blog/2010/06/thunderbird-battery-charger/#comments</comments>
		<pubDate>Wed, 30 Jun 2010 17:19:43 +0000</pubDate>
		<dc:creator>sudarsun</dc:creator>
				<category><![CDATA[Automobiles]]></category>
		<category><![CDATA[Electrical]]></category>
		<category><![CDATA[Hacks]]></category>
		<category><![CDATA[7815]]></category>
		<category><![CDATA[battery-charger]]></category>
		<category><![CDATA[smps]]></category>
		<category><![CDATA[thunderbird]]></category>

		<guid isPermaLink="false">http://sudarsun.in/blog/2010/06/thunderbird-battery-charger/</guid>
		<description><![CDATA[Powered by ScribeFire.]]></description>
			<content:encoded><![CDATA[<p><img style="max-width: 800px;" src="http://sudarsun.in/blog/wp-content/uploads/2010/06/circuit.jpeg" /></p>
<p><img style="max-width: 800px;" src="http://sudarsun.in/blog/wp-content/uploads/2010/06/IMAG0232.jpg" /></p>
<p><img style="max-width: 800px;" src="http://sudarsun.in/blog/wp-content/uploads/2010/06/IMAG0233.jpg" /></p>
<p><img style="max-width: 800px;" src="http://sudarsun.in/blog/wp-content/uploads/2010/06/IMAG0235.jpg" /></p>
<div class="zemanta-pixie"><img class="zemanta-pixie-img" alt="" src="http://img.zemanta.com/pixy.gif?x-id=e6a52feb-adec-8268-b20d-b8762573d704" /></div>
<p class="scribefire-powered">Powered by <a href="http://www.scribefire.com/">ScribeFire</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://sudarsun.in/blog/2010/06/thunderbird-battery-charger/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>BSNL Broadband Connectivity Issue on Noise phone lines</title>
		<link>http://sudarsun.in/blog/2010/04/bsnl-broadband-connectivity-issue-on-noise-phone-lines/</link>
		<comments>http://sudarsun.in/blog/2010/04/bsnl-broadband-connectivity-issue-on-noise-phone-lines/#comments</comments>
		<pubDate>Sat, 10 Apr 2010 08:10:39 +0000</pubDate>
		<dc:creator>sudarsun</dc:creator>
				<category><![CDATA[Electrical]]></category>
		<category><![CDATA[Hacks]]></category>
		<category><![CDATA[Help]]></category>
		<category><![CDATA[KnowHow]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[bsnl]]></category>
		<category><![CDATA[dsl]]></category>
		<category><![CDATA[modem]]></category>
		<category><![CDATA[netgear]]></category>
		<category><![CDATA[noise]]></category>
		<category><![CDATA[phase modulation]]></category>
		<category><![CDATA[phone lines]]></category>
		<category><![CDATA[signal conditioning]]></category>
		<category><![CDATA[splitter]]></category>
		<category><![CDATA[telephone]]></category>

		<guid isPermaLink="false">http://sudarsun.in/blog/2010/04/bsnl-broadband-connectivity-issue-on-noise-phone-lines/</guid>
		<description><![CDATA[If you are an exclusive BSNL broadband user, you might not have attached the telephone to the phone line.&#160; I have connected my Netgear modem to the DSL/Phone line splitter and left the other connection floating.&#160; Lately, when I noticed that the Netgear modem was not able to make the connection with BSNL servers, originally [...]]]></description>
			<content:encoded><![CDATA[<p>If you are an exclusive BSNL broadband user, you might not have attached the telephone to the phone line.&nbsp; I have connected my Netgear modem to the DSL/Phone line splitter and left the other connection floating.&nbsp; Lately, when I noticed that the Netgear modem was not able to make the connection with BSNL servers, originally I thought the telephone line is dead.&nbsp; To my surprise the telephone line was fine, but I perceived the lines to be little noisy.&nbsp; I made a complaint to the BSNL portal and as usual nothing much happened.&nbsp; Accidently, I had to connect my telephone to the splitter for making a local call.&nbsp; To surprise, the Netgear modem managed to connect to the server this time.&nbsp; So, the hypothesis is; <br />
<blockquote>When the telephone line is noisy, attach the telephone to the splitter along with the modem connection to get connected to the BSNL Servers.&nbsp; Most likely it could be because of the Reactive load offered by the telephone on the phone line ends up conditioning the Phase modulated signals for the Netgear modem to connect to the Servers.</p></blockquote>
<p>
<div class="zemanta-pixie"><img class="zemanta-pixie-img" alt="" src="http://img.zemanta.com/pixy.gif?x-id=d75b64d1-591b-8508-8c74-062ee9a69f51" /></div>
<p class="scribefire-powered">Powered by <a href="http://www.scribefire.com/">ScribeFire</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://sudarsun.in/blog/2010/04/bsnl-broadband-connectivity-issue-on-noise-phone-lines/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Netgear Router &amp; BSNL Broadband</title>
		<link>http://sudarsun.in/blog/2009/11/netgear-router-bsnl-broadband/</link>
		<comments>http://sudarsun.in/blog/2009/11/netgear-router-bsnl-broadband/#comments</comments>
		<pubDate>Sun, 08 Nov 2009 08:53:29 +0000</pubDate>
		<dc:creator>sudarsun</dc:creator>
				<category><![CDATA[Electrical]]></category>
		<category><![CDATA[Hacks]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[adsl]]></category>
		<category><![CDATA[broadband]]></category>
		<category><![CDATA[bsnl]]></category>
		<category><![CDATA[gateway]]></category>
		<category><![CDATA[loading]]></category>
		<category><![CDATA[modem]]></category>
		<category><![CDATA[netgeory]]></category>
		<category><![CDATA[noise]]></category>
		<category><![CDATA[rain]]></category>
		<category><![CDATA[ripple]]></category>
		<category><![CDATA[router]]></category>
		<category><![CDATA[splitter]]></category>
		<category><![CDATA[telephone]]></category>

		<guid isPermaLink="false">http://sudarsun.in/blog/?p=335</guid>
		<description><![CDATA[During Raining Days, BSNL broadband line gets little noisy. I used to connect only my router and never my land line phone in the phone line as I use the BSNL telephone line only for Internet access. Lately, I noticed that the Netgear router having difficulty in establishing connection with the BSNL server whenever it [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">During Raining Days, BSNL broadband line gets little noisy.  I used to connect only my router and never my land line phone in the phone line as I use the BSNL telephone line only for Internet access.  Lately, I noticed that the Netgear router having difficulty in establishing connection with the BSNL server whenever it was raining or the phone line is noisy.  The <span style="color: #ff6600;"><strong>&#8220;i&#8221;</strong></span> indicator keeps blinking in <strong><span style="color: #ff6600;">ORANGE</span></strong> color and never stabilizes into a <span style="color: #00ff00;"><span style="color: #99cc00;"><strong>GREEN</strong></span> </span>color indication.  Having the &#8220;i&#8221; indicator blink made sure that the link exists.  When I wanted to check the condition of the link (telephone line connection), I connected the BSNL telephone to the splitter port which splits the telephone line to the router and the telephone.  When I lifted the cradle, I could notice that the telephone line is little noisy.  When I was wondering when and how to make the complaint to BSNL, surprisingly the Netgear router made a stable connection with BSNL gateway.  I have used this hack several times, whenever the router (modem) had difficulty in establishing connection.</p>
<p style="text-align: justify;">One theory behind this could be the &#8220;loading&#8221; effect of the telephone on the telephone line which is subsiding the noise ripples coming over the telephone line.</p>
]]></content:encoded>
			<wfw:commentRss>http://sudarsun.in/blog/2009/11/netgear-router-bsnl-broadband/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Another Automation Project</title>
		<link>http://sudarsun.in/blog/2009/05/another-automation-project/</link>
		<comments>http://sudarsun.in/blog/2009/05/another-automation-project/#comments</comments>
		<pubDate>Sat, 02 May 2009 08:09:48 +0000</pubDate>
		<dc:creator>sudarsun</dc:creator>
				<category><![CDATA[Electrical]]></category>
		<category><![CDATA[Fun]]></category>
		<category><![CDATA[KnowHow]]></category>
		<category><![CDATA[KnowWhat]]></category>
		<category><![CDATA[automation]]></category>
		<category><![CDATA[contactor]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[ideal]]></category>
		<category><![CDATA[relay]]></category>
		<category><![CDATA[switching]]></category>
		<category><![CDATA[timer]]></category>

		<guid isPermaLink="false">http://sudarsun.in/blog/2009/05/another-automation-project/</guid>
		<description><![CDATA[Powered by ScribeFire.]]></description>
			<content:encoded><![CDATA[<p><img style="max-width: 800px;" src="http://sudarsun.in/blog/wp-content/uploads/2009/05/acautomation.jpg" /></p>
<div class="zemanta-pixie"><img class="zemanta-pixie-img" src="http://img.zemanta.com/pixy.gif?x-id=01503aa0-dd6e-8114-afc5-35dc5a63333f" /></div>
<p class="scribefire-powered">Powered by <a href="http://www.scribefire.com/">ScribeFire</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://sudarsun.in/blog/2009/05/another-automation-project/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!-- This Quick Cache file was built for (  sudarsun.in/blog/category/electrical/feed/ ) in 0.49784 seconds, on Feb 8th, 2012 at 1:54 pm UTC. -->
<!-- This Quick Cache file will automatically expire ( and be re-built automatically ) on Feb 8th, 2012 at 2:54 pm UTC -->
