Pendulum in field

A regular pendulum lies at rest at time t = 0 t = 0 seconds.

The pendulum string's free end is hinged at the coordinate ( 0 , 0 ) (0, 0) , so the bob makes an angle of 0 0 radians initially with the negative y y -axis.

At time t = 0 t = 0 , there is a force field field that imparts a constant force of 10 10 Newtons in the + x +x axis direction always.

Find the amplitude of oscillation of the pendulum, in radians.

Relevant information:

  • The mass of the bob is 10 k g 10kg

  • Gravitational acceleration g = 10 m / s 2 g = 10 m/s^2

  • The length of the pendulum's string l = 10 m l = 10 m

Bonus: if the field's strength is 10000 10000 Newtons, or even greater, find a possible starting position for the bob for the pendulum to be in equilibrium. Find this equilibrium point for an infinitely strong force field.


The answer is 0.1.

This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try refreshing the page, (b) enabling javascript if it is disabled on your browser and, finally, (c) loading the non-javascript version of this page . We're sorry about the hassle.

2 solutions

Mark Hennings
Dec 21, 2020

If the string makes an angle θ \theta with the downward vertical, then we have the equation of motion

m θ ˙ ( cos θ sin θ ) m θ ˙ 2 ( sin θ cos θ ) = T ( sin θ cos θ ) + ( F m g ) m\ell\dot{\theta}\binom{\cos\theta}{\sin\theta} - m\ell \dot{\theta}^2\binom{\sin\theta}{-\cos\theta} \; = \; -T\binom{\sin\theta}{-\cos\theta} + \binom{F}{-mg} where T T is the tension in the string, and F F is the strength of the wind. Taking the inner product of this equation with ( cos θ sin θ ) \binom{\cos\theta}{\sin\theta} , we see that m θ ¨ = F cos θ m g sin θ m\ell \ddot{\theta} \; = \; F\cos\theta - mg\sin\theta This problem has an equilibrium position of θ α \theta \equiv \alpha , where F cos α = m g sin α F\cos\alpha = mg\sin\alpha , so α = tan 1 F m g \alpha = \tan^{-1}\tfrac{F}{mg} . Now θ ¨ = F 2 + m 2 g 2 m ( sin α cos θ cos α sin θ ) = F 2 + m 2 g 2 m sin ( θ α ) 1 2 θ ˙ 2 = F 2 + m 2 g 2 m [ cos ( θ α ) cos α ] \begin{aligned} \ddot{\theta} & = \; \frac{\sqrt{F^2 + m^2g^2}}{m \ell}\big(\sin\alpha\cos\theta -\cos\alpha\sin\theta\big) \; = \; -\tfrac{\sqrt{F^2 + m^2g^2}}{m \ell}\sin(\theta-\alpha) \\ \tfrac12\dot{\theta}^2 & = \; \tfrac{\sqrt{F^2+m^2g^2}}{m\ell}\big[\cos(\theta - \alpha) - \cos\alpha\big] \end{aligned} so that the particle oscillates between θ = 0 \theta = 0 and θ = 2 α \theta = 2\alpha . We also note that T = F 2 + m 2 g 2 [ 3 cos ( θ α ) 2 cos θ ] T \; = \; \sqrt{F^2 + m^2g^2}\big[3\cos(\theta-\alpha) - 2\cos\theta\big] so that T F 2 + m 2 g 2 cos α = m g > 0 T \ge \sqrt{F^2 + m^2g^2}\cos\alpha = mg > 0 throughout the motion, and so the string never becomes slack (which, if it happened, would invalidate the model).

Thus the system oscillates about the equilibrium position θ = α \theta = \alpha with angular amplitude α \alpha . I this case F = m = g = = 10 F=m=g=\ell=10 , we see that α = tan 1 1 10 = 0.09966865249 \alpha =\tan^{-1}\tfrac{1}{10} = \boxed{0.09966865249} .

When F = 10000 F=10000 (and m = g = = 10 m=g=\ell=10 ), the equilibrium angle is tan 1 100 \tan^{-1}100 . As F F \to \infty , the equilibrium angle tends to 1 2 π \tfrac12\pi .

I like how you always write your differential equations in column vector form.

Krishna Karthik - 5 months, 2 weeks ago
Krishna Karthik
Dec 20, 2020

This is a re-upload, because I made the previous problem with a wrong answer. I entered the maximum value of the angle instead of the amplitude of oscillation.

This problem is simple yet interesting, because as the field strength increases greatly, the pendulum exhibits either one of the two behaviours:

  • It ragdolls all over the place from 0 0 to π \pi
  • However, when it's initial position is at π 2 \displaystyle \frac{\pi}{2} , it oscillates with high frequency, but extremely small amplitude as the field strength gets greater. Eventually when the field is infinitely strong, it just stays in equilibrium.

Here's what a graph of the motion at θ i = π 2 \displaystyle \theta_{i} = \frac{\pi}{2} , and at θ i = 0 \theta_i = 0

It is easy to see this equilibrium position intuitively because if the bob has any depression or elevation above the + x +x -axis it is immediately forced back down, so it just stays right at π 2 \displaystyle \frac{\pi}{2} when it starts there.

I tried to simulate it, so here's the maths:

The tangential component of gravity is:

F g = m g sin ( θ ) F_g = -mg \sin(\theta)

Resolving the field's tangential component F = f i ^ + 0 j ^ \vec{\bold{F}} = f\hat{i} + 0 \hat{j} where f = 10 N f = 10N ,

F d = f cos ( θ ) F_d = f \cos(\theta)

Newton's 2nd Law:

m l θ ¨ = m g sin ( θ ) + f cos ( θ ) ml \ddot{\theta} = -mg \sin(\theta) + f \cos(\theta)

Solving for θ \theta and numerically integrating is the last step.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
import math

time = 0
deltaT = 10**-5

l = 10
m = 10
g = 10

theta = math.pi/2
thetaDot = 0

F = 10000
count = 0

while time <= 10:
    if count % 10000 == 0:
        print(theta)

    Fgt = -m*g*math.sin(theta)
    Fdt = F*math.cos(theta)

    totalTangentialForce = Fgt + Fdt 

    thetaDotDot = (Fgt + Fdt)/(m*l)
    thetaDot += thetaDotDot*deltaT
    theta += thetaDot*deltaT



    time += deltaT
    count += 1

0 pending reports

×

Problem Loading...

Note Loading...

Set Loading...