Projectile motion with wind resistance

Click For Summary

Discussion Overview

The discussion revolves around the angle of projection for a projectile to achieve the longest range when considering wind resistance. Participants explore the theoretical implications of wind resistance on projectile motion, including mathematical derivations and the complexities introduced by air resistance.

Discussion Character

  • Exploratory
  • Technical explanation
  • Mathematical reasoning
  • Debate/contested

Main Points Raised

  • Some participants suggest that the optimal angle for maximum range without wind resistance is 45 degrees.
  • Others argue that with wind resistance, the optimal angle depends on the amount of resistance, with more resistance leading to a lower optimal angle.
  • A participant outlines a mathematical approach to derive the equations of motion for a projectile with and without air resistance, noting the complications introduced by air resistance.
  • Another participant discusses the force of air resistance, indicating that it is often approximated as a constant times velocity, but acknowledges that this is a simplification.
  • Some participants mention that the drag force can vary significantly with speed and object shape, complicating the analysis further.
  • A participant expresses uncertainty about their mathematical derivation and invites corrections or feedback on their approach.

Areas of Agreement / Disagreement

Participants generally agree that wind resistance complicates the determination of the optimal angle for maximum range, but there is no consensus on the specific effects or the best approach to model this scenario. Multiple competing views remain regarding the nature of air resistance and its impact on projectile motion.

Contextual Notes

Limitations include the dependence on specific assumptions about air resistance, such as whether it is treated as linear or quadratic, and the unresolved mathematical steps in deriving the equations of motion with air resistance.

Who May Find This Useful

This discussion may be useful for students and enthusiasts of physics, particularly those interested in projectile motion, fluid dynamics, and the effects of air resistance on motion.

yc90
Messages
3
Reaction score
0
can anyone explain to me wad is the angle of projection of a projectile motion for the longest range with wind resistance?
 
Physics news on Phys.org
It depends on the initial conditions... namely, the wind resistance.
You have to have the general equations of motion and optimize distance traveled.
 
i never actually looked into this and calculated it (and am currently too lazy to do it) but wouldn't a 45 degree angle tend to give you the greatest distance... has anyone actually put in the math to see?
 
Yes, a projectile fired at a 45 degree angle from the horizontal will give you the greatest horizontal distance.
 
...but only if there is no wind resistance. With wind resistance, it depends on how much resistance (the more resistance, the lower the angle), as said in post #2.
 
I am going to try to explain this, Please correct me if you see anything wrong with my math or physics, This is just my best guess at this problem.

First off, to solve with no air resistance (im sure you know this already, but):
1) find equations that describe the X and Y motion of the projectile
Code:
x = Vo*Cos(θ)*t
y = Vo*Sin(θ)*t + .5*g*t^2
2) Express time as a function of y displacement:
Code:
t = 2*Vo*Sin(θ)/g
3) Plug in t(θ) into x(t) to find x(θ)
Code:
x = 2*Vo^2*Cos(θ)*Sin(θ)/g
4) Maximize x(θ)
Code:
x' = (2 * Vo^2)(cos^2(θ) - Sin^2(θ))
x' = (2 * Vo^2)(1 - 2 * Sin^2(θ))
0 = (1 - 2 * Sin^2(θ))
θ = 45 degrees

The air resistance complicates things. But I am going to try to use the same method. With air resistance, this will take you up to a certain point where it is algebraically impossible to continue, but conceptually it isnt. Computer aid could be used to find a numerical estimation.

Ok, here goes:

The force of the air resistance
Code:
F = α * v
α = a constant, with units Kg/s This depends on the properties of the fluid the projectile it traveling through.
v = velocity

So, net acceleration due to air resistance
Code:
a =  α * v / m
a = Β * v
Β is a constant equal to α / m

since acceleration isn't constant, in order to write the position equations for the X and Y axis you have to start from the beginning.
I am going to do X and Y at separate times, as they can get long.

Y AXIS POSITION EQUATION

(acceleration on y axis) = g + B*(velocity on y axis)
Code:
d2y/dt2 = g + Β*dy/dt
d2y/dt2 - Β*dy/dt = g

Homogeneous solution of the Diffeq.
Code:
y = C1 *e^(Βt) + C2*t*e^(Βt)
for constants C1 and C2.

Boundary conditions of typical projectile problem are
Code:
y(0) = 0
y'(0) = Vo*Sin(θ)
Code:
0 = C1 *e^(Β*0) + C2*0*e^(Β*0)
C1 = 0
The solution becomes
Code:
y =  C2*t*e^(Βt)
Code:
y' =  C2*(t*Β*e^(Β*t) + e^(Βt))
C2 = Vo*Sin(θ)

So now we have the homogeneous solution
Code:
Yh = Vo*Cos(θ)*t*e^(Β*t)

Now the particular solution to the Diffeq:
Code:
d2y/dt2 - Β*dy/dt = g
Guess Yp = A*t for some undetermined constant A
Code:
Yp = A*t
Yp' = A
Yp'' = 0

d2y/dt2 - Β*dy/dt = g
0 - Β*A = g
A = -g/Β
Yp = -g*t/B

So now we can write the Y position equation for the projectile with air resistance:
Code:
y = Yp + Yh
[B]y = -g*t/B + Vo*Sin(θ)*t*e^(B*t)[/B]

X AXIS POSITION EQUATION:

Again, we have to start with the acceleration to write the position equation:

(acceleration on x axis) = -B*(velocity on x axis)
Code:
d2x/dt2 = -Β*dx/dt
Since this one is a homogeneus problem, it is much easier to solve:
Code:
d2x/dt2 + Β*dx/dt= 0

x = C1 *e^(-Βt) + C2*t*e^(-Βt)
Again, the innitial conditions for projectile motion:
Code:
x(0) = 0
x'(0) = Vo*Cos(θ)
Plug these in and you get
Code:
C1 = 0
C2 = Vo*Cos(θ)

So, the final equation for the motion on the X axis is
Code:
x = Vo*Cos(θ)*t*e^(-B*t)
Code:
[B][SIZE="4"]y = -g*t/B + Vo*Sin(θ)*t*e^(B*t)
x = Vo*Cos(θ)*t*e^(-B*t)[/B]

You can then solve for t(θ) from y(t) by setting y=0 (the total y displacement is zero, assuming the projectile lands on the ground).
Code:
0 = -g*t/B + Vo*Sin(θ)*t*e^(B*t)
t = ln(g/(B*Vo*Sin(θ)))/B

Now plug this into the x(t) equation
Code:
x = Vo * Cos(θ) * ln(g/(B*Vo*Sin(θ)))/B * e^(-ln(g/(B*Vo*Sin(θ))))

And have fun maximizing that...

I hope this was at least partly right, can anyone see any mistakes or reasons that this is incorrect? There probably are some glaring errors I am just not seeing.
 
Last edited:
And...According to a difference engine:
Code:
x' = -((e^-ln[(g Csc[θ])/(B*Vo)]*Vo*Cos[θ]*Cot[θ])/B) + (e^-ln[(g Csc[θ])/(B*Vo)]*Vo*Cos[θ]*Cot[θ]*ln[e]*ln[(g*Csc[θ])/(B*Vo)])/B - (e^-ln[(g Csc[θ])/(B*Vo)]*Vo*ln[(g*Csc[θ])/(B*Vo)]*Sin[θ])/B

Which reduces to

Code:
0 = Cos[θ]*Cot[θ] + Cos[θ]*Cot[θ]*ln[(g*Csc[θ])/(B*Vo)]) - ln[(g*Csc[θ])/(B*Vo)]*Sin[θ]

Which would give your solution if it were solvable...banking on the slim margain that I was right all this way. It is possible to use a computer, but I doubt I was right all thsi way. Someone look it over pls?
 
Last edited:
The force of drag is usually approximated as a constant times speed2, but even this is a simplifcation. In real life, the drag force versus velocity is so complicated that tables are used along with interpolation (which isn't linear interpolation unless the table is very dense), especially if speeds transition near or past super-sonic. I seem to recall some ballistics oriented web sites, regarding rifles, and one or more of them had some form of ballistics calculator, but I don't recall if these allowed for very steep angles.

Another possible source of information would be web sites about motars.
 
I used a constant times velocity, and yes that is a simplification. Air resistance depends on a lot of things, but a constant times velocity is a fairly common simplification.
 
  • #10
That was a fantastic, thorough, overly kind derivation and explanation swraman!
I just wanted to add a little*:
The force of air resistance starts out approximately linearly (as swraman used), and is a good approx for small-medium object at low-medium speeds. For larger objects and higher speeds the resistance goes approximately as a (~)square of the velocity (i totally can't remember the details by i think the exact value of the exponent varies with the shape of the object??), and finally begins to level out asymptotically (this comes from fluid approximations where a fairly large enveloped develops around the projectile shielding it from air resistance).

*This is just qualitative stuff i remember from an aerodi class, sorry if I'm lacking / messing up any details.
 
  • #11
lzkelley said:
The force of air resistance starts out approximately linearly (as swraman used), and is a good approx for small-medium object at low-medium speeds. For larger objects and higher speeds the resistance goes approximately as a (~)square of the velocity (i totally can't remember the details by i think the exact value of the exponent varies with the shape of the object??), and finally begins to level out asymptotically (this comes from fluid approximations where a fairly large enveloped develops around the projectile shielding it from air resistance).
Thats interesting, I never knew that :)
But I haven't taken any specific phys classes yet, so I was just gong off of general mechanics.
I guess its safe to say air resistance is a royal pain to account for, haha.
 

Similar threads

  • · Replies 7 ·
Replies
7
Views
7K
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 4 ·
Replies
4
Views
2K
  • · Replies 3 ·
Replies
3
Views
2K
  • · Replies 19 ·
Replies
19
Views
12K
  • · Replies 13 ·
Replies
13
Views
3K
  • · Replies 2 ·
Replies
2
Views
801
Replies
9
Views
2K
  • · Replies 2 ·
Replies
2
Views
1K
  • · Replies 8 ·
Replies
8
Views
3K