Find the numerical solution using two matlab ode solvers


Consider a 150 lb skydiver who steps out of an airplane 2 miles up.

- Gravity accelerates the diver's fall but is decelerated by drag on the chute

- Remember that mass in English units is the slug and g=32.2 ft/s

The governing 1st order differential equation modelling this scenario is mdv/dt = -mg + kv2

Since the skydiver is simply stepping out of the plane, assume they do so with 0 starting velocity.

The air resistance K(t) is proportional to the square of the velocity and is normally a function of time. However, for the sake of simplicity assume K=4/15.

1. Find the numerical solution using two MATLAB ode solvers, ode45 and ode23. )). Use an anonymous function as the input function for your ode solvers.

2. On the same graph (can do a subplot), plot velocity versus time for each ode solver, and label the plot appropriately.

3. What is the terminal velocity in ft/s according to each solver?

4. What is the terminal velocity in mph?

5. At what time do we reach terminal velocity? Output in seconds

6. Descriptive comments throughout your code.

Solution Preview :

Prepared by a verified Expert
MATLAB Programming: Find the numerical solution using two matlab ode solvers
Reference No:- TGS01151321

Now Priced at $50 (50% Discount)

Recommended (99%)

Rated (4.3/5)

A

Anonymous user

5/18/2016 5:36:21 AM

Consider the information and details provided in the assignment. Please properly consider the information and by applying the principles and concepts of MATLAB, solve the following problems. Q1. Determine the numerical solution by using two MATLAB ode solvers, ode45 and ode23. Make use of an anonymous function as the input function for your ode solvers. Q2. On similar graph (can do a subplot), plot velocity versus time for each ode solver and label the plot suitably. Q3. Determine the terminal velocity in ft/s according to each and every solver? Q4. Determine the terminal velocity in mph? Q5. At what time do we reach the terminal velocity? The output must be in seconds. Q6. Descriptive comments all the way through your code.