<?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>Electronics Online &#187; Components</title>
	<atom:link href="http://electropart.info/category/components/feed" rel="self" type="application/rss+xml" />
	<link>http://electropart.info</link>
	<description>Electronics lesson: electronic parts, electronic components, electronic projects, circuit diagram and more</description>
	<lastBuildDate>Thu, 17 May 2012 12:57:50 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>How to use an LCD display with only three lines I / O of the HC908</title>
		<link>http://electropart.info/components/how-to-use-an-lcd-display-with-only-three-lines-i-o-of-the-hc908.html</link>
		<comments>http://electropart.info/components/how-to-use-an-lcd-display-with-only-three-lines-i-o-of-the-hc908.html#comments</comments>
		<pubDate>Thu, 17 May 2012 12:57:50 +0000</pubDate>
		<dc:creator>Electronics Online</dc:creator>
				<category><![CDATA[Components]]></category>
		<category><![CDATA[Schematic Diagrams]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[cd4094]]></category>
		<category><![CDATA[control lcd display]]></category>
		<category><![CDATA[digital system]]></category>
		<category><![CDATA[HC908]]></category>
		<category><![CDATA[HC908QY4]]></category>
		<category><![CDATA[How to use an LCD display]]></category>
		<category><![CDATA[lcd]]></category>
		<category><![CDATA[lcd commands]]></category>
		<category><![CDATA[LCD display with only three lines I / O]]></category>
		<category><![CDATA[microcontroller]]></category>
		<category><![CDATA[save pin lcd]]></category>

		<guid isPermaLink="false">http://electropart.info/?p=6228</guid>
		<description><![CDATA[Consider the circuit, HC908QY4 is the heart of all. It uses a pin PTB0, PTB1 and PTB2 to control and display the text on the LCD. This leads to (shift regiter &#8211; serial to parallel converter) CD4094 that we will provide the data bus to LCD display. In the CD4094 data are synchronized on the [...]]]></description>
			<content:encoded><![CDATA[<p>Consider the circuit, HC908QY4 is the heart of all. It uses a pin PTB0, PTB1 and PTB2 to control and display the text on the LCD. This leads to (shift regiter &#8211; serial to parallel converter) CD4094 that we will provide the data bus to LCD display.</p>
<p><a href="http://electropart.info/wp-content/uploads/2012/05/Schematic-of-the-circuit.jpg"><img class="aligncenter size-medium wp-image-6230" title="How to use an LCD display with only three lines I / O " src="http://electropart.info/wp-content/uploads/2012/05/Schematic-of-the-circuit-300x178.jpg" alt="Schematic of the circuit" width="300" height="178" /></a>In the CD4094 data are synchronized on the rising edge and the LCD display will take on the falling edge shows us that this signal can be shared.</p>
<p><span id="more-6228"></span>Well, then at the rising edge CD4094 transfers the data of the new byte out and fall on the side of the LCD display reads. Keep in mind that this method can not read LCD information display.</p>
<p>Now comes the hard part: How to separate text commands. LCD has a pin for this: RS pin. When this command for 0 accepted, as accepted in a text (ASCII characters). How do you solve this?</p>
<p>Before sending a character to initialize a timer on CD4094 500uSec. The resistor R1 will load capacitor C5. Then send the character to the CD4094 as quickly as possible. Thus, the capacitor simply does not have enough time to discharge. The LCD display will accept it as text. In order to command is the same, only in reverse. The capacitor has to be discharge.</p>
<p>Emitter follower T1 formed to protect the network R / C. The reason for this is that the LCD RS input is a TTL input signal and we put it to work quite well.</p>
<p><strong>Program C Language</strong></p>
<pre>#include &lt;hidef.h&gt;
#include "derivative.h"

#define LINE1    0x80
#define LINE2    0xC0

#define DTASHT   0x01     // PTA0
#define CLKSHT   0x02     // PTA1
#define STBSHT   0x04     // PTA2

#define CTRL     1
#define DATA     0

void Shift(char, char);
void Delay(int);
void Write(char, char*);
void Init_Dsp(void);

void main(void) {

CONFIG1 = 0x01;
CONFIG2 = 0x00;

DDRA    = 0x07;
PTA     = 0x00;

Init_Dsp();

for(;;) {
Init_Dsp();
Write(LINE1,"  Hola Mundo    ");
}
}

//=====================================

void Init_Dsp(void) {
PTA |= CLKSHT;
Shift(CTRL,0x06);
Shift(CTRL,0x0E);
Shift(CTRL,0x38);
Shift(CTRL,0x80);
Shift(CTRL,0x0C);     // Cursor off
Shift(CTRL,0x01);     // Clear Display
}

void Write(char pos, char *text) {
Shift(CTRL,pos);
while(*text) Shift(DATA,*text++);
}

void Shift(char donde, char dato) {
int i;

for(i=0; i&lt;8; i++){
if(dato &amp; 0x80) PTA |=  DTASHT;
else            PTA &amp;= ~DTASHT;

if(donde) {
PTA &amp;= ~CLKSHT;
Delay(200);
PTA |=  CLKSHT;
}
else {
PTA &amp;= ~CLKSHT;
PTA |=  CLKSHT;
}
dato &lt;&lt;= 1;
}
PTA |=  STBSHT;
PTA &amp;= ~STBSHT;
if(donde) Delay(2000);
}

void Delay(int time) {
for(; time&gt;0; time--);
}</pre>
<div id="seo_alrp_related"><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/computer-introduction/computer-graphics/computer-video-display-technologies.html" rel="bookmark">Computer Video Display Technologies</a></strong> <br />Even though computer display technology is essential with a Personal computers user interface like the mouse and also keyboard, the video display is the latecomer on to computing. Just before Cathode ray tube (CRT) monitors got into standard use, the ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/computer-introduction/computer-data/computer-data.html" rel="bookmark">Computer Data</a></strong> <br />About data Our PC's are data processors. PC's function is simple: to process data, and the processing is done electronically inside the CPU and between the other components. That sounds simple, but what are data, and how are they processed ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/components/oled-displays-with-a-100-thousand-hours-lifetime.html" rel="bookmark">OLED displays with a 100 thousand hours lifetime</a></strong> <br />Based on organic materials, OLED displays have become an integral part of mobile phones and smartphones. Now Electronic Assembly released a series of OLED displays for use in industrial applications. Nine models are extremely high contrast ratio of 2,000:1, achieved ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/electronics-articles/the-oscilloscope.html" rel="bookmark">The oscilloscope</a></strong> <br />The oscilloscope is a measuring instrument widely used in electronics. It provides a measure of signal in the time domain. Using the probes you can view the signal at a point in a circuit. Attention, "all that is observed is ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/computer-introduction/computer-system-board/the-computer-start-up-process.html" rel="bookmark">The Computer Start-Up Process</a></strong> <br />When you turn power on, several things happen in the PC: You hear the fan motor starting. There are one or more cooling fans in the PC. They produce a whirring sound. After a few seconds, text starts to scroll ...<br /><br /></div></div>]]></content:encoded>
			<wfw:commentRss>http://electropart.info/components/how-to-use-an-lcd-display-with-only-three-lines-i-o-of-the-hc908.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TRIAC : Component characteristic</title>
		<link>http://electropart.info/components/triac-component-characteristic.html</link>
		<comments>http://electropart.info/components/triac-component-characteristic.html#comments</comments>
		<pubDate>Tue, 27 Mar 2012 10:35:17 +0000</pubDate>
		<dc:creator>Electronics Online</dc:creator>
				<category><![CDATA[Components]]></category>
		<category><![CDATA[opto-triac]]></category>
		<category><![CDATA[Triac]]></category>
		<category><![CDATA[TRIAC characteristic]]></category>
		<category><![CDATA[TRIAC circuit diagram]]></category>
		<category><![CDATA[TRIAC Component characteristic]]></category>
		<category><![CDATA[very simple TRIAC scheme]]></category>

		<guid isPermaLink="false">http://electropart.info/?p=6164</guid>
		<description><![CDATA[Triac is an active component that is increasingly being used in the circuit today. The direct use of EDF sector allows to switch a large load from circuit much smaller. Component symbols in Figure 1 operates in four modes theoretically, also called quadrants, which can be summarized by the table in Figure 2. These four quadrants in fact dependent on the polarity of the anode A2 from A1 and the triac gate. In the example given in Figure 3, A2 anode is alternately positive and negative, while the trigger is negative (pulling power) when the transistor is conducting. By observing the table, we say that the [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://electropart.info/wp-content/uploads/2012/03/TRIAC-symbol.jpg"><img class="aligncenter size-medium wp-image-6176" title="TRIAC symbol" src="http://electropart.info/wp-content/uploads/2012/03/TRIAC-symbol-300x245.jpg" alt="" width="300" height="245" /></a> Triac is an active component that is increasingly being used in the circuit today. The direct use of EDF sector allows to switch a large load from circuit much smaller. Component symbols in Figure 1 operates in four modes theoretically, also called quadrants, which can be summarized by the table in Figure 2. These four quadrants in fact dependent on the polarity of the anode A2 from A1 and the triac gate.</p>
<p><span id="more-6164"></span><a href="http://electropart.info/wp-content/uploads/2012/03/TRIAC-operating-modes.jpg"><img class="aligncenter size-medium wp-image-6175" title="TRIAC operating modes" src="http://electropart.info/wp-content/uploads/2012/03/TRIAC-operating-modes-300x218.jpg" alt="" width="300" height="218" /></a>In the example given in Figure 3, A2 anode is alternately positive and negative, while the trigger is negative (pulling power) when the transistor is conducting.<a href="http://electropart.info/wp-content/uploads/2012/03/Figure-3.jpg"><img class="aligncenter size-medium wp-image-6174" title="Figure 3" src="http://electropart.info/wp-content/uploads/2012/03/Figure-3-300x135.jpg" alt="" width="300" height="135" /></a><br />
By observing the table, we say that the triac operates in quadrants 2 and 3. Different combinations can be obtained. It should just point out that Mode 4 should be avoided, due to excessive consumption in the range above 100 mA against only 50 mAin modes 1, 2 and 3 for a triac type &#8217;standard&#8217;.<br />
Indeed there is a model called &#8221;sensitive&#8221;, which require low gate currents of 5 to 10 mA. This is important because the intensity of the load must be greater from the intensity of the trigger, and that is why dimmer on Trade found, in addition to the indication of the maximum load, minimum load indication, if not triac does not work anymore.<a href="http://electropart.info/wp-content/uploads/2012/03/TRIAC-Figure-4.jpg"><img class="aligncenter size-medium wp-image-6173" title="TRIAC Figure 4" src="http://electropart.info/wp-content/uploads/2012/03/TRIAC-Figure-4-300x173.jpg" alt="" width="300" height="173" /></a><br />
The principle is that the triac is initiated after a control pulse to the next zero crossing of the wave field. The command can be impulsive and Figure 4 provides such a circuit, which is much less demanding than the continuous control of Figure 3.</p>
<p>This type of circuit can then be powered by an RC network from transformer if the control circuit does not consume too much. A level 0 on input C blocks the triac.<br />
The power output is maximum in this case since the triac is initiated immediately afterthe zero crossing of the AC voltage, but we can intervene in different ways for each control pulse delay in order to vary the intensity applied to the load.<br />
<a href="http://electropart.info/wp-content/uploads/2012/03/TRIAC-Figure-5.jpg"><img class="aligncenter size-full wp-image-6172" title="TRIAC Figure 5" src="http://electropart.info/wp-content/uploads/2012/03/TRIAC-Figure-5.jpg" alt="" width="267" height="286" /></a><br />
A simple way to achieve this is an RC network like Figure 5. The offset depends on the values ​​of these two components R and may vary. The diac trigger placed on the phase shift results in a more importantly, it does lead that when the voltage reaches 30V.</p>
<p>There are, however, other more sophisticated ways to obtain complete phase shifts (180°) and automatic systems for modulating the intensity according to various phenomenasuch as light or temperature.<br />
<a href="http://electropart.info/wp-content/uploads/2012/03/Figure-6A.jpg"><img class="aligncenter size-medium wp-image-6171" title="Figure 6A" src="http://electropart.info/wp-content/uploads/2012/03/Figure-6A-300x119.jpg" alt="" width="300" height="119" /></a><br />
Figure 6a and 6b show the power applied to the function of the load in the delay from the relative control pulse to zero.<br />
<a href="http://electropart.info/wp-content/uploads/2012/03/Figure-6B.jpg"><img class="aligncenter size-medium wp-image-6170" title="Figure 6B" src="http://electropart.info/wp-content/uploads/2012/03/Figure-6B-300x156.jpg" alt="" width="300" height="156" /></a><br />
The main drawback of this type of setting is easily lead noise and especially on the receptor MW / LW.</p>
<p>These can be partly eliminated by the addition of a LC circuit comprising a network asthat of FIG 7, wherein the two capacitors (optional) are provided for alternatingnecessarily class (X2) and to self calibrated depending on the intensity required.<a href="http://electropart.info/wp-content/uploads/2012/03/TRIAC-Figure-7.jpg"><img class="aligncenter size-medium wp-image-6169" title="TRIAC Figure 7" src="http://electropart.info/wp-content/uploads/2012/03/TRIAC-Figure-7-300x117.jpg" alt="" width="300" height="117" /></a></p>
<p>This assembly is suitable for circuit &#8221;dimmer&#8221;, but if you want to just use a triac switch is better to use a special circuit in the control of the zero wave sector.<br />
These include for example an opto-triac OMC 3041 with &#8221;zero crossing&#8221; is planned forthis application and the pinout is shown in Figure 8.<a href="http://electropart.info/wp-content/uploads/2012/03/OPTO-TRIAC-MOC-3041-pin-out.jpg"><img class="aligncenter size-medium wp-image-6168" title="OPTO TRIAC MOC 3041 pin out" src="http://electropart.info/wp-content/uploads/2012/03/OPTO-TRIAC-MOC-3041-pin-out-300x211.jpg" alt="" width="300" height="211" /></a><br />
Moreover, the isolation of a optotriac, some 7,500 V, and the control current of ten milliamperes give safety and ease of use highly significant for switching loads of several amperes at a voltage of 230 V or more.<br />
Don&#8217;t forget that mounting a TRIAC, with or without a power transformer, if they are not equipped with optotriacs or similar devices are connected directly to the mains and which should be very cautious with this kind of circuit.<a href="http://electropart.info/wp-content/uploads/2012/03/TRIAC-Figure-9.jpg"><img class="aligncenter size-medium wp-image-6167" title="TRIAC Figure 9" src="http://electropart.info/wp-content/uploads/2012/03/TRIAC-Figure-9-300x157.jpg" alt="" width="300" height="157" /></a><br />
Figure 9 shows a universal interface for controlling various devices connected to the mains using, for example, a computer.</p>
<p>The control is effected by applying a positive level of the LED, the opto-triac in turn controls a triac that there will be chosen according to the respective load. We can equipthe suppression of this interface in Figure 7.In some cases, particularly if the load is highly inductive, it may be necessary to add a protection circuit. Figure 10 shows an effective way to protect the triac.<br />
<a href="http://electropart.info/wp-content/uploads/2012/03/TRIAC-Figure-10.jpg"><img class="aligncenter size-medium wp-image-6166" title="TRIAC Figure 10" src="http://electropart.info/wp-content/uploads/2012/03/TRIAC-Figure-10-300x276.jpg" alt="" width="300" height="276" /></a><br />
Finally, we must not forget to equip each of its triac sink if the power involved requires it,usually you start to place a radiator from a 100 W power for conventional models 6/8 A.Be aware that there are triacs provided for a current of 40A.<a href="http://electropart.info/wp-content/uploads/2012/03/sufficient-simple-TRIAC-scheme.jpg"><img class="aligncenter size-medium wp-image-6165" title="sufficient simple TRIAC scheme" src="http://electropart.info/wp-content/uploads/2012/03/sufficient-simple-TRIAC-scheme-300x112.jpg" alt="" width="300" height="112" /></a><br />
To end this article, Figure 11 shows you a very simple TRIAC scheme is however sufficient, allowing you to remove the doubt about how each of your triacs.</p>
<div id="seo_alrp_related"><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/schematic-diagrams/laser-scanner-schematics.html" rel="bookmark">Laser Scanner Schematics</a></strong> <br />Scheme for the laser scanner in the laser technique commonly used laser - scanners, galvanometers with a magneto system abnormalities, its anchor - is a permanent magnet with a mirror on which the laser beam is directed, and the excitation ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/electronics-articles/introduction-to-digital-electronics.html" rel="bookmark">Introduction to digital electronics</a></strong> <br />Any character of information in digital electronics devices encode binary code, so the signal can take only two values: high or low voltage, the presence or absence of a voltage pulse, etc., necessary condition for this is the ability to ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/schematic-diagrams/a-motion-sensor-for-security-lights.html" rel="bookmark">A Motion Sensor for Security Lights</a></strong> <br />The description of a system based on a passive infrared motion detector (PIR) type BS1600 or BS1700, which can be used for security or corridor lighting in a power saving mode. Transformerless power supply generates a constant voltage of 12 V ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/components/purpose-of-the-resistor.html" rel="bookmark">Purpose Of The Resistor</a></strong> <br />Resistors can play any of numerous different roles in electrical and electronic equipment. Here are a few of the more common ways resistors are used. Voltage division Youâ€™ve already learned a little about how voltage dividers can be designed using ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/schematic-diagrams/lamp-brightness-control.html" rel="bookmark">Lamp Brightness Control</a></strong> <br />The following is a schematic diagram of a lamp brightness control. Lamp used is a light tube with a voltage 3V. You can replace the lamp with other lamp types, such as LEDs. How the circuit works: IC1 works to ...<br /><br /></div></div>]]></content:encoded>
			<wfw:commentRss>http://electropart.info/components/triac-component-characteristic.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Polarity protection by diode</title>
		<link>http://electropart.info/components/polarity-protection-by-diode.html</link>
		<comments>http://electropart.info/components/polarity-protection-by-diode.html#comments</comments>
		<pubDate>Tue, 06 Mar 2012 17:22:18 +0000</pubDate>
		<dc:creator>Electronics Online</dc:creator>
				<category><![CDATA[Components]]></category>
		<category><![CDATA[Electronics Articles]]></category>
		<category><![CDATA[diode polarity protection]]></category>
		<category><![CDATA[polarity protection]]></category>
		<category><![CDATA[Polarity protection by diode]]></category>
		<category><![CDATA[protection diode]]></category>
		<category><![CDATA[reverse polarity protection]]></category>

		<guid isPermaLink="false">http://electropart.info/?p=6129</guid>
		<description><![CDATA[For all the circuits that are powered by DC voltage, should always be considered the correct polarity! Whether it is positive or negative pole, or the circuit will be damaged. A diode for reverse polarity protection Of course, there is a polarized connector system such as the hollow plug. For many small self-built circuits, voltage circuits for testing, often taken from the power supply. And because it can happen that you accidentally turn on the power supply with the wrong polarity on the circuit, which makes your project vain. Even when soldering hollow connectors can happen the same. For circuits with such errors can not be avoided, but is there any simple protection? yes, with the installation of the polarity [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://electropart.info/components/polarity-protection-by-diode.html/attachment/diode-polarity-protection" rel="attachment wp-att-6130"><img class="aligncenter size-medium wp-image-6130" title="Diode polarity protection" src="http://electropart.info/wp-content/uploads/2012/03/diode-polarity-protection-300x179.jpg" alt="Diode polarity protection" width="300" height="179" /></a>For all the circuits that are powered by DC voltage, should always be considered the correct polarity! Whether it is positive or negative pole, or the circuit will be damaged.</p>
<p><strong>A diode for reverse polarity protection</strong><br />
Of course, there is a polarized connector system such as the hollow plug. For many small self-built circuits, voltage circuits for testing, often taken from the power supply. And because it can happen that you accidentally turn on the power supply with the wrong polarity on the circuit, which makes your project vain. Even when soldering hollow connectors can happen the same.</p>
<p><span id="more-6129"></span>For circuits with such errors can not be avoided, but is there any simple protection? yes, with the installation of the polarity protection diode in the positive supply voltage of the circuit!</p>
<p>Diodes mounted so that the anode is connected to the positive terminal ofvoltage source and the cathode to the positive terminal of the circuit. If thecircuit is connected to the correct polarity, the current flows from thepositive terminal through the diode in the circuit and the negative terminalback to a voltage source.</p>
<p>If the circuit is accidentally connected to wrong polarity (the positive voltage to the negative terminal of the circuit), no current can flow because it flows in the &#8221;wrong&#8221; direction (this will be blocked by diode).</p>
<p>When installing a protection diode we must consider two things :</p>
<ul>
<li>Diode should be able to cope current consumption of the circuit.</li>
<li>In the diode voltage drop of about 0.7 volts, ie, the circuit gets about 0.7volts less than the applied voltage.</li>
</ul>
<div id="seo_alrp_related"><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/components/led-characteristics.html" rel="bookmark">LED characteristics</a></strong> <br />LEDs are semiconductors, and a sense of connection is important. LED Reverse voltage are very low (around a few volts), do not plug in the wrong way, this will cause damage. Similarly, an LED is expected to operate at a ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/basic-concept-of-electricity/basic-theory-of-power-supply-circuit.html" rel="bookmark">Basic Theory of Power Supply Circuit</a></strong> <br />A power supply or UPS circuit can be a device that supplies electrical power to one or far more electrical loads. The term is most generally applied to devices that convert one form of electrical energy to an additional, though ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/components/handling-the-battery.html" rel="bookmark">Handling the Battery</a></strong> <br />Batteries must be carefully handled. Here I have briefly summarized some important rules about handling batteries properly .. Battery care tips Never buy batteries for stock! During long storage battery has a certain self-discharge, and this will increase at higher temperatures. ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/schematic-diagrams/lithium-battery-charger-schematic.html" rel="bookmark">Lithium Battery Charger schematic</a></strong> <br />The following diagram is the schematic diagram of Lithium battery charger. Featured with overcharging protection, your lithium battery will be more durable and not easily damaged. Charging is accomplished with a constant current of 60 mA for AA cells to ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/repairing-tutorial/ac-adapter-reparation-notes.html" rel="bookmark">AC Adapter Reparation Notes</a></strong> <br />AC adapter basics: It seems that the world now revolves around AC Adapters or 'Wall Warts' as they tend to be called. There are several basic types. Despite the fact that the plugs to the equipment may be identical THESE ...<br /><br /></div></div>]]></content:encoded>
			<wfw:commentRss>http://electropart.info/components/polarity-protection-by-diode.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Speakers frequency range</title>
		<link>http://electropart.info/components/speakers-frequency-range.html</link>
		<comments>http://electropart.info/components/speakers-frequency-range.html#comments</comments>
		<pubDate>Fri, 17 Feb 2012 23:16:49 +0000</pubDate>
		<dc:creator>Electronics Online</dc:creator>
				<category><![CDATA[Components]]></category>
		<category><![CDATA[midrange speaker]]></category>
		<category><![CDATA[speaker crossover]]></category>
		<category><![CDATA[Speakers frequency range]]></category>
		<category><![CDATA[Tweeter]]></category>
		<category><![CDATA[woover]]></category>

		<guid isPermaLink="false">http://electropart.info/?p=6102</guid>
		<description><![CDATA[Each speaker can reproduce a given frequency range. In some common usage typically use a speaker called the full-range speakers, because it has a relatively large frequency range, for example, can play 80-15000 Hz. Full-range Speakers are commonly used in portable radios, transistor radios, radio tubes, old console radio or television. There are also speakers [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://electropart.info/components/speakers-frequency-range.html/attachment/loudspeakers" rel="attachment wp-att-6103"><img class="aligncenter size-medium wp-image-6103" title="loudspeakers" src="http://electropart.info/wp-content/uploads/2012/02/loudspeakers-148x300.jpg" alt="loudspeakers" width="148" height="300" /></a>Each speaker can reproduce a given frequency range. In some common usage typically use a speaker called the full-range speakers, because it has a relatively large frequency range, for example, can play 80-15000 Hz. Full-range Speakers are commonly used in portable radios, transistor radios, radio tubes, old console radio or television.</p>
<p><span id="more-6102"></span>There are also speakers that can reproduce only a limited frequency range and are optimized for this then. <strong>Woofer</strong> has a large membrane and reproducing low frequencies (bass) optimized for high performance. <strong>Tweeter</strong> is optimized for reproducing of high frequencies (treble), which works with small diaphragms which work better than the large ones. Then there are the <strong>midrange</strong> speaker, which are optimized for medium-frequency.</p>
<p>Some speakers are integrated in a hi fi box, which are optimized for specific frequency ranges and produce only this, for example, a low, midrange and tweeter. In most cases the crossover is used, consists of different filters, which only allow the speaker to receive the frequency with which they can process. Since high and in the midrange compared to the woofers are too loud, is made at the crossover for this level adjustment with resistors, as is seen in the example circuit shown below.<br />
<a href="http://electropart.info/components/speakers-frequency-range.html/attachment/speaker-crossover" rel="attachment wp-att-6104"><img class="aligncenter size-medium wp-image-6104" title="speaker crossover" src="http://electropart.info/wp-content/uploads/2012/02/speaker-crossover-300x193.jpg" alt="speaker crossover" width="300" height="193" /></a><br />
During the manufacture of hi-fi speakers will be more things to consider. The most important thing in this case, known as Thiele Small parameters. With this, for example, the correct case size specified of woofer. But this is a specialized field that is not discussed further here. There are a lot of literature!</p>
<div id="seo_alrp_related"><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/components/loudspeaker.html" rel="bookmark">Loudspeaker</a></strong> <br />A loudspeaker is a device that converts low-frequency electrical signals into sound. The task of the speaker is to enable the air in periodic oscillations - which in turn brings in the human ear drum to vibrate. To convert the electrical ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/repairing-tutorial/loudspeaker-repair-notes.html" rel="bookmark">Loudspeaker Repair Notes</a></strong> <br />Loudspeaker anatomy: In this document, we use the terms 'loudspeaker' or 'speaker system' to denote a unit consisting of one or more drivers in an acoustic enclosure perhaps along with a frequency selective crossover, tone controls and switches, fuses or ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/components/passive-crossover-basic-design.html" rel="bookmark">Passive CrossOver Basic Design</a></strong> <br />A passive crossover is made entirely of passive components, arranged most commonly in a Cauer topology to achieve a Butterworth filter. Passive filters use non-reactive resistors combined with reactive components such as capacitors and inductors. Very high performance passive crossovers ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/components/audio-transformers.html" rel="bookmark">Audio transformers</a></strong> <br />Since audio electronics presence, an audio transformer has played an important role. When the transformer compared with modern electronic components it will look big, heavy, and expensive but it continues to be the most effective in the solution of many ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/schematic-diagrams/audio-schematic-diagrams/ka2209-1-watt-stereo-amplifier.html" rel="bookmark">KA2209, 1 Watt Stereo Amplifier</a></strong> <br />The following schematic diagram is 1 Watt stereo audio amplifier circuit which use IC KA2209 as the main active component. Component part list: R1 R2 = 10K R3 R4 = 4R7 C1 = 10uF/16V C2, C3 = 470uF/16V C4, C5 ...<br /><br /></div></div>]]></content:encoded>
			<wfw:commentRss>http://electropart.info/components/speakers-frequency-range.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Loudspeaker</title>
		<link>http://electropart.info/components/loudspeaker.html</link>
		<comments>http://electropart.info/components/loudspeaker.html#comments</comments>
		<pubDate>Mon, 13 Feb 2012 15:18:35 +0000</pubDate>
		<dc:creator>Electronics Online</dc:creator>
				<category><![CDATA[Components]]></category>
		<category><![CDATA[electrodynamic loudspeaker]]></category>
		<category><![CDATA[electrodynamic loudspeaker structure]]></category>
		<category><![CDATA[loudspeaker]]></category>
		<category><![CDATA[Loudspeaker Impedance]]></category>
		<category><![CDATA[loudspeaker theory]]></category>

		<guid isPermaLink="false">http://electropart.info/?p=6093</guid>
		<description><![CDATA[A loudspeaker is a device that converts low-frequency electrical signals into sound. The task of the speaker is to enable the air in periodic oscillations &#8211; which in turn brings in the human ear drum to vibrate. To convert the electrical signals into sound waves are displaced almost exclusively membranes into mechanical vibrations, which also gets [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://electropart.info/components/loudspeaker.html/attachment/loudspeaker" rel="attachment wp-att-6094"><img class="aligncenter size-medium wp-image-6094" title="Loudspeaker" src="http://electropart.info/wp-content/uploads/2012/02/loudspeaker-300x209.jpg" alt="Loudspeaker" width="300" height="209" /></a></p>
<p>A loudspeaker is a device that converts low-frequency electrical signals into sound. The task of the speaker is to enable the air in periodic oscillations &#8211; which in turn brings in the human ear drum to vibrate.</p>
<p>To convert the electrical signals into sound waves are displaced almost exclusively membranes into mechanical vibrations, which also gets the air to the membrane in motion. These membranes will normally act as a piston radiator, ie that the entire membrane is moved smoothly.</p>
<p><span id="more-6093"></span>This is generally only &#8211; in relation to the membrane surface &#8211; to reach low frequencies. All membranes are divided into regions at higher frequencies which move in opposite directions, thereby arise naturally dead lines on which does not move the diaphragm. These phenomena are called partial vibrations.</p>
<p><a href="http://electropart.info/wp-content/uploads/2012/02/drum_vibration_mode.gif"><img class="aligncenter size-full wp-image-6095" title="drum vibration mode" src="http://electropart.info/wp-content/uploads/2012/02/drum_vibration_mode.gif" alt="drum vibration mode" width="250" height="130" /></a>There are different types of speakers such as the full-range speaker, Dome, Piezo speakers or horns. We will turn our attention here only to the full-range speaker, because it is often used.</p>
<p><strong>Structure and Function</strong></p>
<p><strong></strong>Speaker can be driven in various ways. Most common are the electrodynamic loudspeaker. It includes an annular permanent magnet in its center a freely movable coil, also called voice coil (spule). This voice coil is directly connected to the diaphragm.</p>
<p><strong>Structure of an electrodynamic loudspeaker</strong></p>
<p><strong></strong>If the alternating voltage applied to the voice coil, magnetic field generated in the voice coil. Depending on the direction of the magnetic field, the voice coil is repelled by the permanent magnet (the voice coil moves out of the permanent magnet) or attracted (the voice coil moves into the permanent magnets). Provided that the oscillation is transmitted in a frequency range of human ears, We perceive this as a tone or sound.<a href="http://electropart.info/components/loudspeaker.html/attachment/electrodynamic-loudspeaker" rel="attachment wp-att-6098"><img class="aligncenter size-medium wp-image-6098" title="Electrodynamic loudspeaker" src="http://electropart.info/wp-content/uploads/2012/02/electrodynamic-loudspeaker-300x150.jpg" alt="Electrodynamic loudspeaker" width="300" height="150" /></a></p>
<p>Speakers still have a polarity. Normally, this is such that the voice coil moves out of the permanent magnet. If the speaker is installed incorrectly, it swings to &#8220;wrong side&#8221;, that is backwards, which at high volume levels, can cause very strong vibrations, the diaphragm will strikes the rear, which can result in damage to your speakers. Therefore, we must pay attention to polarity when connecting speakers</p>
<p><strong>Loudspeaker Impedance</strong><br />
Each speaker has a certain resistance, known as impedance. With a resistive impedance is meant, which is only available with an alternating voltage. Typical impedance values ​​for today&#8217;s speakers are 4 or 8 ohms. Older speakers may also have a higher impedance.</p>
<div id="seo_alrp_related"><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/repairing-tutorial/loudspeaker-repair-notes.html" rel="bookmark">Loudspeaker Repair Notes</a></strong> <br />Loudspeaker anatomy: In this document, we use the terms 'loudspeaker' or 'speaker system' to denote a unit consisting of one or more drivers in an acoustic enclosure perhaps along with a frequency selective crossover, tone controls and switches, fuses or ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/components/speakers-frequency-range.html" rel="bookmark">Speakers frequency range</a></strong> <br />Each speaker can reproduce a given frequency range. In some common usage typically use a speaker called the full-range speakers, because it has a relatively large frequency range, for example, can play 80-15000 Hz. Full-range Speakers are commonly used in ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/components/passive-crossover-basic-design.html" rel="bookmark">Passive CrossOver Basic Design</a></strong> <br />A passive crossover is made entirely of passive components, arranged most commonly in a Cauer topology to achieve a Butterworth filter. Passive filters use non-reactive resistors combined with reactive components such as capacitors and inductors. Very high performance passive crossovers ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/simple-projects/metal-detectors-based-on-555-ic.html" rel="bookmark">Metal detectors based on 555 IC</a></strong> <br />A very simple metal detector electronics, the project can be designed using a simple 555 timer integrated circuit. As you can see in the schematics, electronic projects require some electronic parts are available. This metal detector electronics circuit also detects ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/components/transformer.html" rel="bookmark">Transformer</a></strong> <br />Transformers transform Alternating current electricity from one voltage to a different voltage with minimal loss of power. Transformers run just with Alternating current (AC) and this certainly one of the explanation why mains electricity is AC. Step-up transformers increase voltage, ...<br /><br /></div></div>]]></content:encoded>
			<wfw:commentRss>http://electropart.info/components/loudspeaker.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fuses</title>
		<link>http://electropart.info/components/fuses.html</link>
		<comments>http://electropart.info/components/fuses.html#comments</comments>
		<pubDate>Mon, 06 Feb 2012 15:12:11 +0000</pubDate>
		<dc:creator>Electronics Online</dc:creator>
				<category><![CDATA[Components]]></category>
		<category><![CDATA[different types of fuse holders]]></category>
		<category><![CDATA[Fuse Characteristics]]></category>
		<category><![CDATA[fuse holder]]></category>
		<category><![CDATA[fuses]]></category>

		<guid isPermaLink="false">http://electropart.info/?p=6070</guid>
		<description><![CDATA[Fuses are often used in electronic circuits and devices. They consist of glass or ceramic cylinder with a metal cap at the end. Either exposed or fuse wires are sometimes embedded in quartz sand. This is used to eliminate electric arc when burning through the wire. Fuse Characteristics and usage Fuses are available in various [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://electropart.info/components/fuses.html/attachment/fuse-types" rel="attachment wp-att-6071"><img class="aligncenter size-medium wp-image-6071" title="Various Fuses" src="http://electropart.info/wp-content/uploads/2012/02/fuse-types-300x207.jpg" alt="Various Fuses" width="300" height="207" /></a>Fuses are often used in electronic circuits and devices. They consist of glass or ceramic cylinder with a metal cap at the end. Either exposed or fuse wires are sometimes embedded in quartz sand. This is used to eliminate electric arc when burning through the wire.</p>
<p><strong><span id="more-6070"></span>Fuse Characteristics and usage</strong><br />
Fuses are available in various lengths and diameters. European standard size is 5 x 20 mm, in the U.S. there are 6.3 x 32 mm, which corresponds to 1/4 x 1 1/4 inch. Sometimes appear some special sizes but this is very rare.</p>
<p>Fuses are available in different trigger speed rates, how fast fuse is triggered in case of overcurrent:</p>
<table width="289" cellspacing="1" cellpadding="5">
<tbody>
<tr>
<th width="101">
<div align="center">Sign</div>
</th>
<th width="163">
<div align="center">Annotation</div>
</th>
</tr>
<tr>
<td>
<div align="center">FF</div>
</td>
<td>
<div align="center">very fast acting</div>
</td>
</tr>
<tr>
<td>
<div align="center">F</div>
</td>
<td>
<div align="center">fast acting</div>
</td>
</tr>
<tr>
<td>
<div align="center">M</div>
</td>
<td>
<div align="center">medium time lag</div>
</td>
</tr>
<tr>
<td>
<div align="center">T</div>
</td>
<td>
<div align="center">time-lag</div>
</td>
</tr>
<tr>
<td>
<div align="center">TT</div>
</td>
<td>
<div align="center">long time-lag</div>
</td>
</tr>
</tbody>
</table>
<p>The American types, from 6.3 x 32 mm have a different trigger conduct than European types! Fast types not tolerate inrush current exceeds the nominal value of the fuse. To secure equipment with high input currents such as transformers, is better with a a slow or medium time lag fuses, if the fuse is located at the transformer primary side.<a href="http://electropart.info/components/fuses.html/attachment/fuses-holder" rel="attachment wp-att-6072"><img class="aligncenter size-medium wp-image-6072" title="Fuses holder" src="http://electropart.info/wp-content/uploads/2012/02/fuses-holder-300x164.jpg" alt="Fuses holder" width="300" height="164" /></a></p>
<p>In principle, this should have a fuse box when it assembled in an electronic device! For installation of the fuse, there are different types of fuse holders. There are those that can be directly soldered onto a circuit board for tightening. However, it should always open the case to replace a fuse in it. It&#8217;s more comfortable with a fuse holder, which can be externally screw from the outside. For the internal fuse box, there is a cover to prevent accidental contact.</p>
<div id="seo_alrp_related"><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/components/the-fuse.html" rel="bookmark">The Fuse</a></strong> <br />In some case, a fuse is very important for your electronic circuit and device. With this very cheap component, you will protect your expensive circuit/device from damage (or explosion.. :) ). Here the little explanation about fuse. In electronics and ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/components/component-socket.html" rel="bookmark">Component socket</a></strong> <br />Component sockets can be integrated into an electrical circuit or electronic, without having to solder, allowing them to easily change, for troubleshooting or testing. There are different types and qualities of sockets. Here are some examples. Socket for IC (integrated ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/repairing-tutorial/ac-adapter-reparation-notes.html" rel="bookmark">AC Adapter Reparation Notes</a></strong> <br />AC adapter basics: It seems that the world now revolves around AC Adapters or 'Wall Warts' as they tend to be called. There are several basic types. Despite the fact that the plugs to the equipment may be identical THESE ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/schematic-diagrams/audio-schematic-diagrams/25w-power-audio-amplifier-circuit.html" rel="bookmark">25W Power Audio Amplifier Circuit</a></strong> <br />This is another simple schematic diagram of 25W power audio amplifier using single IC LM1875. Component part list R1 _____________ 1K R2 _____________ 1M R3 _____________ 22K R4 _____________ 10K R5 _____________ 180K R6 _____________ 1R IC1 ____________ LM1875 C1 ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/basic-concept-of-electricity/power-dissipation-in-resistance.html" rel="bookmark">Power Dissipation in Resistance</a></strong> <br />When current flows in a resistance, heat is produced because friction between the moving free electrons and the atoms obstructs the path of electron flow. The heat is evidence that power is used in producing current. This is how a ...<br /><br /></div></div>]]></content:encoded>
			<wfw:commentRss>http://electropart.info/components/fuses.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>High pressure sodium vapor lamps</title>
		<link>http://electropart.info/components/high-pressure-sodium-vapor-lamps.html</link>
		<comments>http://electropart.info/components/high-pressure-sodium-vapor-lamps.html#comments</comments>
		<pubDate>Mon, 30 Jan 2012 23:09:58 +0000</pubDate>
		<dc:creator>Electronics Online</dc:creator>
				<category><![CDATA[Components]]></category>
		<category><![CDATA[high pressure sodium light]]></category>
		<category><![CDATA[high pressure sodium light system]]></category>
		<category><![CDATA[high pressure sodium vapor lamp]]></category>
		<category><![CDATA[sodium vapor]]></category>
		<category><![CDATA[sodium vapor bulb]]></category>
		<category><![CDATA[sodium vapor lamp]]></category>
		<category><![CDATA[street lighting]]></category>

		<guid isPermaLink="false">http://electropart.info/?p=5463</guid>
		<description><![CDATA[The high pressure sodium vapor lamp has a very high light output and is mainly used for street lighting. Inside a high-pressure sodium vapor lamp is a discharge vessel (burner), which consists of transparent alumina ceramics. The discharge vessel is filled with sodium and another noble gas. To protect and isolate thermally burner and some [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;"><a href="http://electropart.info/wp-content/uploads/2012/01/Sodium-vapor-lamps.jpg"><img class="aligncenter size-medium wp-image-5664" title="Sodium vapor lamps" src="http://electropart.info/wp-content/uploads/2012/01/Sodium-vapor-lamps-300x148.jpg" alt="Sodium vapor lamps" width="300" height="148" /></a>The high pressure sodium vapor lamp has a very high light output and is mainly used for street lighting.</p>
<p>Inside a high-pressure sodium vapor lamp is a discharge vessel (burner), which consists of transparent alumina ceramics. The discharge vessel is filled with sodium and another noble gas. To protect and isolate thermally burner and some thick metal cable is pressed into balls or elliptical-shaped glass tube. Metal wires are also used to supply electricity. If the light is in operation, the temperature in the discharge vessel of about 1,000 ° C and pressure of the gas is very high, because of this they are named.<span id="more-5463"></span><a href="http://electropart.info/components/high-pressure-sodium-vapor-lamps.html/attachment/sodium-vapor-lamps-decription" rel="attachment wp-att-5666"><img class="aligncenter size-medium wp-image-5666" title="Sodium vapor lamps decription" src="http://electropart.info/wp-content/uploads/2012/01/Sodium-vapor-lamps-decription-300x148.jpg" alt="Sodium vapor lamps decription" width="300" height="148" /></a></p>
<p>High pressure sodium vapor lamps are usually manufactured with the bases E-27, E-33 or E-40. These lamps must be operated with a ballast and an ignitor that provides the necessary starting voltage of about 3,000 to 5,000 volts. After ignition, the lights will initially weak. Only after about 15 minutes, they reach full brightness.<a href="http://electropart.info/wp-content/uploads/2012/01/High-pressure-sodium-vapor-lamp.jpg"><img class="aligncenter size-medium wp-image-5667" title="High pressure sodium vapor lamp" src="http://electropart.info/wp-content/uploads/2012/01/High-pressure-sodium-vapor-lamp-300x224.jpg" alt="High pressure sodium vapor lamp" width="300" height="224" /></a></p>
<p>High pressure sodium vapor lamps emit a very wide range spectrum of light. The color is yellow but over-emphasized. Common performance are 35, 50, 70, 100, 150, 250, 400, 700 and 1000 watts. Also, there are lamps with frosted glass bodies.<a href="http://electropart.info/wp-content/uploads/2012/01/Street-lamp-with-6-high-pressure-sodium-lamps.jpg"><img class="aligncenter size-medium wp-image-5668" title="Street lamp with 6 high-pressure sodium lamps" src="http://electropart.info/wp-content/uploads/2012/01/Street-lamp-with-6-high-pressure-sodium-lamps-300x236.jpg" alt="Street lamp with 6 high-pressure sodium lamps" width="300" height="236" /></a></p>
<div id="seo_alrp_related"><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/components/high-pressure-mercury-lamps.html" rel="bookmark">High pressure mercury lamps</a></strong> <br />The mercury vapor lamp is a high-pressure gas discharge lamp further. The glass bulb of mercury vapor lamps, high pressure usually has an elliptical shape. Inside the bulb is a quartz discharge tube, the mercury vapor. Because there are two ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/components/fluorescent-lamps.html" rel="bookmark">Fluorescent lamps</a></strong> <br />Fluorescent lamps are now widely used because they have a much lower power consumption than equally bright incandescent lamps. They are available in light colors sunlight, cool white and warm white. Fluorescent lamps Design and function Fluorescent lamps are one ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/components/incandescent-lamps.html" rel="bookmark">Incandescent lamps</a></strong> <br />The Incandescent lamps (light bulbs) is probably one of the most important discoveries ever! Without it we would have no electric lights. Thomas Alva Edison (1847-1931) intended to make light from an electric current. Edison experimented with various materials as ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/components/compact-fluorescent-lamps-cfl.html" rel="bookmark">Compact Fluorescent Lamps (CFL)</a></strong> <br />Compact Fluorescent Lamps (CFL) have very small dimensions and a curved glass tube. This makes it possible to provide them with a screw and screwed instead of normal bulbs in sockets. They are now also known as energy saving lamps. ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/components/led-light-emitting-diode.html" rel="bookmark">LED &#8211; Light Emitting Diode</a></strong> <br />LED (Light Emitting Diode) is a semiconductor diode that emits light when an electric current is applied in the forward direction of the device, as in the simple LED circuit. The effect is a form of electroluminescence where incoherent and ...<br /><br /></div></div>]]></content:encoded>
			<wfw:commentRss>http://electropart.info/components/high-pressure-sodium-vapor-lamps.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>High pressure mercury lamps</title>
		<link>http://electropart.info/components/high-pressure-mercury-lamps.html</link>
		<comments>http://electropart.info/components/high-pressure-mercury-lamps.html#comments</comments>
		<pubDate>Wed, 25 Jan 2012 16:12:01 +0000</pubDate>
		<dc:creator>Electronics Online</dc:creator>
				<category><![CDATA[Components]]></category>
		<category><![CDATA[Mercury high pressure lamps]]></category>
		<category><![CDATA[mercury vapor]]></category>
		<category><![CDATA[mercury vapor lamps]]></category>
		<category><![CDATA[Mercury vapor lamps Application]]></category>
		<category><![CDATA[Mercury vapor lamps Circuit]]></category>

		<guid isPermaLink="false">http://electropart.info/?p=5251</guid>
		<description><![CDATA[The mercury vapor lamp is a high-pressure gas discharge lamp further. The glass bulb of mercury vapor lamps, high pressure usually has an elliptical shape. Inside the bulb is a quartz discharge tube, the mercury vapor. Because there are two main electrodes, is ignited by two ignition electrodes, which are located directly on 230V mains [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://electropart.info/components/high-pressure-mercury-lamps.html/attachment/mercury-high-pressure-lamps" rel="attachment wp-att-5253"><img class="aligncenter size-medium wp-image-5253" title="Mercury high pressure lamps" src="http://electropart.info/wp-content/uploads/2012/01/Mercury-high-pressure-lamps-257x300.jpg" alt="Mercury high pressure lamps" width="257" height="300" /></a>The mercury vapor lamp is a high-pressure gas discharge lamp further. The glass bulb of mercury vapor lamps, high pressure usually has an elliptical shape. Inside the bulb is a quartz discharge tube, the mercury vapor. Because there are two main electrodes, is ignited by two ignition electrodes, which are located directly on 230V mains voltage (see figure).<span id="more-5251"></span></p>
<p><a href="http://electropart.info/components/high-pressure-mercury-lamps.html/attachment/mercury-high-pressure-lamps-element" rel="attachment wp-att-5252"><img class="aligncenter size-medium wp-image-5252" title="Mercury high pressure lamps element" src="http://electropart.info/wp-content/uploads/2012/01/Mercury-high-pressure-lamps-element-233x300.jpg" alt="Mercury high pressure lamps element" width="233" height="300" /></a>The mercury vapor high-pressure lamp contains a discharge tube made ​​of quartz (burner) that is associated with mercury and argon gas filled. The burner contains an ignition electrode, so that these lamps require a ballast operation only. The ignition takes place directly at the mains voltage of 230 volts.</p>
<p>The output light from mercury vapor lamps is about 3 times as lighter as the incandescent lamp, here is about 30-60 lm / W. The average lifespan is about 6 times greater, it is around 6000 hours. Without phosphorus on the inside of the glass spheres are light bluish-white color. Mercury vapor lamps require 3-5 minutes of heating, process re-ignition is possible only after cooling.</p>
<p>After startup process it barely lit first. Only when a certain quantity of mercury is vaporized and increasing the gas pressure in the burner, it will be brighter. Available in 50, 80, 125, 250, 400 and 700 watts.</p>
<p><strong>Mercury vapor lamps Application</strong><br />
Mercury vapor lamps are used primarily for street lighting or floodlighting of sports fields and stadiums. Also for the illumination of churches, castles or large buildings, they are used.</p>
<p><strong>Mercury vapor lamps Circuit</strong><br />
To limit the current in the circuit requires the lamp ballast. By this measure the power factor cos is reduced to about 0.5.<a href="http://electropart.info/components/high-pressure-mercury-lamps.html/attachment/mercury-high-pressure-lamps-schematic" rel="attachment wp-att-5254"><img class="aligncenter size-medium wp-image-5254" title="Mercury high pressure lamps schematic" src="http://electropart.info/wp-content/uploads/2012/01/Mercury-high-pressure-lamps-schematic-282x300.jpg" alt="Mercury high pressure lamps schematic" width="282" height="300" /></a></p>
<div id="seo_alrp_related"><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/components/high-pressure-sodium-vapor-lamps.html" rel="bookmark">High pressure sodium vapor lamps</a></strong> <br />The high pressure sodium vapor lamp has a very high light output and is mainly used for street lighting. Inside a high-pressure sodium vapor lamp is a discharge vessel (burner), which consists of transparent alumina ceramics. The discharge vessel is ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/components/fluorescent-lamps.html" rel="bookmark">Fluorescent lamps</a></strong> <br />Fluorescent lamps are now widely used because they have a much lower power consumption than equally bright incandescent lamps. They are available in light colors sunlight, cool white and warm white. Fluorescent lamps Design and function Fluorescent lamps are one ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/components/compact-fluorescent-lamps-cfl.html" rel="bookmark">Compact Fluorescent Lamps (CFL)</a></strong> <br />Compact Fluorescent Lamps (CFL) have very small dimensions and a curved glass tube. This makes it possible to provide them with a screw and screwed instead of normal bulbs in sockets. They are now also known as energy saving lamps. ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/components/incandescent-lamps.html" rel="bookmark">Incandescent lamps</a></strong> <br />The Incandescent lamps (light bulbs) is probably one of the most important discoveries ever! Without it we would have no electric lights. Thomas Alva Edison (1847-1931) intended to make light from an electric current. Edison experimented with various materials as ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/schematic-diagrams/lamp-brightness-control.html" rel="bookmark">Lamp Brightness Control</a></strong> <br />The following is a schematic diagram of a lamp brightness control. Lamp used is a light tube with a voltage 3V. You can replace the lamp with other lamp types, such as LEDs. How the circuit works: IC1 works to ...<br /><br /></div></div>]]></content:encoded>
			<wfw:commentRss>http://electropart.info/components/high-pressure-mercury-lamps.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Compact Fluorescent Lamps (CFL)</title>
		<link>http://electropart.info/components/compact-fluorescent-lamps-cfl.html</link>
		<comments>http://electropart.info/components/compact-fluorescent-lamps-cfl.html#comments</comments>
		<pubDate>Thu, 19 Jan 2012 23:27:04 +0000</pubDate>
		<dc:creator>Electronics Online</dc:creator>
				<category><![CDATA[Components]]></category>
		<category><![CDATA[advantages of compact fluorescent lamps]]></category>
		<category><![CDATA[CFL]]></category>
		<category><![CDATA[Compact Fluorescent Lamps]]></category>
		<category><![CDATA[Comparison between light bulbs and CFL]]></category>
		<category><![CDATA[energy saving lamp]]></category>
		<category><![CDATA[G23 base CFL]]></category>

		<guid isPermaLink="false">http://electropart.info/?p=5170</guid>
		<description><![CDATA[Compact Fluorescent Lamps (CFL) have very small dimensions and a curved glass tube. This makes it possible to provide them with a screw and screwed instead of normal bulbs in sockets. They are now also known as energy saving lamps. The advantages of compact fluorescent lamps Compact fluorescent lamps or energy saving lamps have over [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://electropart.info/wp-content/uploads/2012/01/CFL.jpg"><img class="aligncenter size-medium wp-image-5171" title="CFL" src="http://electropart.info/wp-content/uploads/2012/01/CFL-300x152.jpg" alt="compact fluorescent lamps" width="300" height="152" /></a>Compact Fluorescent Lamps (CFL) have very small dimensions and a curved glass tube. This makes it possible to provide them with a screw and screwed instead of normal bulbs in sockets. They are now also known as energy saving lamps. <strong><span id="more-5170"></span>The advantages of compact fluorescent lamps</strong></p>
<p>Compact fluorescent lamps or energy saving lamps have over regular bulbs for the same light efficiency a significantly lower power consumption &#8211; nearly 80 percent! Comparison between light bulbs and energy saving lamps is shown in the following table:</p>
<table width="396" border="1" cellspacing="0" cellpadding="0" align="center">
<colgroup>
<col width="300" />
<col width="300" /> </colgroup>
<tbody>
<tr>
<th width="300">
<div align="center">Light bulb</div>
</th>
<th width="300">
<div align="center">Compact Fluorescent Lamp</div>
</th>
</tr>
<tr>
<td>
<div align="center">25 W</div>
</td>
<td>
<div align="center">5 W</div>
</td>
</tr>
<tr>
<td>
<div align="center">40 W</div>
</td>
<td>
<div align="center">7 W</div>
</td>
</tr>
<tr>
<td>
<div align="center">60 W</div>
</td>
<td>
<div align="center">11 W</div>
</td>
</tr>
<tr>
<td>
<div align="center">75 W</div>
</td>
<td>
<div align="center">15 W</div>
</td>
</tr>
<tr>
<td>
<div align="center">100 W</div>
</td>
<td>
<div align="center">20 W</div>
</td>
</tr>
<tr>
<td>
<div align="center">150 W</div>
</td>
<td>
<div align="center">25 W</div>
</td>
</tr>
</tbody>
</table>
<p>In addition, CFLs contain an electronic ballast which increases the operating frequency of the lamp to about 35 KHz. Due to this high frequency, the light is absolutely quiet and flicker-free. The lifetime of compact fluorescent lamps is much higher &#8211; they light about 8,000 to 10,000 hours, and therefore about 8 times longer than a normal light bulb! <a href="http://electropart.info/components/compact-fluorescent-lamps-cfl.html/attachment/warm-light-cfl" rel="attachment wp-att-5172"><img class="aligncenter size-medium wp-image-5172" title="Good energy saving lamps have a warm light" src="http://electropart.info/wp-content/uploads/2012/01/Warm-light-CFL-300x273.jpg" alt="Good energy saving lamps have a warm light" width="300" height="273" /></a>Nevertheless, there are also differences in the quality of compact fluorescent lamps! Cheap lamps generally produce a very cold light, which is often perceived as unpleasant. Here you need take up even better products, a pleasant and warm light to generate even have several years of warranty! Even today, compact fluorescent lamps are often surrounded by pear-shaped glass bulb,which the light bulbs are quite similar.<a href="http://electropart.info/components/compact-fluorescent-lamps-cfl.html/attachment/pear-shaped-glass-bulb" rel="attachment wp-att-5175"><img class="aligncenter size-medium wp-image-5175" title="CFL with Pear-shaped glass bulb" src="http://electropart.info/wp-content/uploads/2012/01/pear-shaped-glass-bulb-300x295.jpg" alt="Pear-shaped glass bulb" width="300" height="295" /></a> <strong></strong></p>
<p><strong>Decomposed energy-saving lamp</strong></p>
<p>Each energy saving lamp contains an electronic ballast. This is located in the base of the lamp. It generates the necessary voltage for the lamp. Since this is at high voltage, it must be treated with caution:</p>
<p><em>Never operate an opened energy saving lamp! Only open old unused lamps, which are no longer operated.<a href="http://electropart.info/wp-content/uploads/2012/01/CFL-circuit.jpg"><img class="aligncenter size-medium wp-image-5187" title="CFL circuit" src="http://electropart.info/wp-content/uploads/2012/01/CFL-circuit-300x225.jpg" alt="CFL circuit" width="300" height="225" /></a></em> <strong></strong></p>
<p><strong>Compact fluorescent lamps with G23 base</strong></p>
<p>In addition to the compact fluorescent lamps with screw bases with which it also called the G23 pin base. These lamps contain only the case with a conventional starter and ballast (choke) operation, which is located mostly in the power cord plug. The lamps themselves are U-shaped and can only in special versions (which contain the ballast) or be used in special space provided lights, containing the ballast plug in the power cord.<a href="http://electropart.info/components/compact-fluorescent-lamps-cfl.html/attachment/g23-pin-base" rel="attachment wp-att-5176"><img class="aligncenter size-medium wp-image-5176" title="G23 pin base CFL" src="http://electropart.info/wp-content/uploads/2012/01/G23-pin-base-298x300.jpg" alt="G23 pin base CFL" width="298" height="300" /></a></p>
<div id="seo_alrp_related"><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/components/fluorescent-lamps.html" rel="bookmark">Fluorescent lamps</a></strong> <br />Fluorescent lamps are now widely used because they have a much lower power consumption than equally bright incandescent lamps. They are available in light colors sunlight, cool white and warm white. Fluorescent lamps Design and function Fluorescent lamps are one ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/components/high-pressure-mercury-lamps.html" rel="bookmark">High pressure mercury lamps</a></strong> <br />The mercury vapor lamp is a high-pressure gas discharge lamp further. The glass bulb of mercury vapor lamps, high pressure usually has an elliptical shape. Inside the bulb is a quartz discharge tube, the mercury vapor. Because there are two ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/components/high-pressure-sodium-vapor-lamps.html" rel="bookmark">High pressure sodium vapor lamps</a></strong> <br />The high pressure sodium vapor lamp has a very high light output and is mainly used for street lighting. Inside a high-pressure sodium vapor lamp is a discharge vessel (burner), which consists of transparent alumina ceramics. The discharge vessel is ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/components/incandescent-lamps.html" rel="bookmark">Incandescent lamps</a></strong> <br />The Incandescent lamps (light bulbs) is probably one of the most important discoveries ever! Without it we would have no electric lights. Thomas Alva Edison (1847-1931) intended to make light from an electric current. Edison experimented with various materials as ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/components/led-light-emitting-diode.html" rel="bookmark">LED &#8211; Light Emitting Diode</a></strong> <br />LED (Light Emitting Diode) is a semiconductor diode that emits light when an electric current is applied in the forward direction of the device, as in the simple LED circuit. The effect is a form of electroluminescence where incoherent and ...<br /><br /></div></div>]]></content:encoded>
			<wfw:commentRss>http://electropart.info/components/compact-fluorescent-lamps-cfl.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fluorescent lamps</title>
		<link>http://electropart.info/components/fluorescent-lamps.html</link>
		<comments>http://electropart.info/components/fluorescent-lamps.html#comments</comments>
		<pubDate>Sun, 15 Jan 2012 08:53:46 +0000</pubDate>
		<dc:creator>Electronics Online</dc:creator>
				<category><![CDATA[Components]]></category>
		<category><![CDATA[Electronics Articles]]></category>
		<category><![CDATA[conventional control gear(CCG)]]></category>
		<category><![CDATA[electronic control gear (ECG)]]></category>
		<category><![CDATA[Fluorescent lamp work]]></category>
		<category><![CDATA[Fluorescent lamps]]></category>
		<category><![CDATA[Fluorescent lamps circuit]]></category>
		<category><![CDATA[Fluorescent lamps Structure]]></category>
		<category><![CDATA[gas discharge lamp]]></category>

		<guid isPermaLink="false">http://electropart.info/?p=4874</guid>
		<description><![CDATA[Fluorescent lamps are now widely used because they have a much lower power consumption than equally bright incandescent lamps. They are available in light colors sunlight, cool white and warm white. Fluorescent lamps Design and function Fluorescent lamps are one of the gas discharge lamp. It consists of a glass tube, which with mercury vapor [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://electropart.info/components/fluorescent-lamps.html/attachment/fluorescent-lamps" rel="attachment wp-att-4892"><img class="aligncenter size-medium wp-image-4892" title="Fluorescent lamps" src="http://electropart.info/wp-content/uploads/2012/01/Fluorescent-lamps-300x140.jpg" alt="Fluorescent lamps" width="300" height="140" /></a><strong>Fluorescent lamps</strong> are now widely used because they have a much lower power consumption than equally bright incandescent lamps. They are available in light colors sunlight, cool white and warm white.</p>
<p><strong>Fluorescent lamps Design and function</strong><br />
Fluorescent lamps are one of the gas discharge lamp. It consists of a glass tube, which with mercury vapor and an inert gas such as argon or krypton filled. The inside of the glass tube coated with phosphor. This converts the light generated in the operation of the ultraviolet light in a longer wavelength, ie, into visible light.</p>
<p><span id="more-4874"></span>The lamp has two electrodes made of tungsten. By a short voltage pulse, the gas is ionized and therefore electrically conductive. To generate this ignition voltage, a ballast is required. Conventional control gear (CCG) consist of a choke coil and a starter. The starter consists of a neon lamp and bimetal. Parallel to the starter, a capacitor is connected to the radio interference suppression.<br />
<a href="http://electropart.info/components/fluorescent-lamps.html/attachment/circuit-of-a-fluorescent-lamp" rel="attachment wp-att-4893"><img class="aligncenter size-medium wp-image-4893" title="Fluorescent lamp scheme" src="http://electropart.info/wp-content/uploads/2012/01/Circuit-of-a-fluorescent-lamp-300x198.jpg" alt="Circuit of a fluorescent lamp" width="300" height="198" /></a><br />
The ballast is connected in series with the fluorescent lamp. Parallel to the lamp is the starter. When switching a small current from the ballast flows through the first electrode of the lamp by the starter to the second electrode of the lamp and from there to the N-conductor. It comes to glow in the neon lamp to the starter. This heats the bimetal and which close to the neon lamp is shorted and goes out. Now, a high current from the ballast flows through the electrode of the lamp by the starter to the N-conductor. Due to the high current builds in the choke coil of the ballast to a magnetic field. Simultaneously by the high power of the lamp electrodes are heated. Electrons out from it.</p>
<p>Since the shorted glow lamp is not lit in the starter to cool the bimetal again &#8211; they open up again and the circuit is interrupted. This interruption of current flow causes a collapse of the magnetic field in the ballast. The collapsing magnetic field generated by the self-inductance of the choke coil a voltage surge of nearly 1000 volts. This high voltage is applied to the electrodes of the lamp and accelerates the electrons in the lamp at high speeds &#8211; the gas electrically conductive and light the lamp.</p>
<p>This usually runs from ignition process several times until it comes to a stable ignition. Therefore, fluorescent lamps flicker when turning several times until they light up. Since the ballast is an inductive resistor in the ground, this also has a power consumption which is around 10 watts. We must therefore not only the power of the fluorescent lamp to see solely, but must also add to the ballast! Nevertheless, the power consumption is significantly lower than the same light bulb!</p>
<p>A disadvantage of an individually-operated fluorescent lamp, is that it flickers to the rhythm of the line frequency of 50 Hz. Therefore, fluorescent lamps lamps are often offered as a double with two tubes in so-called double switch. This, the second lamp has a capacitive ballast. This leads to a phase shift of 180 degrees between two lamps, which cancels the flicker.<br />
<a href="http://electropart.info/wp-content/uploads/2012/01/fluorescent-lamps-in-older-streetlights.jpg"><img class="aligncenter size-medium wp-image-4894" title="fluorescent lamps in older streetlights" src="http://electropart.info/wp-content/uploads/2012/01/fluorescent-lamps-in-older-streetlights-300x225.jpg" alt="" width="300" height="225" /></a><br />
Today, apart from the conventional control gear(CCG), there are also electronic control gear (ECG). It is much more expensive, but it has several advantages:</p>
<ul>
<li>Soft in the lighting</li>
<li>Low power dissipation</li>
<li>With high-frequency operation, no blinking lights</li>
<li>There is no reactive power compensation required</li>
</ul>
<p><strong>Finally, note:</strong></p>
<p><em>Never broke a fluorescent light! Glass tube containing a small amount of mercury which toxic! Therefore, this lamp in any case should not disposed in the trash, but should be brought to the collection!</em></p>
<div id="seo_alrp_related"><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/components/compact-fluorescent-lamps-cfl.html" rel="bookmark">Compact Fluorescent Lamps (CFL)</a></strong> <br />Compact Fluorescent Lamps (CFL) have very small dimensions and a curved glass tube. This makes it possible to provide them with a screw and screwed instead of normal bulbs in sockets. They are now also known as energy saving lamps. ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/components/high-pressure-mercury-lamps.html" rel="bookmark">High pressure mercury lamps</a></strong> <br />The mercury vapor lamp is a high-pressure gas discharge lamp further. The glass bulb of mercury vapor lamps, high pressure usually has an elliptical shape. Inside the bulb is a quartz discharge tube, the mercury vapor. Because there are two ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/components/high-pressure-sodium-vapor-lamps.html" rel="bookmark">High pressure sodium vapor lamps</a></strong> <br />The high pressure sodium vapor lamp has a very high light output and is mainly used for street lighting. Inside a high-pressure sodium vapor lamp is a discharge vessel (burner), which consists of transparent alumina ceramics. The discharge vessel is ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/schematic-diagrams/lamp-brightness-control.html" rel="bookmark">Lamp Brightness Control</a></strong> <br />The following is a schematic diagram of a lamp brightness control. Lamp used is a light tube with a voltage 3V. You can replace the lamp with other lamp types, such as LEDs. How the circuit works: IC1 works to ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/schematic-diagrams/diode-tester.html" rel="bookmark">Diode tester</a></strong> <br />This diode tester circuit is very simple and can quickly determine the condition of a diode. The circuit checks for sure if a diode is open, shorted, or working properly. If lamp A lights, the diode is functional. When lamp-B ...<br /><br /></div></div>]]></content:encoded>
			<wfw:commentRss>http://electropart.info/components/fluorescent-lamps.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

