Compute the velocity of a free-falling parachutist using Euler's method

In summary: That way, the drag acceleration will be negative for positive velocities and positive for negative velocities.With these two modifications, you should be able to compute the solution. In summary, to compute the velocity of a free-falling parachutist using Euler's method, you must first establish a sign convention for velocity and acceleration. Then, to correctly handle drag, the drag acceleration should be computed as - (c_d/m)(v^3/|v|). Finally, plug in the values and compute the solution step by step, changing the drag coefficient as necessary.
  • #1
thornear
7
0

Homework Statement



For the second order drag model (Eq. 1.8), compute the velocity of a free-falling parachutist using Euler's method for the case where,

m = 80 kg
Cd = .25 kg/m

Perform the calculation from t = 0 to 20 with a step size of 1 s. Use an initial condition that the parachutist has an upward velocity of 20 m/s at t = 0. At t=10 s, assume that the chute is instantaneously deployed so that the drag coefficient jumps to 1.5 kg/m.

Homework Equations



Eq. 1.8,

dv/dt = g-((Cd)/m)*v2

The Attempt at a Solution



Used equation v(ti+1) = v(ti) + [g - (Cd/m)*v(ti)2](ti+1 - ti)v

(Used in example in book, unfortunately no example w/ an initial condition with an "upward velocity" though)

Plugged in the values to achieve,

t = 0... V = 20 + [9.81 - (.25/80)(0)2] *1 = 29.81m/s
t= 1...V = 29.81 + [9.81 - (.25/80)2]*1 = 36.51m/s
t =2....V=36.51 + [9.81-(.25/80)2]*1 = 42.15 m/s
...so on until t = 10 where Cd changes from .25 to 1.5

Am I doing this right? I don't know how the "upward velocity = 20" works into this. I assumed that it is the initial v(ti) as you can see from the first solution I have where t = 0, which may or may not be horribly wrong.

Thanks, much appreciated.
 
Physics news on Phys.org
  • #2
Since you are representing an upward velocity as positive, you must have g as negative here. Try making g negative.
 
  • #3
Making g negative makes sense to me but it begins to produce negative velocities. Also I made a mistake in the above post,

t = 0... V = 20 + [9.81 - (.25/80)(0)2] *1 = 29.81m/s
t= 1...V = 29.81 + [9.81 - (.25/80)2]*1 = 36.51m/s
t =2....V=36.51 + [9.81-(.25/80)2]*1 = 42.15 m/s
...so on until t = 10 where Cd changes from .25 to 1.5

Should read

t = 0... V = 20 + [9.81 - (.25/80)(0)2] *1 = 29.81m/s
t= 1...V = 29.81 + [9.81 - (.25/80)(29.81)2]*1 = 36.51m/s
t =2....V=36.51 + [9.81-(.25/80)(36.51)2]*1 = 42.15 m/s
...so on until t = 10 where Cd changes from .25 to 1.5

But in looking at that I realize perhaps that v(ti)2 should be 202 initially rather than 02.

Thoughts? Help?

Thanks
 
  • #4
Let's step back and think about the math here, and the physics as well.

You initially have the parachutist going upwards. Gravitational acceleration is obviously directed downwards. You will need some sign convention on velocity and acceleration to handle this scenario. If you choose the sign convention such that downward velocity is positive, your value for g will be positive and your initial velocity will be negative. If you choose the sign convention such that upward velocity is positive, your value for g will be negative and your initial velocity will be positive.

That is not enough to cover this scenario. The other problem is drag. Drag is always directed against the velocity vector. If your velocity is positive (regardless of sign convention), the drag acceleration must be negative. If your velocity is negative, the drag acceleration must be positive. You have drag acceleration as [itex]- (c_d/m)v^2[/itex], so it is always negative. This is incorrect for negative velocities. One way to correct this is to compute the drag acceleration as [itex]- (c_d/m)(v^3/|v|)[/itex].
 
  • Like
Likes Mohamed ismail
  • #5


Your approach using Euler's method seems correct. The initial upward velocity of 20 m/s can be accounted for by using it as the initial condition for v(ti) at t = 0. This means that at t = 0, the parachutist has an initial velocity of 20 m/s upwards, and then starts to free-fall under the influence of gravity and drag.

One thing to note is that in the equation for Euler's method, the term (ti+1 - ti) should be replaced with the step size, which in this case is 1 s. So the equation should be v(ti+1) = v(ti) + [g - (Cd/m)*v(ti)2]*1.

Also, at t = 10 s, the drag coefficient jumps to 1.5 kg/m, so this should be taken into account in the calculation for v(ti+1) at t = 10 s and onwards.

Overall, your approach is correct and you have accounted for the initial upward velocity correctly. Keep in mind any changes in the parameters (such as the drag coefficient) during the calculation.
 

1. What is Euler's method and how does it relate to calculating velocity in a free-falling parachutist?

Euler's method is a numerical technique used to approximate the solution to a differential equation. In this case, it is used to calculate the velocity of a free-falling parachutist by approximating the change in velocity over small time intervals.

2. What are the variables and initial conditions needed for using Euler's method to calculate the velocity of a free-falling parachutist?

The variables needed are the mass of the parachutist, the acceleration due to gravity, and the drag coefficient of the parachute. The initial conditions needed are the initial velocity and position of the parachutist.

3. How accurate is Euler's method in calculating the velocity of a free-falling parachutist?

Euler's method is an approximation technique, so the accuracy depends on the size of the time intervals used. The smaller the time intervals, the more accurate the calculation will be. However, using smaller time intervals also increases the computational workload.

4. Can Euler's method be used for other scenarios besides a free-falling parachutist?

Yes, Euler's method can be used to approximate the solution to any differential equation, as long as the initial conditions and variables are known. It is a commonly used technique in many scientific fields.

5. How does air resistance affect the velocity of a free-falling parachutist and how is it accounted for in Euler's method?

Air resistance, or drag, decreases the velocity of a free-falling parachutist. This is because the drag force acts in the opposite direction of the motion and slows the parachutist down. In Euler's method, the drag force is included in the calculation of the acceleration, which then affects the change in velocity over time.

Similar threads

  • Introductory Physics Homework Help
Replies
6
Views
197
Replies
20
Views
894
  • Introductory Physics Homework Help
Replies
30
Views
1K
  • Introductory Physics Homework Help
Replies
7
Views
4K
  • Introductory Physics Homework Help
Replies
34
Views
3K
  • Introductory Physics Homework Help
Replies
9
Views
1K
  • Introductory Physics Homework Help
Replies
4
Views
1K
  • Introductory Physics Homework Help
Replies
23
Views
2K
  • Introductory Physics Homework Help
Replies
2
Views
778
  • Introductory Physics Homework Help
Replies
5
Views
3K
Back
Top