Animating in Mathematica: Quadrupole Trap
As part of my course PHYS0301: Intermediate Electromagnetism, we have been working on some programming assignments in Mathematica, with the goal of exploring some methods for solving complex equations, and displaying results neatly. This has proven to be one of the most rewarding parts of the class for me, as I have loved the opportunity to turn the equations into something visible. Most recently, our final programming assignment of the semester offered the opportunity to display Earnshaw’s Theorem, and to connect the course material to our Professor’s research.
Earnshaw’s Theorem states that it is impossible to have electrostatic minima in 3 dimensions. This, inconveniently, means that it is not possible to stably confine a charged particle to a specific location using only static charges.
The above images show the field of an electric potential in three dimensions. First, looking down on the x-y plane, it is possible to see a region into which a particle could be confined; since deviating in any direction would result it in being pushed back towards the origin. Unfortunately, that does not hold for the z-axis, visible in the second image. Now, if a particle is offset in z any amount, it will be forced away from the origin, making this an unstable “trap.”
6 point charge trap design. Notice the potential decreases along the y, and x axes. Our trap is defeated.
The simple attempt to rectify this would be additional charges in the z-direction, to push the particle back towards the origin if it attempts to escape this way. Earnshaw’s Theorem suggests that this will not work, and our 3D plot shows this. Once the z-charges are of great enough magnitude to create a minimum along the z-axis, the trap on the z-y plane is defeated, and there is still no stable equilibrium.
So how do we fix this? A static field is unable to trap a particle. The answer is a quadrupole!
Quadrupole Potential 3D Plot
Except this doesn’t look like it should be able to trap a particle. What if it is offset slightly towards the x-axis? It will just fall into the negative charge’s potential well. By varying the polarity of these charges, the ponderomotive force will keep the particle trapped. When the positives and negatives switch, for any deviation towards one of the wells, the field will switch such that now it would be moving up one of the peaks, and so it moves back towards the center. Switching the field rapidly enough, at the correct frequency, will result in a net force towards the origin, trapping the particle.
A bit unintuitive? I find this easier to see when the changing of the field is actually visible. The instructions for the assignment say not to worry about time dependence, but I think it adds a lot to the visualization. For this purpose, I got to learn how to use the Mathematica “Animate[]” function.
The module itself is actually quite straightforward, so borrowing from my knowledge of the Manipulate[] function, I only needed to make a nice function to switch the polarity, and adjust some parameters to make the display neat.
A Fourier Transform used to approximate a square wave driving source.
I chose to use a square wave to change the polarity of the quadrupole. This would, I think, result in a more effective time averaged force, since the greatest-magnitude restoring force presents for the longest (due to the 50% duty cycle). This is easy to produce using a Fourier transform. From here, it is a matter of scaling the charge of each particle by this driving square wave, allowing them to oscillate.
Square oscillating quadrupole trap.
For the sake of a nice visualization, I also rendered one with a driving sine wave:
Sine-oscillating quadrupole trap.
In my opinion, this is the most clear visualization. Imagine, if you will, that this is a real curved surface, and the particle is a ball at the center. Even if, for a moment, it begins to roll towards a well, the changing field will shortly push it back towards the origin. If, now that the sign has switched, the ball tries to roll down towards one of the new wells, that one will shortly thereafter push it back towards the origin. Even if, at a given moment, the particle is not stably confined, any escape path will, after a moment, switch such that it forces the particle back towards the origin. The specifics of why the restoring force, averaged over time, is more substantial than any force away from equilibrium, lies in some vector calculus. An explanation of this is available on the wikipedia article linked above.
We have successfully trapped a particle!