8
$\begingroup$

In introductory physics courses one often discusses standing waves on a string with two fixed ends. A standard experimental demonstration of this is given here.

My problem is that in such a demonstration one end is moved up and down by a motor, though it is considered as a fixed end. How resolve this apparent contradiction?

Sometimes textbooks also discuss the case of one fixed and one open ends or two open ones. In the analogous case of sound and a pipe this makes sense, but is there a way to show those cases for the case of wave on a string (or long spring) similar to the demo linked above?

$\endgroup$
6
  • $\begingroup$ the string is full of internal friction and also air friction .... the motor is just giving enough energy to get things going and then keep it going. $\endgroup$ Commented Nov 12 at 21:39
  • $\begingroup$ This video of the Bell Wave Machine may be of interest. $\endgroup$ Commented Nov 12 at 21:55
  • $\begingroup$ You need to accurately define your problem from a mathematical pov, namely the boundary conditions. From your question, you'd have prescribed displacement at both ends (u(x=0,t) = 0, u(x=b,t) = v(t) prescribed by the motor), and your problem is a force (harmonically forced? depending on the prescribed motion of the end at b), whose solution may have simple closed form only for some particular forcing v(t). By the linearity of the problem, you can write the solution of your problem as a linear combination of 1) a set of functions (usually what we call modes, or standing waves), solution of the $\endgroup$ Commented Nov 13 at 13:45
  • $\begingroup$ homogenoeus (non-forced) problem, and 2) a particular solution to represents the effects of forcing in a acceptable way, avoiding Gibbs oscillations that would appear if you only rely on the standing waves only. Dealing with elastic systems, you should think of an elastic system as a "system of masses and springs", with a number of resonances equal to the n. of its dofs. When forced harmonically (but not only, almost everything could be written as a sum of harmonics), the response of the system depends on the forcing frequency, and usually you see the mode that is closest to its resonance $\endgroup$ Commented Nov 13 at 13:49
  • $\begingroup$ If you approximately understood what I wrote in my comments, I'll provide an answer this evening (Europe time), if no satisfying answer will be provided yet $\endgroup$ Commented Nov 13 at 13:51

5 Answers 5

6
$\begingroup$

The motion generator is approximately a node. If you measured the frequencies of the harmonics well, you would see that it is not quite linear. (It's not linear for other reasons, such as the finite width of the string).

You would also see that there is finite bandwidth to generate a non-zero transient oscillation.

$\endgroup$
5
$\begingroup$

All these are intended as accessible/easy explanations of a more general feature that a partial differential equation alone (such as a a wave equation) does not constitute a well-posed problem, but needs to be supplemented by the initial and boundary conditions.

In precise terms, we start with an equation $$ \frac{\partial u(x,t)}{\partial t^2}=v^2\frac{\partial u(x,t)}{\partial x^2}, $$ and supplement it by boundary conditions, like

Clamped ends: $$u(0,t)=0,u(L,t)=0$$ In this case the two ends do not move. For an unambiguous solution this would have to be supported by an initial condition, like the form of the wave/field at the beginning of observation: $u(x,0)=u_0(x)$.

A free end corresponds to an absence of any condition at this end, which might require that another condition is present, for the problem to be well-posed - e.g., more conditions at the fixed end: $$u(0,t)=0, \frac{\partial u(x,t)}{\partial x}|_{x=0}=0$$

Now, we may also have conditions with other values than zeros, e.g., $$u(L,t)=1$$ or $$u(L,t)=a\cos\omega t$$ this latter corresponds to a wave driven by a motor or another external force (depending on the nature of the wave.)

While these conditions are unambiguous when formulated in mathematical terms, there is no well-established terminology to describe them in hand-waving way, which is why the books may differ on how they call various situations.

$\endgroup$
5
$\begingroup$

It is indeed not a fixed string, but it looks like one from a distance.

Here I modelled a string driven by a motor excited at resonance frequency using Mathematica:

animation of string driven from the left

If you play close attention, you might notice that the string is driven from the left. The left is driven with an amplitude of 1. So even though there is significant damping, the maximum amplitude is an order of magnitude higher than the driver amplitude. Because the amplitude is so much higher, it's as if the left is fixed when you squint a little bit.

Also, notice that at maximum amplitude, the amplitude of the driver is zero. So at this instant, it looks like a string with fixed ends. To expand on this, consider the resonance conditions. For a normal fixed string, the standing waves obey $$n\lambda_n /2=L,$$ where $n$ is an integer, $\lambda_n$ is the wavelength of the standing wave and $L$ is the length of the string. We also have $f\lambda=v$, so at resonance we have $$f_n=n\frac{v}{2L}.$$ Now I drive the string with a motor at frequency $f_1=\frac{v}{2L}$. Imagine I turn on the motor suddenly. This will generate a wave that will reflect and come back to the motor. How does the phase of the motor at the moment of generation relate to the phase of the motor that the reflected wave encounters? The round trip travel time is $$T_{rt}=\frac{2L}{v}.$$ The period of the motor is $$T_{m}=\frac{1}{f_1}=\frac{2L}{v}.$$ This means that during the time it took for the wave to travel around the string, the motor will have gone through exactly one period. Consequently, the phase of this old wave matches that of the newly generated wave: we have constructive interference. This whole story is to show that the resonance condition for a driven string is now identical to that of a fixed string!

To show that the resonance condition is identical, here I plot the amplitude of the steady state solution vs the frequency. The fixed string frequency is subtracted, so if it the peak is centered around zero, the resonance of the driven string occurs at the same frequency as that of the fixed string.

Plot of amplitude vs detuning. Shows peak at expected resonance

Mathematica code for animation:

T = 100; L = 1; damping = 0.2; (*Define the 1D wave equation*) pde = D[u[x, t], {t, 2}] == D[u[x, t], {x, 2}] - damping D[u[x, t], {t, 1}]; (*Define initial and boundary conditions*) ic = {u[x, 0] == 0, Derivative[0, 1][u][x, 0] == 0}; fres[n_, v_, L_] := (n v)/(2 L); (*Resonant frequency *) bc = {u[0, t] == Sin[2 \[Pi] (fres[3, 1, L]) t], u[1, t] == 0}; (*Solve the equation*) sol = NDSolveValue[{pde, ic, bc}, u, {x, 0, L}, {t, 0, T}]; anim = Table[ Plot[sol[x, t], {x, 0, L}, PlotRange -> 12, AxesLabel -> {x, amplitude}], {t, T - 1/fres[3, 1, L], T, .01}]; ListAnimate[anim] 
$\endgroup$
1
  • $\begingroup$ I think it would be even clearer if the driving force is not a sinusoidal of resonant frequency, but rather e.g. pink noise with intermittent pulses. $\endgroup$ Commented Nov 13 at 16:00
2
$\begingroup$

The linked experiment with the vibrating end uses a continuous excitation with a chosen frequency so that you get a standing wave only when the excitation frequency corresponds to the frequency of a standing wave with fixed boundary conditions, i.e., when resonance occurs. This corresponds to a solution of the wave equation on the string which consists of the sum of the solutions with homogeneous boundary conditions (fixed ends) with the solution of the inhomogeneous boundary problem (one end oscillating). Resonances occur when the excitation frequency on one end corresponds to the standing wave frequencies of the fixed end problem. Thus there is no contradiction here.

The case of an open end string like sound in a tube can probably not be realized, because the string needs a support at its ends.

$\endgroup$
1
  • $\begingroup$ Open end on a string: mount a rod horizontally, put a hoop around it, tie string to hoop. Apply driving oscillations at opposite end horizontally. Just how free this is depends on applied tension and friction. $\endgroup$ Commented Nov 14 at 19:07
2
$\begingroup$

This answer try to address your doubts solving the differential problem of the transverse motion $w(x,t)$ of the points of a string with uniform linear mass density $m$, uniform axial pre-stress $N_0$, with length $\ell$, with one extreme point at rest, $w(x=0,t) = 0$, and the other extreme point with prescribed motion, $w(x=\ell,t) = u(t)$. This section is organized as follow: 1) differential problem is set up; 2) normal modes - or standing waves - are introduced as (a basis for) all the possible solutions of the unforced problem, i.e. free motion of the string is a linear combination of normal modes; 3) the differential problem is solved here exploiting a common technique used in mechanical engineering, named static mode recovery, mode acceleration, or acceleration of modes that consists in splitting the general solution as a sum of a static (or fast) and a dynamic (or slow) part; modes are used as a basis for the dynamic part of the solution, and their orthogonality allows to get a closed-form of the solution, particularly simple in some special case of initial and boundary conditions 4) eventually, the solution of the problem is discussed.

Differential problem

The differential problem governing the problem is made of the momentum balance equation, 2 boundary conditions at the extreme points (here, essential or Dirichlet boundary conditions), 2 initial conditions (Cauchy problem),

$$\begin{cases} m \partial_{tt} w - N_0 \partial_{xx} w = f \ , \qquad x \in [0, \ell], \ t \ge 0 \\ w(0,t) = 0 \\ w(\ell,t) = u(t) \\ w(x,0) = w_0(x) \\ \partial_t w(x,0) = v_0(x) \ . \end{cases}$$

Modes - Standing waves

Standing waves are usually defined as the simple harmonic solutions with homogeneous boundary conditions and no volume force, i.e. no external forces acting on the system. With this definition, standing waves for the problem of interest are the solutions of the problem

$$\begin{cases} m \partial_{tt} w - N_0 \partial_{xx} w = 0 \ , \qquad x \in [0, \ell], \ t \ge 0 \\ w(0,t) = 0 \\ w(\ell,t) = 0 \ , \end{cases}$$

having neglected here the initial conditions that will be recovered later. This problem can be solved with the method of separation of variables, $w(x,t) = n(x) g(t)$. It's easy to prove that an infinite number of standing waves $w_i(x) = \sin \left( k_i x \right)$ exists, with $k_i = \frac{i \pi}{\ell}$, $i \in \mathbb{N}$.

Solution of the problem: fast + slow parts

As the standing waves are solutions of the differential problem with homogeneous boundary conditions, they can't exactly solve a problem with a non-homogeneous boundary condition, like the b.c. $w(\ell,t) = u(t)$. If we try to write a solution that's only a linear combination of modes,

$$\widetilde{w}(x,t) = \sum_i \widetilde{a}_i(t) n_i(x,t) = \sum_i \widetilde{a}_i(t) \sin \left( \frac{i \pi x}{\ell} \right) \ ,$$

it's easy to prove that $\widetilde{w}(\ell,t) = 0$, for any value of $\widetilde{a}_i(t)$. If you're a bit familiar with Fourier series, you may expect that some Gibbs' oscillations occur, and that's what happens even if you're not familiar with them:).

A common approach used in mechanical engineering is to exploit the linearity of the problem and principle of superposition to write the solution as a sum of a fast part and a slow part, $w(x,t) = w_f(x,t) + w_s(x,t)$. The fast part is defined as the solution of the problem

$$\begin{cases} -N \partial_{xx} w_f = 0 \\ w_f(0,t) = 0 \\ w_f(\ell,t) = u(t) \ , \end{cases}$$

i.e. $w_f(x,t) = \frac{x}{\ell} u(t)$. The fast part is thus the solution of the differential problem

$$\begin{cases} m \partial_{tt} w_s - N \partial_{xx} w_s = - m \partial_{tt} w_f + N\partial_{xx} w_f = - m \dfrac{x}{\ell} \ddot{u}(t) \\ w_s(0,t) = 0 \\ w_s(\ell,t) = 0 \end{cases}$$

Now the slow part is the solution of a differential problem with homogeneous boundary conditions, so there's hope (and it's a good idea indeed, if we want an analytical solution of the problem) in using the modes as basis for the slow part of the solution only,

$$w_s(x,t) = \sum_{i=1}^{+\infty} a_i(t) \sin(k_i x) \ . $$

Introducing this expression in the differential equation, and exploiting the orthogonality of modes,

$$\int_{x=0}^{\ell} \sin(k_i x) \sin(k_j x) \, dx = \delta_{ij} \dfrac{\ell}{2} \ ,$$

the PDE reduces to a set of infinite number of ODEs for the coefficients $a_i(t)$ of the expansion of the slow part of the solution,

$$\dfrac{\ell}{2} m \ddot{a}_i(t) + \dfrac{\ell}{2} N k_i^2 a_i(t) = \int_{x=0}^{\ell} - m \dfrac{x}{\ell} \sin(k_i x) \, dx \, \ddot{u}(t) = (-1)^i \dfrac{m}{k_i} \ddot{u}(t) \ , $$

or

$$\ddot{a}_i(t) + \dfrac{N}{m} k_i^2 a_i(t) = (-1)^i \dfrac{1}{k_i \ell} \ddot{u}(t) \ , \quad i \in \mathbb{N} \ .$$

This is a set of 2-nd order ODEs for the coefficients of the expansion of the fast part of the solution. These should be supplemented by the initial conditions, projecting the i.c. on the fast part and the modes. Or we may just assume for now, that every system has at least a small damping that make the initial solution decay and only the forced solution exists after a sufficient amount of time (or any other justification to avoid extra-algebra here).

The solution can be thus written as

$$w(x,t) = \dfrac{x}{\ell} u(t) + \sum_i a_i(t) \sin \left( k_i x \right) \ ,$$

being $a_i(t)$ the solutions of the set of ODEs. Now, we're ready to discuss the expression of the solution and the appearance of normal modes (up onto - or summed to - the fast part of the solution), as a function of the frequency content of the forcing $u(t)$.

Comments

Every second order ODE above is formally equivalent to the equation of a undamped harmonic oscillation with:

  • natural frequency $\omega_{n,i} = \sqrt{\dfrac{N}{m}} k_i = \sqrt{\dfrac{N}{m}} \dfrac{i \pi}{\ell}$

  • transfer function G_i(s) from $\ddot{u}(t)$ to $a_i(t)$ (in Laplace domain)

    $$a_i(s) = G_i(s) u(s) = \dfrac{1}{s^2 + \omega^2_{n,i}} (-1)^i \frac{1}{k_i \ell} \mathscr{L}\left\{\ddot{u}(t)\right\}(s) \ , $$

Being a superposition (linear combination) of contributions experiencing resonance at increasing frequency, $\omega_{n,i} = i \sqrt{\frac{N}{m}} \frac{pi}{\ell}$, it should be not a surprise that if the forcing frequency is close to a resonance of a mode, that mode dominates in the response.

$\endgroup$

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.