132
$\begingroup$

I was soldering a very thin wire today, and when I had one end firmly soldered, I accidentally bumped the wire diagonally with my tweezers. What I'd expect to happen is that the wire oscillates for a little while in one axis, then stops. However, what actually occurred is quite different and much more interesting! I recorded it in real-time; https://youtu.be/O5nFNly7L7s (sorry for the poor macro focus), and recorded it again at 480FPS and imported it into Tracker video analysis; https://youtu.be/9jhDsypkqKQ.

As you can see, the rotational motion fully reverses!

Here are some still frames from Tracker:

The wire begins to rotate clockwise after being excited:

enter image description here

The wire begins to oscillate in one axis:

enter image description here

And, mindbogglingly, begins to rotate counterclockwise!

enter image description here

(clearer views in the videos above)

The X and Y axis motion plotted by tracker raises even more questions:

enter image description here

As you can see, the X axis motion simply stops, then restarts!

What's going on?

My first thought was that (because this wire wasn't originally straight) there was some sort of unusual standing wave set up, but this occurs even with a completely straight wire.

I'm absolutely sure there's something about two-axis simple harmonic motion that I'm missing, but I just cannot think of what is causing this. I've seen many other "home-experiment" questions on this site, so I thought this would an acceptable question; I hope it's not breaking any rules.

EDIT:

Okay, I've got some more data! I've set up a little solenoid plunger system that produces no torque or two-axis motion, and it's very repeatable. Here: https://youtu.be/ZAni6VMOVD8

What I've noticed is that I can get almost any wire (even with a 90-degree bend!) to exhibit single-axis motion with this setup, with no spinning or deviation; and if I try enough, the same thing can happen with the tweezers. It seems like if I slide the tweezers slightly when exciting the wire, I can reliably produce this odd motion. I don't know what that indicates.

EDIT2:

Okay, seems like with the plunger-solenoid I still can get this circular motion even with a straight wire.

EDIT3:

Okay, so I wanted to test @sammy's suggestion once and for all. I assume that changing the moment of inertia to torsion of the wire would affect his theory, so I soldered a small piece of wire perpendicularly to the end of the main wire:

enter image description here

Then I recorded the motion; enter image description here

And then I took off the perpendicular wire, and re-recorded the data: enter image description here And then I did it again (got noisy data first time): enter image description here

EDIT N: The final test!

Floris's hypothesis requires that the resonant frequency of a wire in each cardinal direction be different. To measure this, I used my solenoid setup that did not cause rotation, as above. I put a straight piece of wire between a light source and a light-dependent resistor and connected it to an oscilloscope;

enter image description here

The signal was very faint (42 millivolts), but my scope was able to pull it out of the noise. I have determined this:

In the +x direction, the resonant frequency of a just-straightened straight sample wire (unknown cycle frequency) is 51.81hz,+/-1hz;

enter image description here

In the +y direction, the resonant frequency of a sample wire is 60.60hz,+/-1hz;

enter image description here

So there's definitely a significant difference (~10 percent!) between the cardinal directions. Good enough proof for me.

EDIT N+1:

Actually, since my light detector above produces two pulses per sine wave, the actual vibration frequency is f/2; so the actual frequencies are 25.5 hz, and 30hz, which agrees roughly with @floris's data.

$\endgroup$
11
  • $\begingroup$ What are your t units? $\endgroup$
    – user122066
    Commented Jul 9, 2016 at 21:27
  • 1
    $\begingroup$ @user122066 Undefined. I didn't set the framerate in tracker properly. I'll regenerate that plot. $\endgroup$
    – 0xDBFB7
    Commented Jul 9, 2016 at 21:32
  • 10
    $\begingroup$ I know it's already been said, but this is a really good question: an interesting experimental observation where someone has done the work to actually measure a bunch of stuff. And it's not the endless repetition of some variation of the wretched twin paradox. Thank you. $\endgroup$
    – user107153
    Commented Jul 10, 2016 at 1:31
  • 5
    $\begingroup$ @tfb why thank you! This was fun, thanks everyone for the great hypotheses. Also I now have to explain to my dad why I spent my afternoon videotaping wire. $\endgroup$
    – 0xDBFB7
    Commented Jul 10, 2016 at 1:37
  • 18
    $\begingroup$ If your dad complains, send him to me. You have some important qualities: a keen eye, an enquiries mind, a willingness to do careful experiments, record your results, and subject them to peer review - and you are spending your Saturday soldering wires instead of playing video games. You have the ingredients to become quite the scientist. Or engineer. Props! $\endgroup$
    – Floris
    Commented Jul 10, 2016 at 2:35

3 Answers 3

85
$\begingroup$

Your wire is not quite round (almost no wire is), and consequently it has a different vibration frequency along its principal axes1.

You are exciting a mixture of the two modes of oscillation by displacing the wire along an axis that is not aligned with either of the principal axes. The subsequent motion, when analyzed along the axis of initial excitation, is exactly what you are showing.

The first signal you show - which seems to "die" then come back to life, is exactly what you expect to see when you have two oscillations of slightly different frequency superposed; in fact, from the time to the first minimum we can estimate the approximate difference in frequency: it takes 19 oscillations to reach a minimum, and since the two waves started out in phase, that means they will be in phase again after about 38 oscillations, for a 2.5% difference in frequency.

Update

Here is the output of my little simulation. It took me a bit of time to tweak things, but with frequencies of 27 Hz and 27.7 Hz respectively and after adjusting the angle of excitation a little bit, and adding significant damping I was able to generate the following plots:

enter image description here

which looks a lot like the output of your tracker.

Your wire is describing a Lissajous figure. Very cool experiment - well done capturing so much detail! Here is an animation that I made, using a frequency difference of 0.5 Hz and a small amount of damping, and that shows how the rotation changes from clockwise to counterclockwise: enter image description here

For your reference, here is the Python code I used to generate the first pair of curves. Not the prettiest code... I scale things twice. You can probably figure out how to reduce the number of variables needed to generate the same curve - in the end it's a linear superposition of two oscillations, observed at a certain angle to their principal axes.

import numpy as np
import matplotlib.pyplot as plt
from math import pi, sin, cos

f1 = 27.7
f2 = 27
theta = 25*pi/180.

# different amplitudes of excitation
A1 = 2.0
A2 = 1.0

t = np.linspace(0,1,400)

#damping factor
k = 1.6

# raw oscillation along principal axes:
a1 = A1*np.cos(2*pi*f1*t)*np.exp(-k*t)
a2 = A2*np.cos(2*pi*f2*t)*np.exp(-k*t)

# rotate the axes of detection
y1 = cos(theta)*a1 - sin(theta)*a2
y2 = sin(theta)*a1 + cos(theta)*a2

plt.figure()
plt.subplot(2,1,1)
plt.plot(t,-20*y2) # needed additional scale factor
plt.xlabel('t')
plt.ylabel('x')

plt.subplot(2,1,2)
plt.plot(t,-50*y1) # and a second scale factor
plt.xlabel('t')
plt.ylabel('y')
plt.show()

1. The frequency of a rigid beam is proportional to $\sqrt{\frac{EI}{A\rho}}$, where $E$ is Young's modulus, $I$ is the second moment of area, $A$ is the cross sectional area and $\rho$ is the density (see section 4.2 of "The vibration of continuous structures"). For an elliptical cross section with semimajor axis $a$ and $b$, the second moment of area is proportional to $a^3 b$ (for vibration along axis $a$). The ratio of resonant frequencies along the two directions will be $\sqrt{\frac{a^3b}{ab^3}} = \frac{a}{b}$. From this it follows that a 30 gage wire (0.254 mm) with a 2.5% difference in resonant frequency needs the perpendicular measurements of diameter to be different by just 6 µm to give the effect you observed. Given the cost of a thickness gage with 1 µm resolution, this is really a very (cost) effective way to determine whether a wire is truly round.

$\endgroup$
7
  • 1
    $\begingroup$ Even if the wire was perfectly round, it is not held perfectly rigidly in the tweezers. Most likely, the frequency when vibrating parallel to the blades of the tweezers will be slightly lower than the frequency perpendicular to the blades, because it is clamped more firmly in one plane than in the other. This also happens in musical instruments like guitars (though it is ignored in elementary physics courses on sound and vibration). A guitar string has two modes of vibration, perpendicular and parallel to the guitar body, which decay at different rates and have slightly different pitches. $\endgroup$
    – alephzero
    Commented Jul 10, 2016 at 0:18
  • 1
    $\begingroup$ @alephzero Note that I'm not actually holding the wire in tweezers. The wire is held with a very strong alligator spring connector that I squish the wire into. $\endgroup$
    – 0xDBFB7
    Commented Jul 10, 2016 at 0:21
  • 1
    $\begingroup$ It doesn't matter so much what the mechanism is - if there are two slightly different frequencies for the two axes, that's enough. Strongly clamping may slightly deform the wire. $\endgroup$
    – Floris
    Commented Jul 10, 2016 at 0:25
  • 1
    $\begingroup$ @alephzero - I had not thought about the modes for a guitar string, but indeed the compliance of the bridge will be different for the parallel and perpendicular mode, and this will result in different frequencies. Thanks! $\endgroup$
    – Floris
    Commented Jul 10, 2016 at 0:26
  • 1
    $\begingroup$ @Floris the damping is also different, because if the string makes the body of the guitar vibrate in the perpendicular mode, it pushes more air around (and makes a louder sound) than when it vibrates in the parallel mode. (Pianos get even more complicated, with three separate strings - not perfectly in tune with each other - giving a total of 6 different vibration modes for one note!) $\endgroup$
    – alephzero
    Commented Jul 10, 2016 at 0:29
13
$\begingroup$

UPDATE :

After looking again at the video, I agree that Floris' explanation seems to be correct and my explanation below is wrong. Slightly different frequencies of vibration in two perpendicular planes accounts more simply for a rotation which reverses one way then the other. Kinetic energy seems to decay constantly; it does not seem to be stored in an invisible torsion mode as it is in the Wilberforce Pendulum. Since the wire is thin with low moment of inertia, very little energy could be stored in this mode anyway. I jumped on an attractive hypothesis which I had come upon recently, without testing it as Floris did his.

I am not deleting my answer although it is wrong, because Giskard42 and others make reference to it.

ORIGINAL ANSWER :

What you cannot see in the video is the torsional (twisting) motion of the wire. This is coupled to the rotations which you can see. Energy can transfer from one mode of oscillation to the other - one dying out as the other reaches maximum amplitude - as happens in the Wilberforce Pendulum.

https://www.youtube.com/watch?v=S42lLTlnfZc

As you can see in the Wilberforce Pendulum video, the torsional oscillations do not necessarily have the same frequency as the lateral/rotational oscillations. [Not true actually : in the video the two frequencies seem to be exactly the same.] In this case the torsional frequency is probably much higher than the rotational frequency.

You may also notice that the rotational motion of the wire does not die out completely before reversing. I think this is because the rotational mode is actually the sum of two perpendicular planar oscillations of the same frequency but different amplitude - the X and Y oscillations which you have plotted. Energy is transferred between the 3 modes. I suspect that in general only one mode dies out at one time, unless (perhaps) one mode is a harmonic of another (as here) and they are in phase (not here).

$\endgroup$
10
  • $\begingroup$ That is exactly the behavior I'm seeing! That's amazing! $\endgroup$
    – 0xDBFB7
    Commented Jul 9, 2016 at 21:33
  • $\begingroup$ I think you are right... it's amazing that the torsional mode is excited at this aspect and frequency ratio, but it does seem to be enough to do the trick. $\endgroup$
    – CuriousOne
    Commented Jul 9, 2016 at 21:45
  • $\begingroup$ @CuriousOne It does seem really odd that even such a thin wire mounted securely would have a torsion mode, but now it's time to use the second part of science; theory prediction! $\endgroup$
    – 0xDBFB7
    Commented Jul 9, 2016 at 21:49
  • 1
    $\begingroup$ I put a small piece of paper at the end of the wire, just to see if I could see any torsion: youtu.be/wfShGAdUj1I It's too low amplitude to see, probably. $\endgroup$
    – 0xDBFB7
    Commented Jul 9, 2016 at 23:30
  • 6
    $\begingroup$ +1 Even in light of the other answer for two reasons: A) Someone else may read this question and answer and be curious about a slightly different situation for which this answer applies and B) So much class in coming up with a reasonable answer but then conceding the facts when more information and confirmation came in. This question and answers is Stack Exchange at its best. $\endgroup$ Commented Jul 11, 2016 at 18:38
4
$\begingroup$

I just add to above points which are mostly correct my two pennies.
1- the wire is loaded with a history of residue strains from the manufacturing and handling so the stiffness and elasticity of it is not homogenous lengthwise or even along cross-section. if you'd write the whiplash DE's in a finite element software it is not a linear differential equation and mass participation is not equal, there fore many modes of vibration in real 3d space are super-imposed.
2- some of the modes decay into lower and frequencies and excite a vibration that includes a larger mass and could significantly change the overall shape of wave envelope. The vibration takes a life of it's own and it's not going to be a closed form solution. just imagine the change in the air reaction to it will act as a separate media.

$\endgroup$

Not the answer you're looking for? Browse other questions tagged or ask your own question.