Numerical Methods for Engineers
Numerical Methods for Engineers
7th Edition
ISBN: 9780073397924
Author: Steven C. Chapra Dr., Raymond P. Canale
Publisher: McGraw-Hill Education
bartleby

Videos

Textbook Question
Book Icon
Chapter 24, Problem 45P

Employ the multiple-application Simpson's rule to evaluate the vertical distance traveled by a rocket if the vertical velocity is given by

v = 11 t 2 5 t v = 1100 5 t v = 50 t + 2 ( t 20 ) 2 0 t 10 10 t 20 20 t 30

In addition, use numerical differentiation to develop graphs of the acceleration ( d v / d t ) and the jerk ( d 2 v / d t 2 ) versus time for t = 0 to 30. Note that the jerk is very important because it is highly correlated with injuries such as whiplash.

Expert Solution & Answer
Check Mark
To determine

To calculate: The vertical distance travelled by the rocket if the vertical velocity in different time interval mentioned in the problem by using the multiple-application Simpson’s rule, and plot the graph between acceleration (dvdt) versus time (t) and also plot jerk (d2vdt2) versus time (t).

Answer to Problem 45P

Solution:

The vertical distance travelled by the rocket is 26833.3309.

The graph between acceleration (dvdt) versus time (t) is,

The graph between jerk (d2vdt2) versus time (t) is,

Explanation of Solution

Given Information:

The vertical velocity of the rocket is,

v={11t25t0t1011005t10t2050t+2(t20)220t30

The acceleration is,

a=dvdt

The jerk is,

Jerk=d2vdt2

Formula Used:

The expression for Simpson’s 1/3 rule is,

t1t2y(t)dt=h3[y(t1)+4y(t1+t22)+y(t2)]

The expression for the distance is,

y=t1t2v(t)dt

Write the first derivative forward difference formula.

f(xi)=f(xi+2)+4f(xi+1)3f(xi)2h

Write the first derivative two-point central difference formula.

f(xi)=f(xi+1)f(xi1)2h

Write the first derivative backward difference formula.

f(xi)=f(xi2)4f(xi1)+3f(xi)2h

Write the second derivative forward difference formula.

f(xi)=f(xi+2)2f(xi+1)+f(xi)h2

Write the second derivative two-point central difference formula.

f(xi)=f(xi+1)2f(xi)+f(xi1)h2

Write the second derivative backward difference formula.

f(xi)=f(xi2)2f(xi1)+f(xi)h2

Calculation:

Recall the expression of the velocity.

v={11t25t0t1011005t10t2050t+2(t20)220t30

Use the Excel to find the velocity at a different time.

For the range of 0t10.

v=11t25t

Open the Excel and substitute the respective time. Apply the formula in column B.

Numerical Methods for Engineers, Chapter 24, Problem 45P , additional homework tip  1

For the range of 10t20.

v=11005t

Open the Excel and substitute the respective time. Apply the formula in column B.

Numerical Methods for Engineers, Chapter 24, Problem 45P , additional homework tip  2

For the range of 20t30.

v=50t+2(t20)2

Open the Excel and substitute the respective time. Apply the formula in column B.

Numerical Methods for Engineers, Chapter 24, Problem 45P , additional homework tip  3

Thus, the velocity at every time is,

time, t Velocity
0 0
1 6
2 34
3 84
4 156
5 250
6 366
7 504
8 664
9 846
10 1050
11 1045
12 1040
13 1035
14 1030
15 1025
16 1020
17 1015
18 1010
19 1005
20 1000
21 1052
22 1108
23 1168
24 1232
25 1300
26 1372
27 1448
28 1528
29 1612
30 1700

Recall the expression for the distance,

The expression for the distance is,

y=t1t2v(t)dt

Use Simpson’s 1/3 rule tointegrate the above data.

Recall the expression for Simpson’s 1/3 rule.

t1t2y(t)dt=h3[y(t1)+4y(t1+t22)+y(t2)]

Take the integral for the even space time, h=1.

Substitute all the value from the above table.

02y(t)dt=13[y(0)+4y(1)+y(2)]=13[0+4(6)+34]=19.33333

24y(t)dt=13[y(2)+4y(3)+y(4)]=13[34+4(84)+156]=175.33333

46y(t)dt=13[y(4)+4y(5)+y(6)]=13[156+4(250)+366]=507.3333

68y(t)dt=13[y(6)+4y(7)+y(8)]=13[366+4(504)+664]=1015.333

810y(t)dt=13[y(8)+4y(9)+y(10)]=13[664+4(846)+1050]=1699.333

Solve further,

1012y(t)dt=13[y(10)+4y(11)+y(12)]=13[1050+4(1045)+1040]=2090

1214y(t)dt=13[y(12)+4y(13)+y(14)]=13[1040+4(1035)+1030]=2070

1416y(t)dt=13[y(14)+4y(15)+y(16)]=13[1030+4(1025)+1020]=2050

1618y(t)dt=13[y(16)+4y(17)+y(18)]=13[1020+4(1015)+1010]=2030

2022y(t)dt=13[y(20)+4y(21)+y(22)]=13[1000+4(1052)+1108]=2105.333

2224y(t)dt=13[y(22)+4y(23)+y(24)]=13[1108+4(1168)+1232]=2337.333

2426y(t)dt=13[y(24)+4y(25)+y(26)]=13[1232+4(1300)+1372]=2601.333

Solve further,

2628y(t)dt=13[y(26)+4y(27)+y(28)]=13[1372+4(1448)+1528]=2897.333

2830y(t)dt=13[y(28)+4y(29)+y(30)]=13[1528+4(1612)+1700]=3225.333

The total integral is equal to the sum of all individual integral.

I=(19.3333+175.3333+507.3333+1015.333+1699.333+2090+2070+2050+2030+2010+2105.333+2337.333+2601.333+2897.333+3225.333)=26833.3309

Thus, the vertical distance travelled by the rocket is 26833.3309.

Calculate the acceleration by numerical difference of the velocity.

a(0)=dvdt(0)

Use the first derivative forward difference formula.

dvdt(0)=f(xi+2)+4f(xi+1)3f(xi)2h

Substitute all the value from the time velocity table.

dvdt(0)=34+4(6)3(6)2(1)=5

Calculate the acceleration for time 1 to 29 by using the first order central difference formula.

a(1)=dvdt(1)=f(xi+1)f(xi1)2h

Substitute all the value from the time velocity table.

a(1)=(34)02(1)=17

Similarly calculate all the value by using the Excel.

Numerical Methods for Engineers, Chapter 24, Problem 45P , additional homework tip  4

Use the first derivative backward difference formula to calculate acceleration for t=30.

Recall the first derivative backward difference formula.

dvdt(t)=f(xi2)4f(xi1)+3f(xi)2h

Solve for t=30, Substitute all the value from the time velocity table.

dvdt(30)=15284(1612)+3(1700)2(1)=90

The below plot shows the relation between the Acceleration and time.

Write the expression for the Jerk.

Jerk=d2vdt2

Calculate the jerk by using the second order finite difference formula.

Jerk(0)=d2vdt2(0)

Write the second derivative forward difference formula.

d2vdt2(0)=f(xi+2)2f(xi+1)+f(xi)h2

Substitute all the value from the time velocity table.

d2vdt2(0)=(34)2(6)+(0)12=22

Calculate the jerk for time 1 to 29 by using the second order central difference formula.

Jerk(1)=d2vdt2(1)=f(xi+1)2f(xi)+f(xi1)h2

Substitute all the value from the time velocity table.

d2vdt2(1)=(34)2(6)+012=22

Similarly calculate all the value by using the Excel.

Numerical Methods for Engineers, Chapter 24, Problem 45P , additional homework tip  5

Use the second derivative backward difference formula to calculate acceleration for t=30.

Write the second derivative backward difference formula.

f(xi)=f(xi2)2f(xi1)+f(xi)h2

Solve for t=30, Substitute all the value from the time velocity table.

d2vdt2(30)=15282(1612)+(1700)(1)2=4

The below plot shows the relation between the jerk and time.

Want to see more full solutions like this?

Subscribe now to access step-by-step solutions to millions of textbook problems written by subject matter experts!
Students have asked these similar questions
Qu 1 If crank OA rotates with an angular velocity of ω = 12 rad/s, determine the velocity of piston B and the angular velocity of rod AB at the instant shown. please show all work
Q2/ Maria has an online shop where she sells hand made paintings and cards. She sells the painting for 50 and the card for 20. It takes her 2 hours to complete 1 painting and 45 minutes to make a single card. She also has a day job and makes paintings and cards in her free time. She cannot spend more than 15 hours a week to make paintings and cards. Additionally, she should make not more than 10 paintings and cards per week. She makes a profit of 25 on painting and 15 on each card. How many paintings and cards should she make each week to maximize her profit.
For the beam and loading shown, (a) draw the shear and bending moment diagrams, (b) determine the magnitude and location of the maximum absolute value of the bending momentConsider A = 0please show step by step process, i did something wrong with bending moment diagram( length of beam = 2 + 6 + 2)

Chapter 24 Solutions

Numerical Methods for Engineers

Ch. 24 - One of your colleagues has designed a new...Ch. 24 - Video an giography is used to measure blood flow...Ch. 24 - 24.14 Perform the same computation as in Sec....Ch. 24 - Perform the same computation as in Sec. 24.2, but...Ch. 24 - 24.16 As in Sec. 24.2, compute F using the...Ch. 24 - Stream cross-sectional areas (A) are required for...Ch. 24 - 24.18 As described in Prob. 24.17, the...Ch. 24 - 24.21 A transportation engineering study requires...Ch. 24 - 24.22 A wind force distributed against the side of...Ch. 24 - 24.23 Water exerts pressure on the upstream ...Ch. 24 - 24.24 To estimate the size of a new dam, you have...Ch. 24 - The data listed in the following table gives...Ch. 24 - The heat flux q is the quantity of heat flowing...Ch. 24 - 24.27 The horizontal surface area of a lake at a...Ch. 24 - 24.28 Perform the same computation as in Sec....Ch. 24 - 24.29 Repeat Prob. 24.28, but use five...Ch. 24 - Repeat Prob. 24.28, but use Romberg integration to...Ch. 24 - Faradays law characterizes the voltage drop across...Ch. 24 - 24.32 Based on Faraday’s law (Prob. 24.31), use...Ch. 24 - Suppose that the current through a resistor is...Ch. 24 - If a capacitor initially holds no charge, the...Ch. 24 - 24.35 Perform the same computation as in Sec....Ch. 24 - 24.36 Repeat Prob. 24.35, but use (a) Simpson’s ...Ch. 24 - 24.37 Compute work as described in Sec. 24.4, but...Ch. 24 - As was done in Sec. 24.4, determine the work...Ch. 24 - 24.39 The work done on an object is equal to the...Ch. 24 - The rate of cooling of a body (Fig. P24.40) can be...Ch. 24 - 24.41 A rod subject to an axial load (Fig....Ch. 24 - If the velocity distribution of a fluid flowing...Ch. 24 - 24.43 Using the following data, calculate the work...Ch. 24 - 24.44 A jet fighter’s position on an aircraft...Ch. 24 - 24.45 Employ the multiple-application Simpson’s...Ch. 24 - The upward velocity of a rocket can be computed by...Ch. 24 - Referring to the data from Problem 20.61, find the...Ch. 24 - Fully developed flow moving through a 40-cm...Ch. 24 - Fully developed flow of a Bingham plasticfluid...Ch. 24 - 24.50 The enthalpy of a real gas is a ...Ch. 24 - Given the data below, find the isothermal work...Ch. 24 - 24.52 The Rosin-Rammler-Bennet (RRB) equation is...Ch. 24 - For fluid flow over a surface, the heat flux to...Ch. 24 - The pressure gradient for laminar flow through a...Ch. 24 - 24.55 Velocity data for air are collected at...
Knowledge Booster
Background pattern image
Advanced Math
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, advanced-math and related others by exploring similar questions and additional content below.
Similar questions
SEE MORE QUESTIONS
Recommended textbooks for you
Text book image
Principles of Heat Transfer (Activate Learning wi...
Mechanical Engineering
ISBN:9781305387102
Author:Kreith, Frank; Manglik, Raj M.
Publisher:Cengage Learning
Text book image
International Edition---engineering Mechanics: St...
Mechanical Engineering
ISBN:9781305501607
Author:Andrew Pytel And Jaan Kiusalaas
Publisher:CENGAGE L
Text book image
Refrigeration and Air Conditioning Technology (Mi...
Mechanical Engineering
ISBN:9781305578296
Author:John Tomczyk, Eugene Silberstein, Bill Whitman, Bill Johnson
Publisher:Cengage Learning
Text book image
Automotive Technology: A Systems Approach (MindTa...
Mechanical Engineering
ISBN:9781133612315
Author:Jack Erjavec, Rob Thompson
Publisher:Cengage Learning
Text book image
Precision Machining Technology (MindTap Course Li...
Mechanical Engineering
ISBN:9781285444543
Author:Peter J. Hoffman, Eric S. Hopewell, Brian Janes
Publisher:Cengage Learning
03a: Numerical Differentiation Review; Author: Jaisohn Kim;https://www.youtube.com/watch?v=IMYsqbV4CEg;License: Standard YouTube License, CC-BY