Magnetic Pendulum

A chaotic situation arises in the experiment of swinging a magnetic pendulum over a plane containing two or more attractive magnets: which magnet the pendulum ultimately rests over is highly dependent on the starting position and velocity of the pendulum, so that small variations in initial conditions lead to different results.

The situation with three magnets can be modeled with the following pair of differential equations:

x''[t] + R x'[t] - Sum[(xi - x[t])/Sqrt[(xi - x[t])^2 + (yi - y[t])^2 + d^2]^3, {i, 3}] + C x[t] = 0
y''[t] + R y'[t] - Sum[(yi - y[t])/Sqrt[(xi - x[t])^2 + (yi - y[t])^2 + d^2]^3, {i, 3}] + C y[t] = 0

where the xi and yi are the coordinates of the positions of the three magnets; x(t) and y(t) are the positions of the pendulum at time t; d is the distance between the pendulum and the plane containing the magnets; and R and C are friction and spring (self-restoring force) parameters.

The situation can be modeled easily in Mathematica using NDSolve (so I won’t type in the code); in each of the following graphs, the pendulum is given a slightly different starting position (with identical initial velocity, etc.), and in each picture the pendulum ends up over a different magnet.

x(0) = -0.95, y(0) = 0.09:

[ pendulum rests over magnet 1 ]

x(0) = -0.95, y(0) = 0.095:

[ pendulum rests over magnet 2 ]

x(0) = -0.95, y(0) = 0.1:

[ pendulum rests over magnet 3 ]

(Sorry about the repulsive coloring scheme; I don’t know what I was thinking. The red dots represent the three magnets, and the yellow squiggle is the path of the pendulum. If such things interest you, I arbitrarily chose R = 0.2, C = 0.5, d = 0.25, and x′(0) = y′(0) = 0. It might even interest you to know that the basins of attraction formed by the magnetic-pendulum model are very similar in character to the basins of attraction formed by using Newton’s method to find complex roots to an equation.)

Equations pinched from Peitgen et al, Chaos and Fractals, Springer-Verlag, 1992.

© 1997–2024 by Robert Dickau

[ home ] || [ 97???? ]

www.robertdickau.com/magneticpendulum.html