Theremin v.2 Power Supply Design

theremin-v2-power-supply

For the new version of the Theremin, I have chosen to use a dual 12V power supply. This will have more flexibility because it will allow me to use more sophisticated units, possibly using op-amps.

The circuit is very basic: it uses a dual 14V transformer (not shown in the schematic) capable of providing 1.5A at its output.

A dual transformer is made up as in the following picture.

center-tapped-transformer

Is has a primary winding that is connected to the AC power supply outlet, and a secondary winding with a center tapped wire that is usually put to ground on the low voltage circuit side.

Voltage between either end wire of the secondary and the center tapped wire is usually the same (with the exception of specifically made transformers), which we call V.

The voltage measured between the two end wires of the winding is instead two times V or 2V.

Sometimes, instead of having a single secondary winding, we have two, carrying the exact same voltage. In this case, we can connect together the two closest wires and consider that as the center tapped wire. Then everything works as the first kind of transformer.

transformer-trans64

The AC current of the transformer is converted in to a DC current through the usage of a bridge rectifier and the capacitors C1 and C2.

The bridge rectifier converts the sine wave coming from the transformer into a fully rectified wave.

Full-wave_rectified_sine

Then, the capacitor that follows (in this case C1 and C2) starts charging over the ascending sides of the wave and discharging, partially, over the descending sides of the wave, basically filling the wave in between crests and making it look like more a straight horizontal line with some disturbance in it that we call ripple (the red line in the following picture).

ripple

In general, depending on the use of the power supply, we define a maximum value of the ripple that the circuit can handle.

In our case, we need to make sure that the voltage at the input of the regulators never goes below 14.5V, according to the data sheet, otherwise the regulator will not function properly.

The peak voltage provided by the transformer is its RMS value multiplied by the square root of 2, or:

peak_voltage

The minimum voltage we can have at the input of the regulator is:

regfulator_input_voltage

This is the max value of ripple that we can sustain.

To calculate the capacitor necessary to obtain this ripple, we use the following formula:

capacitance calculation

where f is the frequency of the alternate current which, in the USA, is 60Hz, and Ix is the maximum current that the power supply needs to provide.

So, we would need a capacitance value, for C1 and C2, of 2358uF.

However, the Theremin circuit will really not draw 1.5A from the power supply, so we can stay a little conservative, and use the closest value below the calculated one, which is 2200uF.

At this point we can safely say that the voltage on the output of the regulators will be exactly 12V (positive or negative, depending on the output side).

To further help the regulator, and preventing the current through it to go too close to the 1.5A threshold, where the regulator would not work anymore because the ripple becomes too high, we add to the output of each regulator another electrolytic capacitor, this one with a value at least equal to the capacitance value that we did not put at the input side. Since at the input side we put a capacitance of 2200uF instead of 2358uF, we will need a capacitor of at least 158uF.

However, to stay totally safe, I decided to use a capacitor at least 5 times higher, so I used the value of 1000uF for C3 and C4.

And finally, I added an extra capacitor (C5 and C6) to shunt toward ground any RF frequency that would travel back from the Theremin oscillators toward the power supply. A 0.1uF value is what is suggested by the data sheet of the regulator, so I used just that.

Why did I use this capacitor if there was already a 1000uF in there?

The reason hides in the way the electrolytic capacitors behave. In short, the electrolytic capacitors do not work well at high frequencies, so we need to add the extra 0.1uF capacitor, which is not an electrolytic one, to work in that range of frequencies. And since the range of frequencies is much higher than the one of the 110Vac outlet, a very small capacitance is enough to do the job.

 

Advertisement

DC Electronic Load V.3

Back in August 2018, I presented a DC electronic load on my YouTube channel (V.2). For that, I used an old 2N3055 transistor in a Darlington configuration with 2 more transistors to be able to get enough gain to use it.

100W_el_load_v2

Although declared useful for 100W, I was never able to make it work at those powers due to the limited dissipation capabilities of the power transistor and the heat sink. The max power dissipation I could have from that device was about 20W.

Today, at the anniversary of that presentation, I have created a new version of of the DC electronic load. This new version is based on a MOSFET that can work alone as a load, adjusting the current only through an appropriate voltage on its gate, avoiding the need of having a Darlington circuit with multiple transistors.

The schematic of this new version of the DC electronic load is based on a single MOSFET capable of driving the necessary current, up to 5A and a voltage divider connected to the battery, providing the appropriate voltage to the gate of the MOSFET.

electronic_load-v.3

In order to make it work correctly, the trim-pot RV1 needs to be tuned to obtain a voltage of 1.5V on pin 3 of the potentiometer that regulates the amount of current flowing through the MOSFET, which provides a better use of the multi-turn potentiometer that regulates the actual value of the current.

A combination of digital voltmeter and am-meter, like in the previous version of the DC load, takes care of providing information about the power supply under test.

The device is powered through a 9V battery and it is connected in such a way that the voltage is measured through the yellow wire of the digital voltmeter, wile the current is measured putting the am-meter in series with the MOSFET, with the thick red wire on the source, and the thick black wire toward the negative connector, through a 5A fuse that is used, mostly, to protect the am-meter itself against currents too high of those it can handle.

I made a new case for this new version of the DC load. The main difference is the location of the heat-sink, which is now located on the back panel rather than the top of the device. The new heat-sink is also attached to the back panel through 4 separators, which allow for a better air flow and cooling of the unit when it is used for long period of times.

Here is an OpenSCAD view of the box and the corresponding code to create it.

v3_box_view

$fa=0.5;
$fs=0.5;

//main section
rotate([180, 0, 0]) translate([0, 10, -2])
{
// front panel
difference()
{
cube([150, 80, 2]);
translate([27.5, 40, -1]) cube([45.8, 27.7, 4]);
translate([52, 20, -1]) cylinder(d=6.2, h=4);
translate([120, 60 , -1]) cylinder(d=9, h=4);
translate([108, 20 , -1]) cylinder(d=9, h=4);
translate([132, 20 , -1]) cylinder(d=9, h=4);
translate([3,3,0.5]) linear_extrude(height=2) text(“eleneasy.com – DC load – 25W max.”, size = 6);
translate([36,18,0.5]) linear_extrude(height=2) text(“off”, size=5);
translate([61,18,0.5]) linear_extrude(height=2) text(“on”, size=5);
translate([109,44,0.5]) linear_extrude(height=2) text(“current”, size=5);
}
translate([102.25, 15, 0]) cube([2, 10, 2]);
translate([126.25, 15, 0]) cube([2, 10, 2]);
translate([111.75, 15, 0]) cube([2, 10, 2]);
translate([135.75, 15, 0]) cube([2, 10, 2]);
translate([12, 20, -36]) cube([27, 2, 35]);
translate([39, 4, -36]) cube([2, 18, 35]);

// left panel
translate([0, 0, -60]) cube([2, 80, 60]);

// right panel
translate([148, 0, -60]) cube([2, 80, 60]);

// bottom panel
translate([0, 0, -60]) cube([150, 2, 60]);

// top panel
translate([0, 78, -60])
{
cube([150, 2, 60]);
}

// screws supports
translate([2, 2, -58]) difference()
{
cube([10, 10, 58]);
translate([5, 5, -1]) cylinder(d=2, h=16);
}
translate([138, 2, -58]) difference()
{
cube([10, 10, 58]);
translate([5, 5, -1]) cylinder(d=2, h=16);
}
translate([2, 68, -58]) difference()
{
cube([10, 10, 58]);
translate([5, 5, -1]) cylinder(d=2, h=16);
}
translate([138, 68, -58]) difference()
{
cube([10, 10, 58]);
translate([5, 5, -1]) cylinder(d=2, h=16);
}
}

// back cover
translate([0, 10, 0]) difference()
{
cube([146, 76, 2]);
translate([5, 5, -1]) cylinder(d=4, h=4);
translate([5, 71, -1]) cylinder(d=4, h=4);
translate([141, 5, -1]) cylinder(d=4, h=4);
translate([141, 71, -1]) cylinder(d=4, h=4);
translate([73, 38, -1]) cylinder(d=40, h=4);
translate([126, 60, -1]) cylinder(d=12.5, h=4);
translate([130.5,51,0.5]) rotate([0, 0, 180]) linear_extrude(height=2) text(“5A”, size=5);
translate([(146-55)/2, (76-50)/2, -1]) cylinder(d=4, h=4);
translate([146-(146-55)/2, (76-50)/2, -1]) cylinder(d=4, h=4);
translate([146-(146-55)/2, 76-(76-50)/2, -1]) cylinder(d=4, h=4);
translate([(146-55)/2, 76-(76-50)/2, -1]) cylinder(d=4, h=4);
}

Assembling the circuit is pretty straightforward, and it is done partially in the air and partially  on a perforated board.

We just need to make sure we provide the cables with the right thickness for the current we need to support.

In my case, I used stranded cables with an 18 gauge. These cables are necessary between the thick am-meter cables, the MOSFET source and drain, and the external connectors.

Every other connection can be made with 22 gauge cables.

And finally, the heat-sink should have a resistance of 0.82 Centigrade degrees per watt or less, to prevent the MOSFET from becoming too hot. Note that this will not save the MOSFET in case you draw a current too high. The product between the current and the voltage as provided by the measurements display must never exceed 25W, and the current should never exceed 5A, or the MOSFET will burn.

The tuning is done by measuring the voltage between the terminal 3 of the potentiometer and the ground, with the circuit on, but not connected to any external power supply. The trim-pot has to be adjusted such that the measured voltage equals 1.5V, which is just below the minimum voltage necessary to make the MOSFET conduct current. This way, when turning on the apparatus with the potentiometer all the way to the counter-clockwise position, there will be no current. Then, moving the potentiometer in the clockwise direction, current will start flowing.

Testing of the unit is done attaching it to a power supply that provides different test voltages while we adjust the current with the multi-turn potentiometer on the DC load unit. Just make sure not to exceed 25W of power at any given time. Doing so could damage the MOSFET itself.

I plan to use this DC load in all my future projects that require a power supply of 25W or less, to test the power supply itself. Besides checking that the power supply works fine, you could also check that the ripple of the output voltage does not exceeds your requirements. That can be done connecting the power supply output to an oscilloscope while the DC load draws the current.

And finally, here are a couple of picture of the finished device.

20190816_112540.jpg

20190816_112614

Happy experiments!

 

Conductors, Insulators, and Semiconductors

cpu-3061923_1280

Everybody knows that an electric wire, usually made of copper, is a conductor. And everybody knows that all metals are conductors.

copper-72062_1280

Everybody also knows that plastic is a good electrical insulator, as well as other materials such as glass and rubber.

insulators-3838730_1280

But how about semiconductors? What are they? And how do we really distinguish among conductors, semiconductors and insulators?

To answer all these question we need to look deeper inside the materials.We know that matter is made of atoms, and atoms are made of protons, neutrons and electrons. Protons and neutrons reside at the center of the atom structure, called the nucleus. Electrons are allocated all around the nucleus, at a long distance from it, relatively to the scale of the nucleus itself.

Electrons have a certain amount of energy, that is always an integral value of a certain amount that is called quantum of energy. Depending on the amount of energy they posses, they are locate closer or farther away from the nucleus. The more energy, the farther they are.

Based on quantum mechanics, which we are not going to talk in details in this context, electrons occupy bands of energy. The farther bands in the atom are the so called Valence Band and Conduction Band.

The valence band contains all those electrons that allow the atoms to stick together and forming molecules by bonding with other atoms of the same or a different substance.

water-40708_1280

For certain materials, rather than having molecules, the atoms form what is called a crystalline lattice, which is the case we are more interested in this context. It is worth noting that a new theory, highly based on quantum mechanics, is also distinguishing between actual crystalline lattices and material networks. However, for all the scope and purpose of this context, we will make a simplification and name both of them as crystalline lattices.

lattice(This picture, courtesy of Wikipedia)

In certain conditions, electrons in the valence band can jump to a higher level of energy, thus moving in what is called the conduction band. In the conduction band, electrons are no more stuck to their own atoms, but can start moving freely in the lattice that makes up the material. When that happens, we can control their movement by applying an electric field by the means, for example, of a battery. The voltage of the battery, applied to the two ends of the same block of material (for example a wire), produces the electric field inside the material and forces the electrons to move toward the positive electrode of the battery while, in the mean time, the negative electrode of the battery provides electrons to the material, to replace those that have entered the positive electrode of the battery.

Don’t think that electrons move very fast when they do that. Electrons, in fact, move very slowly, but it is the huge amount of them that help creating a measurable current.

Then you would ask: but when I turn the switch on, the light comes out of a lamp instantly. If the electrons move slowly, shouldn’t a lamp emit light only after a while?

lamp-18869_1280

Well, yes and no. In fact, the lamp does not light up immediately. It takes a certain amount of time to do that. But that time is so small that for us the event happens instantly.

Also, when you turn the switch on, the electrons closest to the positive electrode move into it almost immediately, not because they are fast, but because they are so close to it. At the same time, new electrons are fed to the material from the negative electrode. So, at the end, all the electrons in the wire start moving simultaneously inside of it, causing the current to start flowing immediately.

But I am digressing. Let’s go back to our primary subject.

We have talked about electrons in the valence band and the possibility they have to jump to the conduction band and, thus, helping creating a current if we apply a voltage.

But how much energy do the electrons need to jump to the conduction band?

Here it comes the definition of conductors, semiconductors and insulators.

conductors_semiconductors_insulators

In the materials called conductors, the level of energy that the valence electrons need to jump to the conduction band is basically ‘0’. In fact, valence band and conduction band overlap each other and, therefore, some or all the electrons in the valence band are also, already, in the conduction band. This happens mostly with metals, like copper, iron, aluminum, and so forth. Depending on the particular metal, the conduction and valence bands are more or less overlapped. Those material where there is more overlap are those that conduct electricity better. Those material where there is less overlap, are those that are worst to conduct current, although still conductors.

In the materials called insulators, the gap between the valence band and the conduction band is so high that electrons cannot jump from the valence band to the conduction band, and so they cannot generate an electrical current.
Of course, if we apply a voltage high enough, we can still provide them the energy to make the jump. However, in that case, because of the very high voltage, electrons jump from one band to the other in a disruptive way, causing the material to break. Once that happened, the insulator loose its property and it is no good anymore as such.

Finally, in the materials called semiconductors, the valence band and the conduction band are separated, but close together. It is relatively easy for an electron in the valence band to jump to the conduction band if we only heat a little bit the semiconductor, maybe just with our bare hands. The heat provides enough energy to the electrons to jump to the conduction band. However, not many electrons will do so, unless we keep heating the semiconductor. So, at the end, although capable of conducting some current, semiconductors are not good in doing so. Thus the name of their category.

In this article, we have talked about energy bands in materials, and how materials behave based on the position of the two highest energy band levels.

We have said that conductors are those were valence and conduction bands are partially overlapping.

Conversely, insulators are those that have a high gap in between the valence and the conduction bands.

And finally, semiconductors are those somewhat in between. For them, the valence and conduction bands are separated with a gap, but that gap is small enough to allow, under certain conditions, for the electrons to jump from the valence to the conduction band. That’s why they perform poorly both as conductors and insulators. However, we will see later on how semiconductors can be of great advantage for us, as long as they are treated in a certain way. They are those that allow us to build all the wonders of modern electronics.

%d bloggers like this: