Forced Mechanical Vibrations

The model and solution

We consider the damped, mass-spring system with a sinusoidal external force:

mx+bx+kx=F0cosγt,

where F0,γ>0.

By using the method of undetermined coefficients, one can shown that

x(t)=xc(t)+F0(kmγ2)2+b2γ2sin(γt+θ),

where the complementary solution, xc(t), is the solution of the corresponding homogeneous equation.

In real-world damped systems, we must have xc(t)0 as t, and therefore, xc(t) is called the transient part of the solution. The transient part depends only on the parameters of the system (m, b, and k) and the initial conditions. The other term of the solution is called the steady-state part or the steady-periodic part of the solution.

The expression

G(γ)=1(kmγ2)2+b2γ2

is called the gain factor. Notice that the gain factor depends on the system parameters and the frequency of the external force.

Practical resonance

Let's find the maximum value of G(γ).

Upon differentiating, we find that

G(γ)=2mγ(kmγ2)b2γ[(kmγ2)2+b2γ2]3/2,

and G(γ)=0 if and only if

γ=0orγ=γr=kmb22m2.

We use γr to denote the frequency on the right.

Case 1

If the system is over-damped (b2>4mk) or critically damped (b2=4mk), then γr is imaginary, and we must have the maximum G(γ) when γ=0. In this case, the maximum gain is 1/k.

Case 2

If the system is under-damped (b2<4mk), we have the maximum G(γ) when γ=γr. In this case, the maximum gain is

G(γr)=1/bkmb24m2,

and γr is called the resonance frequency. For undamped systems, maximum gain occurs when the frequency of the external force is equal to the resonance frequency. Notice that as b0, the gain increases without bound and γrk/m (k/m=ω is the natural frequency of the system).

Example

Solve: 10x+3x+49x=20cos4t,x(0)=5,x(0)=0

Here is the Sage code.

The solution is

x(t)=e3t/20[4303831cos1951t20+1162919511621281sin1951t20]+(16831sin4t148831cos4t),

which can be written in the approximate form

x(t)=5.188e3t/20sin(195120t+1.510)+0.179sin(4t1.463).

The first term is the transient part. Notice that it decays with time. The second term is the steady-state part. It dominates the solution for large t.

The graph of x(t) is shown here.

fmv_g1

In this example, the resonance frequency is 971/2002.203, which is not particularly close to the frequency of the external force (γ=4). The maximum gain is rather small.