Calculating Theoretical Y Position of a Ping Pong Ball with Air Resistance

AI Thread Summary
To calculate the theoretical Y position of a ping pong ball launched at a 45-degree angle, use the displacement equation y(t) = y0 + v0*sin(Theta)*t - 1/2*g*t^2, accounting for air resistance. The drag force, which opposes the motion, is modeled as D = kv^2, where k is dependent on factors like cross-section and air density. The equations of motion for both X and Y positions incorporate the effects of drag and gravity, requiring numerical methods for solutions. The initial velocities are given as X_i = 3.378 m/s and Y_i = 2.027 m/s. Accurate calculations will depend on estimating the drag coefficient k from experimental data.
mikefitz
Messages
155
Reaction score
0
I have the initial X and Y velocity of a ping pong ball that was launched from a mechanical device at angle Theta (45 degrees). X_i = 3.378 m/s, Y_i = 2.027 m/s.

I have a series of frames I've captured with a video capture program, which I pointed at the ping pong ball and the software calculated the X and Y position for that frame.

I need to calculate the theoretical Y position for each frame using some formula...


Which formula would accomplish this?
 
Physics news on Phys.org
The y position is given with the equation of displacement of the ball in the y-direction, which is y(t) = y0 + v0*sin(Theta)*t - 1/2*g*t^2, where v0 is the initial velocity and y0 the initial y-coordinate.
 
Since a ping pong ball is very light, relative to it's volume, you must take into account air resistance.
Drag is proportional to velocity squared and has a sense opposite to the velocity vector.
D = kv^2
The parameter k is dependent of the cross section of the body, the viscosity and density of the air and of the form of the body. You must estimate it from the experimental data you have.
Your equations of motion are:
x(t) = x_0 + v_{0x}t -\frac{1}{2m}kv^2sin(\theta)t^2
v_x(t) = v_{0x} - \frac{kv^2sin(\theta)t}{m}
y(t) = y_0 + v_{0y}t -\frac{1}{2m}kv^2cos(\theta)t^2 - \frac{1}{2}gt^2
v_y(t) = v_{0y} - \frac{kv^2cos(\theta)t}{m} - gt
v^2 = v_x(t)^2 +v_y(t)^2
\theta = tan^{-1}\frac{v_y(t)} {v_x(t)}
These equations must be solved numerically.
 
I multiplied the values first without the error limit. Got 19.38. rounded it off to 2 significant figures since the given data has 2 significant figures. So = 19. For error I used the above formula. It comes out about 1.48. Now my question is. Should I write the answer as 19±1.5 (rounding 1.48 to 2 significant figures) OR should I write it as 19±1. So in short, should the error have same number of significant figures as the mean value or should it have the same number of decimal places as...
Thread 'A cylinder connected to a hanging mass'
Let's declare that for the cylinder, mass = M = 10 kg Radius = R = 4 m For the wall and the floor, Friction coeff = ##\mu## = 0.5 For the hanging mass, mass = m = 11 kg First, we divide the force according to their respective plane (x and y thing, correct me if I'm wrong) and according to which, cylinder or the hanging mass, they're working on. Force on the hanging mass $$mg - T = ma$$ Force(Cylinder) on y $$N_f + f_w - Mg = 0$$ Force(Cylinder) on x $$T + f_f - N_w = Ma$$ There's also...
Back
Top