-1

If you have a projectile with these variables. $x_0 = 1v_{0x} = 70, y_0 = 0, v_{0y} = 80, a_x = 0, a_y = -9.8$ I know how to plot these points with this equation. $$ x = x0 + (v_{0x})t + 1/2((a_x)t^2) $$ $$ y = y0 + (v_{0y})t + 1/2((a_y)t^2) $$

I want to add air resistance to this problem and i know its a sphere, so the drag coefficient is 0.47, and lets say the area is 0.5. I use this equation to find the resistance. $$K = 1/2*C_p*A_p$$ where $C_p$ is the drag coefficient and $A_p$ is the area of the sphere. I then try to find the velocity of x and y by using these equations. $$F_dx = KV^2_x$$ $$F_dy = KV^2_y$$ I then plug these in back into my initial x and y equations $$ x = x0 + (v_{0x})t - 1/2((F_dx/m +a_x)t^2) $$ $$ y = y0 + (v_{0y})t - 1/2((F_dy/m +a_y)t^2) $$

I am having a hard time getting the right numbers and pictures when i use these equations. Am i doing something wrong here? Will someone please help me. I would really appreciate any help.

Qmechanic
  • 220,844
user2856118
  • 213
  • 1
  • 3
  • 7

1 Answers1

1

Those first two equations you mentioned only work in the case of constant acceleration (for more info on this type of kinematics, go here: Can the equations of motion be used for both instantaneous and average quantities?). In your case, we clearly don't have constant acceleration if the force (which defines the acceleration) depends on how fast the object is going. Just picture it this way: first the object starts out with some speed, so there's air resistance which slows it down, so now it has less speed, therefore the air resistance is lesser. So there's a changing acceleration, and you can't apply those seemingly standard kinematics equations. I'm afraid if you don't know a bit of differential equations (or at least basic differential calculus) it'll be impossible for you to understand how to solve the problem (so learn calculus!). If you do know calculus, here's a really nice look at different cases with quadratic air resistance (the type of air resistance that's acting in your problem). Also, as is mentioned in the page I linked to, you'll find that in your particular case which is fairly general, there is no general solution (pardon the redundancy) to the differential equation that comes out of your situation; you can get an approximate numerical solution though.