Excel Projectile Motion: Predicting Trajectory with Wind Calculation

AI Thread Summary
The discussion focuses on creating an Excel worksheet to predict projectile motion, specifically addressing the impact of wind on trajectory. The user is struggling with calculating the wind's effect along the Z-axis and is obtaining unexpectedly low values for lateral displacement. Contributors emphasize the need to combine the wind speed and the ball's velocity to accurately compute drag forces, which should not be treated as constant. They suggest using differential equations to model the trajectory more realistically, as the drag force is typically quadratic rather than linear. Properly accounting for the relative wind speed and adjusting calculations accordingly will yield more accurate results.
mysticjbyrd
Messages
18
Reaction score
0
I am attempting to create an excel worksheet that accurately predicts the trajectory of a projectile.

Anyways, I am having some trouble with calculating wind along the Z axis, left or right of the target.
Y axis is up in the air
X axis is towards the target
Z axis is left or right of target

Fd = force of drag
Fw = force of wind
Fb = force applied on golf ball
p = Rho, density of air
Cd = Drag coefficient
V = velocity
A = Area, which for a sphere I am using A = PI(Diameter)^2 /4
m= mass of golf ball
a = acceleration of ball
t = time
z = distance off from z-axis

Force of wind(Fw) ->
<- Force of drag(Fd)I am using,
Fd = 1/2*p*Cd*V^2*A

So,
Fw = 1/2*p*Cd*Vw^2*A
Vw = simply wind speed, Fw is constant

and

Fd = 1/2*p*Cd*Vd^2*A
Vd = Fw / mass * time

then
Fw - Fd = Fb
Fb = force applied on ball

Fb/mass = acceleration of ball

then
z = Vot + 1/2at^2

I am getting an acceleration that is roughly constant since I am dealing with low wind speeds and short time of flight. However, I am getting extremely low #'s for the distance the ball strays off on Z axis. I get the same answer if I use a constant acceleration or time stamps.

Information with just variables is fine with me, but if you want the data for some reason...
mass of golf ball = 0.04593
diameter of golf ball = 0.04267
Wind velocity = .44704 m/s
Rho = 1.1735 kg/m^3
Cd = .3878
time of flight = 1 sec

I am getting 0.0007221 meters off on z-axis.

Not sure where I am going wrong... Any help would be much appreciated.
 
Last edited:
Physics news on Phys.org
mysticjbyrd said:
Information with just variables is fine with me, but if you want the data for some reason...
mass of golf ball = 0.04593
diameter of golf ball = 0.04267
Wind velocity = .44704 m/s
Rho = 1.1735 kg/m^3
Cd = .3878
time of flight = 1 sec

I am getting 0.0007221 meters off on z-axis.

I'm getting 10 times that when I calculate it.

The way you calculate the drag and the force of the wind is wrong, you can't separate them
You need to add the vectors of the wind speed and the apparent wind because of the velocity of the ball, calculate the magnitude of the result, and calculate the total force from that, and then separate the force again in x, y and z components.
You'll get a much bigger force in the z direction that way. This is the same effect that makes cyclists feel more drag if there is a wind from the side.

Treating the drag force or the wind force as constant will only work if the velocity of the ball
changes little. Even in 1 second you get 10 m/s velocity change in the downward direction. This will have an influence on the windforce too. You really need to compute the solution of a set of differential equations for any realistic golfball trajectory. I suppose it can be done in excel with one row for each timestep.
 
fatra2 said:
Look here: https://www.physicsforums.com/showthread.php?t=351066

I just answered the same question to this dude.

Cheers

You were too late. Also your method won't work if the drag force is proportional to the square of the velocity, because you no longer can compute the x and y components separately.
 
willem2 said:
You were too late. Also your method won't work if the drag force is proportional to the square of the velocity, because you no longer can compute the x and y components separately.

In the case of a projectile thrown in the air, the drag force is linearly proportional to the velocity. Of course, you must consider that the air is homogenous.

Cheers
 
fatra2 said:
In the case of a projectile thrown in the air, the drag force is linearly proportional to the velocity. Of course, you must consider that the air is homogenous.

It's only linear for small velocities. While mysticjbyrd doesn't give the ball velocity, he is using quadratic friction. Everything I can find about friction with golfball sized objects uses a
quadratic friction force, as did mysticjbyrd so I have to assume a quadratic friction force here.
 
willem2 said:
I'm getting 10 times that when I calculate it.

The way you calculate the drag and the force of the wind is wrong, you can't separate them
You need to add the vectors of the wind speed and the apparent wind because of the velocity of the ball, calculate the magnitude of the result, and calculate the total force from that, and then separate the force again in x, y and z components.
You'll get a much bigger force in the z direction that way. This is the same effect that makes cyclists feel more drag if there is a wind from the side.

Treating the drag force or the wind force as constant will only work if the velocity of the ball
changes little. Even in 1 second you get 10 m/s velocity change in the downward direction. This will have an influence on the windforce too. You really need to compute the solution of a set of differential equations for any realistic golfball trajectory. I suppose it can be done in excel with one row for each timestep.

Could you give me an example of what you did? I am still a little confused.
 
Last edited:
suppose the ball is moving at 10 m/s, and you have 1 m/s wind from the side.
The speed of the ball relative to the air is v = \sqrt{v_{ball}^2+{v_wind}^2} = 10.05 m/s
the friction force is (1/2)*C*A*v^2. The sideways component of this is (1/2)*C*A*v*v_wind
this more than 10 times as big as the force of the wind on a stationary ball
 
Ok so what you are saying is that you have to consider the velocity of the ball from both the X and Z.

But what about the velocity of the Y axis as the ball falls?

Sorry to be so annoying, I have only had 1 semester of physics thus far, and I appreciate the help.
 
  • #10
can anyone else give me some more input? Thanks
 
  • #11
willem2 said:
suppose the ball is moving at 10 m/s, and you have 1 m/s wind from the side.
The speed of the ball relative to the air is v = \sqrt{v_{ball}^2+{v_wind}^2} = 10.05 m/s
the friction force is (1/2)*C*A*v^2. The sideways component of this is (1/2)*C*A*v*v_wind
this more than 10 times as big as the force of the wind on a stationary ball

You are using wind relative to the ground and not the ball... The ball won't be traveling anywhere near 1 m/s on z axis
 
  • #12
can anyone else give me some more input? Thanks
 
  • #13
If you're using small timesteps, the most naive possible algorithm works well; you don't need to use y=v0t+1/2gt^2. In each timestep, calculate:

1) acceleration (in x, y, z)
2) velocity
3) position
4) total drag force (remember to use the speed of the air as the ball sees it, not as the ground sees it)
5) components of drag force (you'll have to do some trigonometry for this one)
6) in the next time step acceleration will be calculated again

Also, golf balls usually have a time of flight much longer than one second.
 

Similar threads

Replies
6
Views
2K
Replies
6
Views
4K
Replies
1
Views
3K
Replies
2
Views
3K
Replies
7
Views
5K
Replies
23
Views
4K
Back
Top