Damped Orbit

There is a particle of mass M = 10 kg M = 10\text{ kg} held in place at the origin of the x y xy plane. Another particle of mass m = 1 kg m = 1\text{ kg} orbits the first particle. The force on the orbiting particle is:

F = F g 0.1 v \vec{F} = \vec{F}_g - 0.1 \, \vec{v}

In the above equation, F g \vec{F}_g is the gravitational force from the particle at the origin, and v \vec{v} is the velocity of the orbiting particle. The universal gravitational constant G = 1 G = 1 .

At time t = 0 t = 0 , the position and velocity are:

( x , y ) = ( 1 , 0 ) ( x ˙ , y ˙ ) = ( 0 , 10 ) \begin{array} { r c l } (x,y) &=& (1, 0) \\ (\dot{x}, \dot{y}) &=& (0, \sqrt{10} ) \end{array}

At what time is the orbiting particle a distance of 0.2 0.2 away from the origin? If there are multiple times, give the earliest one.


The answer is 7.8.

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.

3 solutions

Mark Hennings
Mar 20, 2021

If we introduce polar coordinates and consider the radial and transverse equations of motion, we obtain the equations r ¨ r θ ˙ 2 = 10 r 2 1 10 r ˙ 2 r ˙ θ ˙ + r θ ¨ = 1 10 r θ ˙ \ddot{r} - r\dot{\theta}^2 \; = \; -10r^{-2} - \tfrac{1}{10}\dot{r} \hspace{2cm} 2\dot{r}\dot{\theta} + r\ddot{\theta} \; = \; -\tfrac{1}{10}r\dot{\theta} The second of these simplifies to read d d t ( r 2 θ ˙ e 1 10 t ) = 0 \frac{d}{dt}\big(r^2\dot{\theta}e^{\frac{1}{10}t}\big) \; = \; 0 and hence, given then initial conditions, we deduce that r 2 θ ˙ = 10 e 1 10 t r^2\dot{\theta} \; = \; \sqrt{10}e^{-\frac{1}{10}t} so we see that the angular momentum of the system decays exponentially with time. We can now substitute for θ ˙ \dot{\theta} in the radial equation, obtaining r ¨ 10 r 3 e 1 5 t + 10 r 2 + 1 10 r ˙ = 0 \ddot{r} - 10r^{-3}e^{-\frac15t} + 10r^{-2} + \tfrac{1}{10}\dot{r} \; = \; 0 If we attempt the usual substitution u = r 1 u = r^{-1} at this stage, we obtain the equation d 2 u d θ 2 + u = e 1 5 t \frac{d^2u}{d\theta^2} +u \; = \; e^{\frac15t} This is elegant, but not easy to solve, so we revert to solving the differentiaL equation r ¨ 10 r 3 e 1 5 t + 10 r 2 + 1 10 r ˙ = 0 \ddot{r} - 10r^{-3}e^{-\frac15t} + 10r^{-2} + \tfrac{1}{10}\dot{r} \; = \; 0 together with the initial conditions r ( 0 ) = 1 r(0) = 1 and r ˙ ( 0 ) = 0 \dot{r}(0) = 0 , numerically. A plot of the first 8 8 seconds is below:

There are three times in the first 8 8 seconds when the radius reaches the value of 0.2 0.2 , namely t = 7.803336 t = \boxed{7.803336} , t = 7.843896 t = 7.843896 and t = 7.972016 t = 7.972016 .

Nice solution sir

Omek K - 2 months, 3 weeks ago

Thank you very much for sharing these insights

Karan Chatrath - 2 months, 3 weeks ago
Karan Chatrath
Mar 18, 2021

This problem was fun to solve. The method using which I obtained the answer can be studied in a commented script of code attached below. Also attached are some plots:

Compare the above to the case where no damping is present:

So basically, the damping results in a reduction of speed which results in a progressive reduction of orbital radius with time. In the absence of damping, we get the classical solution of the two body problem. The script used to generate plots is different from that used to find the result of this problem. In the latter, I ran a simulation until t = 12 t=12 .

 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
clear all
clc

% Parameters:
M          = 10;
m          = 1;
G          = 1;

% Initial conditions - Position coordinates and position vector:
x(1)       = 1;
y(1)       = 0;
R(:,1)     = [x(1);y(1);0];

% Initial conditions - Velocity components:
dx(1)      = 0;
dy(1)      = sqrt(10);

% Time, time index and time step initialisation:
t(1)       = 0;
k          = 1;
dt         = 1e-6;


% Running simulation until the distance from the origin is within a specified tolerance:

tol        = 1e-5;

while abs(norm(R(:,k)) - 0.2) >= tol

    Fg         = -(G*M*m)*(R(:,k)/norm(R(:,k))^3);   % Gravity force
    Fd         = -0.1*[dx(k);dy(k);0];               % Damping force

    ddR        = (Fg + Fd)/m;                        % Newton's second law

    % Numerical integration: Semi implicit Euler:

    dx(k+1)    = dx(k) + ddR(1)*dt;
    dy(k+1)    = dy(k) + ddR(2)*dt;

    x(k+1)     = x(k) + dx(k+1)*dt;
    y(k+1)     = y(k) + dy(k+1)*dt;

    R(:,k+1)   = [x(k+1);y(k+1);0];

    t(k+1)     = t(k) + dt;
    k          = k + 1;

end

ANSWER     = t(end);
% ANSWER   = 7.8033

@Karan Chatrath Your views on anayltical solution,??

Talulah Riley - 2 months, 3 weeks ago

Can we solve it?

Talulah Riley - 2 months, 3 weeks ago

Log in to reply

I don't know how to derive a closed form solution to this problem

Karan Chatrath - 2 months, 3 weeks ago

Log in to reply

See my solution for how far we can go. There is a nice time-dependent expression for the angular momentum of the system, but the equation relating r r and θ \theta has an intractible time-dependent term.

Mark Hennings - 2 months, 3 weeks ago
Gediminas Sadzius
Mar 19, 2021

The system of three equations to solve, where r(t) is the distance of the orbiting particle from the origin:

G = 1 G = 1 , m 1 = 1 m_1=1 , m 2 = 10 m_2=10

m 1 x ( t ) = G ( m 1 m 2 x ( t ) ) ( x ( t ) 2 + y ( t ) 2 ) 3 / 2 0.1 x ( t ) m_1 x''(t)=-\frac{G \left(m_1 m_2 x(t)\right)}{\left(x(t)^2+y(t)^2\right)^{3/2}}-0.1 x'(t)

m 1 y ( t ) = G ( m 1 m 2 y ( t ) ) ( x ( t ) 2 + y ( t ) 2 ) 3 / 2 0.1 y ( t ) m_1 y''(t)=-\frac{G \left(m_1 m_2 y(t)\right)}{\left(x(t)^2+y(t)^2\right)^{3/2}}-0.1 y'(t)

r ( t ) = x ( t ) 2 + y ( t ) 2 r(t)=\sqrt{x(t)^2+y(t)^2}

Solved it digitally using Wolfram. Here is a plot of the solution for x(t), y(t) and r(t) vs time:

0 pending reports

×

Problem Loading...

Note Loading...

Set Loading...