A little bit beyond projectile motion.

AI Thread Summary
The discussion revolves around a project involving the analysis of projectile motion with drag, specifically using a ping-pong ball launched at various angles. The user seeks to develop equations of motion in x and y directions, incorporating drag force described by F_D = -Kv^2, where K is the drag coefficient. They have derived some equations from their free body diagram (FBD) but are unsure how to express them in terms of second-order ordinary differential equations (ODEs) for MATLAB implementation. The user is looking for guidance on how to set up the ODEs and plot the results effectively, as they are inexperienced with MATLAB. Assistance is requested to clarify the next steps for visualizing the projectile motion and velocity.
faust9
Messages
690
Reaction score
2
Ok, here's the deal. I have a projectile motion project that goes a little beyond the normal "ideal projectile" problems.

The project consisted of shooting a projectile from a device that, within a few percent, launched a projectile at the same initial velocity every time it is fired. The launcher has an adjustable launch angle and shoots a ping-pong ball sized 5g projectile with a rough surface (yellow foam ball). My team shot the ball ten times at 15,30,45, and 60 degrees and then measure the distance traveled. We were told this data will be used later this week to find the drag coefficient of the ball but for today I simply need to develop a general equation of motion given:

v_0=100m/s,\ \theta=30^\circ,\ m_{proj}=20kg and various values of K.

Also, the force of drag is described as F_D=-Kv^2

where K is the drag coefficient and v is velocity.

I need to develop the equations of motion in terms of x and y for this "test" projectile which I will use later on to find the drag coefficient of our yellow ball and predict the range of the ball given an angle of launch.

I know I need 2 second order ODE's which I can convert to four first order ODE's, but I don't know where to start or how to start.

I have my FBD--a round ball with weight parallel to the y-axis and drag opposite to the direction of velocity.

Any help would be greatly appreciated here. Thanks in advance.
 
Physics news on Phys.org
what equations did u get from ur FBD?
Also give ur thoughts on how u think u would like to proceed?

-- AI
P.S -> Man this is fun ... i wish i had done physics this way ... :(
 
That's the thing. We are told to express our equations of motion in terms of x/y but I don't know how to do that. My I get the following from my FBD:

i: m\vec a=-\vec F_{Dx}

j: m\vec a=-\vec F_{Dy} \sin - \vec W

I know that \vec a=\ddot {x} i+\ddot {y} j

I don't see how this helps though because theta is changing as is the acceleration.

[edit] I've combined forces in the x/y direction to get:

i direction: \ddot{x}=\frac{-F_{Dx}}{m}

j direction: \ddot{y}=\frac{-F_{Dy}}{m}-g
 
Last edited:
i direction: \ddot{x}=\frac{-Kv^2\cos \theta}{m}

j direction: \ddot{y}=\frac{-Kv^2\sin \theta}{m}-g

Is this correct thus far?
 
In know also that \dot{x}(0)=100\frac{m}{s}\cos \theta,\ \dot{y}(0)=100\frac{m}{s}\sin \theta and x(0)=0,\ y(0)=0
 
Last edited:
OK, I've got this so far:

m\ddot x+Kv^2\cos \theta=0
m\ddot y+Kv^2\sin \theta+mg=0

I have to use MATLAB to display a graph of this using the ODE45 function. Unfortunetly, I've never used MATLAB before so this is quite a problem.

From whay I understand, I have to set up an m-file containing a vector where all of the ODE functions are stored.

I think I need a vector like this : v={v(1),v(2),v(3),v(4)} where:

v(1)=x
v(2)=y
v(3)=x_dot
v(4)=y_dot

I also have the following:\dot x(1)=x(3), \dot x(2)=x(4), \dot x(3)=\ddot x, and \dot x(4)=\ddot y.

thus:
m\dot x(3)+Kv^2\cos \theta=0
m\dot x(4)+Kv^2\sin \theta+mg=0

which I can solve for x_dot (x(3)_dot) and y_dot(x(4)_dot) but I'm not entirely sure if I need to:
\dot x(3)=\frac{-Kv^2\cos \theta}{m}
\dot x(4)=\frac{-Kv^2\sin \theta}{m}-g

I am so lost with this right now. What exactly do I do with the above to get a plot of projectile motion in terms of x and y and a plot of velocity in terms of x and y? Is there anyone out there who can help?
 
Last edited:
Thread 'Collision of a bullet on a rod-string system: query'
In this question, I have a question. I am NOT trying to solve it, but it is just a conceptual question. Consider the point on the rod, which connects the string and the rod. My question: just before and after the collision, is ANGULAR momentum CONSERVED about this point? Lets call the point which connects the string and rod as P. Why am I asking this? : it is clear from the scenario that the point of concern, which connects the string and the rod, moves in a circular path due to the string...
Thread 'A cylinder connected to a hanged 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