Parachutist problemNeed help where to begin

  • Thread starter Thread starter platonas1
  • Start date Start date
AI Thread Summary
The discussion revolves around solving a differential equation that models the free-fall velocity of a parachutist, with specific parameters for the scenario provided. The equation requires numerical methods for solution, particularly using MATLAB or Octave, as the user is unfamiliar with these techniques. The problem is divided into two segments: from t=0 to 10 seconds with a drag coefficient of 0.25 kg/m, and from t=10 to 30 seconds with a drag coefficient of 5 kg/m after the parachute opens. The user seeks guidance on how to approach this problem given their lack of classroom instruction due to personal circumstances. Resources and examples for using MATLAB to solve such differential equations are suggested for further assistance.
platonas1
Messages
7
Reaction score
0
Here is the problem.

The free-fall velocity of a parachutist can be simulated as

du/dt=g-Cd/m u^2


where u = velocity (m/s) t= time (s)
g = acceleration due to gravity (9.81 m/s2).
Cd = drag coefficient (kg/m),
and m = mass (kg).
For a 80-kg parachutist, solve this equation numerically from t = 0 to 30 s given that u(0) = 0. During free fall, Cd = 0.25 kg/m. However, at t = 10 s the chute opens, whereupon Cd = 5 kg/m.


Please help! from were I should start solving this problem!
 
Physics news on Phys.org
Two comments:

1. In your class have you discussed numerical techniques to solve differential equations?

2. Hint: think of it as two separate problems, one from t=0 to 10s and the second from t=10s to 30s. Care must be taken as to the initial conditions of each problem.
 
hotvette said:
Two comments:

1. In your class have you discussed numerical techniques to solve differential equations?

2. Hint: think of it as two separate problems, one from t=0 to 10s and the second from t=10s to 30s. Care must be taken as to the initial conditions of each problem.


Thank you for your reply,

Here is my situation,

I am at 2nd year of mechanical engineering. Due to economical and family problems I couldn’t attend classes for this year, so I took numerical analysis lesson as independent study. I am quite familiar with differential equations but not with numerical methods. My teacher told me that he needs from me not to solve differential equations by hand, but use of Matlab or Octave to solve "typical engineering problems». Like the problem above which I am very confused with it, I must solve it using Matlab, either way I spend more than 3 days of continuous reading trying to solve it also by hand with no luck.

Thank you for your support.
 
Perhaps the following example has enough info that you can see how to enter your problem into MATLAB:

http://www.mit.edu/people/abbe/matlab/ode.html

(Found by googling matlab differential equation solving, maybe you can find other useful info there)
 
Last edited by a moderator:
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