A projectile of mass m is launched with speed v 0 at angle θ 0 from the x axis. Let the drag force acting on the particle be F = − m α v where α = v 0 g . Find θ 0 (in degrees) which maximises the value of x when y is maximum (peak of trajectory).
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.
We can write the equations of motion along the horizontal and the vertical directions as d t d v x = − α v x , d t d v y = − α ( v y + α g ) . Solving these two we get x = α v 0 cos θ 0 ( 1 − e − α t ) , v y = − α g + ( v 0 sin θ 0 + α g ) e − α t . At the highest point of the path, v y = 0 ⟹ e − α t = g + α v 0 sin θ 0 g . Hence, at this point, x = α v 0 cos θ 0 ( 1 − g + α v 0 sin θ 0 g ) = g v 0 2 × 1 + sin θ 0 sin θ 0 cos θ 0 (since it is given that α v 0 = g ). When x is maximum, d θ 0 d x = 0 ⟹ sin θ 0 ≈ 0 . 6 1 8 0 3 ⟹ θ 0 ≈ 3 8 . 1 7 2 4 ° .
Problem Loading...
Note Loading...
Set Loading...
Here is another cool solution, that simulates the trajectory numerically.
Firstly, the differential equations that describe the trajectory can be written in terms of Newton's laws:
F = F g + F d , where F g and F d are the forces of gravity and drag respectively.
The equation can be written as a second-order ODE in vector form:
m [ x ¨ y ¨ ] = − v o m g [ x ˙ y ˙ ] − m [ 0 g ]
Solving through x and y with the forward Euler method, and trialing with different angles, I found that 38 degrees gave the greatest value of x at peak height.
Here's the code: