EBK NUMERICAL METHODS FOR ENGINEERS
7th Edition
ISBN: 8220100254147
Author: Chapra
Publisher: MCG
expand_more
expand_more
format_list_bulleted
Textbook Question
Chapter 2, Problem 11P
Develop, debug, and test a program in either a high-level language or a macro language of your choice to compute the velocity of the falling parachutist as outlined in Example 1.2. Design the program so that it allows the user to input values for the drag coefficient and mass. Test the program by duplicating the results from Example 1.2. Repeat the computation but employ step sizes of 1 and 0.5 s. Compare your results with the analytical solution obtained previously in Example 1.1. Does a smaller step size make the results better or worse? Explain your results.
Expert Solution & Answer
Want to see the full answer?
Check out a sample textbook solutionStudents have asked these similar questions
5.17 and look at the two attached images
Use bisection to determine the drag coefficient needed so that an 80-kg parachutist has a velocity of 36 m/s after 4 s of free fall. Note: The acceleration of gravity is 9.81 m/s2 . Start with initial guesses of xl = 0.1 and xu = 0.2 and iterate until the approximate relative error falls below 2%.
Just the handwritten work please. I do not need matlab
Chapter 2 Solutions
EBK NUMERICAL METHODS FOR ENGINEERS
Ch. 2 - 2.1 Write pseudocode to implement the flowchart...Ch. 2 - Prob. 2PCh. 2 - 2.3 Develop, debug, and document a program to...Ch. 2 - The sine function can be evaluated by the...Ch. 2 - 2.5 Develop, debug, and document a program for...Ch. 2 - The following algorithm is designed to determine a...Ch. 2 - The divide and average method, an old-time method...Ch. 2 - 2.8 An amount of money P is invested in an account...Ch. 2 - 2.9 Economic formulas are available to compute...Ch. 2 - 2.10 The average daily temperature for an area can...
Ch. 2 - Develop, debug, and test a program in either a...Ch. 2 - 2.12 The bubble sort is an inefficient, but...Ch. 2 - Figure P2.13 shows a cylindrical tank with a...Ch. 2 - 2.14 Two distances are required to specify the...Ch. 2 - Develop a well-structured function procedure that...Ch. 2 - Prob. 16PCh. 2 - Develop well-structured programs to (a) determine...Ch. 2 - 2.18 Piecewise functions are sometimes useful when...Ch. 2 - Develop a well-structured function to determine...Ch. 2 - 2.20 Develop a well-structured function to...Ch. 2 - 2.21 Manning’s equation can be used to compute the...Ch. 2 - 2.22 A simply supported beam is loaded as shown in...Ch. 2 - ThevolumeV of liquid in ahollow horizontal...Ch. 2 - 2.24 Develop a well-structured program to compute...Ch. 2 - The pseudocode in Fig. P2.25 computes the...Ch. 2 - 2.26 The height of a small rocket y can be...Ch. 2 - 2.27 As depicted in Fig. P2.27, a water tank...
Knowledge Booster
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, mechanical-engineering and related others by exploring similar questions and additional content below.Similar questions
- Can you help me code the algorithm into MATLAB? The delta zero, delta one and so forth are equal to the determinats of a 3x3 matrix made of the three vectors.arrow_forwardThe center of mass for a human body can be determined by a segmental method. Using cadavers, it is possible to determine the mass of individual body segments (as a proportion of total body mass) and the center of mass for each segment (often expressed as a distance from one end of the segment). Finding the overall body center of mass can be a complex calculation, involving more than 10 body segments. Below, we will look at a simplified model that uses just six segments: head, trunk, two arms, and two legs. Search y X As a percentage of total body mass, the head is 10%, the two arms are 10%, the trunk is 56%, and the two legs are 24%. The center of mass for each segment is given as an (x,y) coordinate, both units in cm: head = (0, 165), arms = (0, 115), trunk = (0, 95), and legs = (0, 35). Assume the body mass for the individual is 88 kg and their total height is 180 cm. Determine they and y coord 99+ H of massarrow_forwardProblem 6.5arrow_forward
- Here, there is a human powered submarine. The length of the submarine is 4.85 m and the hope is it can travel fully submerged through water at 0.440 m/s. The water it is being tested in is freshwater at a Temperature of 15 degrees celcius. The submarine model is built on a 1/5 scale and is built in a wind tunnel. A shield surrounds the drag balance strut so that the aerodynamic drag of the strut itself does not influence the measured drag. Here, the wind in the wind tunnel is at 25°C and at one standard atm pressure. What air speed is needed to run the wind tunnel in order to achieve similarity?arrow_forwardDon't Use Chat GPT Will Upvote And Give Handwritten Solution Pleasearrow_forwardI am trying to find the gross liftoff mass of a 2 stage rocket for different values of n and plot it in MATLAB. I found the total liftoff mass for stage 1 and stage 2. Is the gross liftoff mass equal to m_i1 in the code or do you have to add m_i1 and m_i2? Also, the liftoff seems to be negative for some intial values of n? That is not feasible, right? % Constants delta_V_ideal = 9800; % m/s f_inert1 = 0.15; f_inert2 = 0.25; Isp_1 = 325; % s Isp_2 = 380; % s g0 = 9.81; % m/s^2 m_PL = 750; n = 0.3:0.01:0.7; % Initializing variables delta_v1 = zeros(size(n)); delta_v2 = zeros(size(n)); MR_2 = zeros(size(n)); m_prop2 = zeros(size(n)); m_inert2 = zeros(size(n)); m_i2 = zeros(size(n)); MR_1 = zeros(size(n)); m_prop1 = zeros(size(n)); m_inert1 = zeros(size(n)); m_i1 = zeros(size(n)); for i = 1:length(n) delta_v1(i) = n(i)*delta_V_ideal; delta_v2(i) = (1-n(i))*delta_V_ideal; MR_2(i) = exp(delta_v2(i)/(g0*Isp_2)); m_prop2(i) = (m_PL*(MR_2(i)-1)*(1-f_inert2))/(1-f_inert2*MR_2(i));…arrow_forward
- As4. This is my third time asking this question. Please DO NOT copy and paste someone else's work or some random notes. I need an answer to this question. There is a mass attached to a spring which is fixed against a wall. The spring is compressed and then released. Friction and is neglected. The velocity and displacement of the mass need to be modeled with an equation or set of equations so that various masses and spring constants can be input into Matlab and their motion can be observed. Motion after being released is only important, the spring being compressed is not important. This could be solved with dynamics, Matlab, there are multiple approaches.arrow_forward6.1Complete the code please.arrow_forwardThe 2nd order ODE given below models the vertical fall of on Object under the influence of gravity and air friction md²y acceleration -mg + (1/2 Co A Pair) (dy) ² Forcing due logranty Forcing due to air frictionarrow_forward
arrow_back_ios
SEE MORE QUESTIONS
arrow_forward_ios
Recommended textbooks for you
- Elements Of ElectromagneticsMechanical EngineeringISBN:9780190698614Author:Sadiku, Matthew N. O.Publisher:Oxford University PressMechanics of Materials (10th Edition)Mechanical EngineeringISBN:9780134319650Author:Russell C. HibbelerPublisher:PEARSONThermodynamics: An Engineering ApproachMechanical EngineeringISBN:9781259822674Author:Yunus A. Cengel Dr., Michael A. BolesPublisher:McGraw-Hill Education
- Control Systems EngineeringMechanical EngineeringISBN:9781118170519Author:Norman S. NisePublisher:WILEYMechanics of Materials (MindTap Course List)Mechanical EngineeringISBN:9781337093347Author:Barry J. Goodno, James M. GerePublisher:Cengage LearningEngineering Mechanics: StaticsMechanical EngineeringISBN:9781118807330Author:James L. Meriam, L. G. Kraige, J. N. BoltonPublisher:WILEY
Elements Of Electromagnetics
Mechanical Engineering
ISBN:9780190698614
Author:Sadiku, Matthew N. O.
Publisher:Oxford University Press
Mechanics of Materials (10th Edition)
Mechanical Engineering
ISBN:9780134319650
Author:Russell C. Hibbeler
Publisher:PEARSON
Thermodynamics: An Engineering Approach
Mechanical Engineering
ISBN:9781259822674
Author:Yunus A. Cengel Dr., Michael A. Boles
Publisher:McGraw-Hill Education
Control Systems Engineering
Mechanical Engineering
ISBN:9781118170519
Author:Norman S. Nise
Publisher:WILEY
Mechanics of Materials (MindTap Course List)
Mechanical Engineering
ISBN:9781337093347
Author:Barry J. Goodno, James M. Gere
Publisher:Cengage Learning
Engineering Mechanics: Statics
Mechanical Engineering
ISBN:9781118807330
Author:James L. Meriam, L. G. Kraige, J. N. Bolton
Publisher:WILEY
Evaluating Indefinite Integrals; Author: Professor Dave Explains;https://www.youtube.com/watch?v=-xHA2RjVkwY;License: Standard YouTube License, CC-BY
Calculus - Lesson 16 | Indefinite and Definite Integrals | Don't Memorise; Author: Don't Memorise;https://www.youtube.com/watch?v=bMnMzNKL9Ks;License: Standard YouTube License, CC-BY