Wrangling High Voltage

Working with high voltage is like working with high pressure plumbing. You can spring a leak in your plumbing, and of course you fix it. And now that you’ve fixed that leak, you’re able to increase the pressure still more, and sometimes another leak occurs. I’ve had these same experiences but with high voltage wiring. At a high enough voltage, around 30kV or higher, the leak manifests itself as a hissing sound and a corona that appears as a bluish glow of excited ions spraying from the leak. Try to dial up the voltage and the hiss turns into a shriek.

Why do leaks occur in high voltage? I’ve found that the best way to visualize the reason is by visualizing electric fields. Electric fields exist between positive and negative charges and can be pictured as electric field lines (illustrated below on the left.) The denser the electric field lines, the stronger the electric field.

The stronger electric fields are where ionization of the air occurs. As illustrated in the “collision” example on the right above, ionization can happen by a negatively charged electron leaving the electrically conductive surface, which can be a wire or a part of the device, and colliding with a nearby neutral atom turning it into an ion. The collision can result in the electron attaching to the atom, turning the atom into a negatively charged ion, or the collision can knock another electron from the atom, turning the atom into a positively charged ion. In the “stripping off” example illustrated above, the strong electric field can affect things more directly by stripping an electron from the neutral atom, again turning it into a positive ion. And there are other effects as well such as electron avalanches and the photoelectric effect.

In either case, we wanted to keep those electrons in the electrically conductive wires or other surfaces and their loss constitutes a leak in a very real way.

Continue reading “Wrangling High Voltage”

High Voltage Please, But Don’t Forget The Current

In high voltage applications involving tens of thousands of volts, too often people think about the high voltage needed but don’t consider the current. This is especially so when part of the circuit that the charge travels through is an air gap, and the charge is in the form of ions. That’s a far cry from electrons flowing in copper wire or moving through resistors.

Consider the lifter. The lifter is a fun, lightweight flying machine. It consists of a thin wire and an aluminum foil skirt separated by an air gap. Apply 25kV volts across that air gap and it lifts into the air.

So you’d think that the small handheld Van de Graaff generator pictured below, that’s capable of 80kV, could power the lifter. However, like many high voltage applications, the lifter works by ionizing air, in this case ionizing air surrounding the thin wire resulting in a bluish corona. That sets off a chain of events that produces a downward flowing jet of air, commonly called ion wind, lifting the lifter upward.

Continue reading “High Voltage Please, But Don’t Forget The Current”

Arc from a flyback transformer power supply

A Cornucopia Of High Voltage Sources

Having hacked away with high voltage for many years I’ve ended up using a large number of very different high voltage sources. I say sources and not power supplies because I’ve even powered a corona motor by rubbing a PVC pipe with a cotton cloth, making use of the triboelectric effect. But while the voltage from that is high, the current is too low for producing the necessary ion wind to make a lifter fly up off a tabletop. For that I use a flyback transformer and Cockcroft-Walton voltage multiplier power supply that’s plugged into a wall socket.

So yes, I have an unorthodox skillset when it comes to sourcing high voltage. It’s time I sat down and listed most of the power sources I’ve used over the years, including a bit about how they work, what their output is like and what they can be used for, as well as some idea of cost or ease of making. The order is from least powerful to most powerful so keep reading for the ones that really bite.

Triboelectric Effect

Triboelectric series table
Triboelectric series table

You’ve no doubt encountered this effect. It’s how your body is charged when you rub your feet on carpet and then get a shock from touching a door knob. When you rub two specific materials together there’s a transfer of electrons from one to the other. Not just any two materials will work. To find out which materials are good to use, have a look at a triboelectric series table.

Materials that are on the positive end of the table will become positively charged when rubbed against materials on the negative end of the table. Those materials will become negatively charged. The further apart they are in the table, the stronger the charging.

Powering corona motor with triboelectricity
Powering corona motor with triboelectricity

An example of where I’ve used this is to power the corona motor shown here. I vigorously rub a PVC pipe with a cotton cloth, and as the pipe emerges from the cloth, a sharp wire a few millimeters away takes the charge from the pipe. You can see this corona motor being powered by other power sources in the video here.

This would be considered an electrostatic power source because charge is accumulated on surfaces. Being insulating materials, that charge can’t move around.

Continue reading “A Cornucopia Of High Voltage Sources”

Symmetry For Beginners – The Rubik’s Cube

Symmetry is everywhere in our natural world. Just take a look at your hands, a butterfly, or a sunflower.  It’s easy to pass off the idea of symmetry and symmetric structures as a simple quirk of existence, and to pay it little mind. If this is your view, I can assure you it will no longer be by the end of this series. If we force ourselves to look beyond the grade school applications of symmetry, we find a world rich in connections via many different types of symmetric identities. One of the most interesting is Gauge Symmetry, which lies at the heart of Quantum Electrodynamics, or QED (we’ll get into this a bit later in the series). Several branches of higher level mathematics study symmetry in detail, allowing a host of sciences, from physics to chemistry,  to view difficult problems and theories from a different perspective.

The subject matter of the ideas explored in symmetry is complicated, and not well known outside of academia and the theoretical sciences. It is the goal of this series of articles to simplify some of the concepts that underpin the study of symmetry, so that the average hacker can gain a basic (and I mean basic) understanding of this fascinating body of knowledge, and put it to use in future projects.  We’ll start things off by taking a look at a machine that has crossed the Hackaday server many times – those nifty Rubik’s Cube solvers. Just how do those things work anyway?

Continue reading “Symmetry For Beginners – The Rubik’s Cube”

Hackaday Dictionary: Lithium Ion Batteries

Battery technology is a constant chemical war between the laws of physics and the desire of engineers to make devices smaller. On one side, the laws of physics declare that there are limits to how much energy you can store inside a battery, and on the other side are the engineers looking for ways to sneak around these laws. For many devices, the best compromise between these two sides is the lithium ion battery, usually abbreviated to Li-ion.

Continue reading “Hackaday Dictionary: Lithium Ion Batteries”

Flying With Proportional – Integral – Derivative Control

Your quad-copter is hovering nicely 100 feet north of you, its camera pointed exactly on target. The hover is doing so well all the RC transmitter controls are in the neutral position. The wind picks up a bit and now the ‘copter is 110 feet north. You adjust its position with your control stick but as you do the wind dies and you overshoot the correction. Another gust pushed it away from target in more than one direction as frustration passes your lips: ARGGGHH!! You promise yourself to get a new flight computer with position hold capability.

How do multicopters with smart controllers hold their position? They use a technique called Proportional – Integral – Derivative (PID) control. It’s a concept found in control systems of just about everything imaginable. To use PID your copter needs sensors that measure the current position and movement.

The typical sensors used for position control are a GPS receiver and an Inertial Management  Measurement Unit (IMU) made up of an accelerometer, a gyroscope, and possibly a magnetometer (compass). Altitude control would require a barometer or some other means of measuring height above ground. Using sensor fusion techniques to combine the raw data, a computer can determine the position, movement, and altitude of the multicopter. But calculating corrections that will be just right, without over or undershooting the goal, is where PID comes into play. Continue reading “Flying With Proportional – Integral – Derivative Control”

The Art And Science Of Bending Sheet Metal

A motor mount. A sturdy enclosure. A 43.7° bracket. The average hack requires at least one angled metal part, and the best tool to make one is still the good ol’ press brake. Bending parts requires a few extra thoughts in the design and layout of the flat patterns, so if you want to know about bend allowances, bend deduction and how to bend accurate parts even without a press, read on.

Continue reading “The Art And Science Of Bending Sheet Metal”