Concept explainers
Exponential model The following table shows the time of useful consciousness at various altitudes in the situation where a pressurized airplane suddenly loses pressure. The change in pressure drastically reduces available oxygen, and hypoxia sets in. The upper value of each time interval is roughly modeled by T = 10 · 2−0.274a, where T measures time in minutes and a is the altitude over 22,000 in thousands of feet (a = 0 corresponds to 22,000 ft).
Altitude (in ft) | Time of Useful Consciousness |
22,000 | 5 to 10 min |
25,000 | 3 to 5 min |
28,000 | 2.5 to 3 min |
30,000 | 1 to 2 min |
35,000 | 30 to 60 s |
40,000 | 15 to 20 s |
45,000 | 9 to 15 s |
- a. A Learjet flying at 38,000 ft (a = 16) suddenly loses pressure when the seal on a window fails. According to this model, how long do the pilot and passengers have to deploy oxygen masks before they become incapacitated?
- b. What is the average rate of change of T with respect to a over the interval from 24,000 to 30,000 ft (include units)?
- c. Find the instantaneous rate of change dT/da, compute it at 30,000 ft. and interpret its meaning.
Want to see the full answer?
Check out a sample textbook solutionChapter 3 Solutions
CODE/CALC ET 3-HOLE
Additional Engineering Textbook Solutions
Basic Business Statistics, Student Value Edition
Intro Stats, Books a la Carte Edition (5th Edition)
A Problem Solving Approach To Mathematics For Elementary School Teachers (13th Edition)
Elementary Statistics (13th Edition)
Pre-Algebra Student Edition
Elementary Statistics: Picturing the World (7th Edition)
- Matlab A rocket is launched vertically and at t-0, the rocket's engine shuts down. At that time, the rocket has reached an altitude of ho- 500 m and is rising at a velocity of to 125 m/s. Gravity then takes over. The height of the rocket as a function of time is: h(t)-ho+vot-gt², t20 where g -9.81 m/s². The time t-0 marks the time the engine shuts off. After this time, the rocket continues to rise and reaches a maximum height of Amax meters at time t = tmax. Then, it begins to drop and reaches the ground at time t = tg. a. Create a vector for times from 0 to 30 seconds using an increment of 2 s. b. Use a for loop to compute h(t) for the time vector created in Part (a). e. Create a plot of the height versus time for the vectors defined in Part (a) and (b). Mark the and y axes of the plot using appropriate labels. d. Noting that the rocket reaches a maximum height, max, when the height function, h(t), attains a maxima, compute the time at which this occurs, max, and the maximum height,…arrow_forwardThe Harris-Benedict equation estimates the number of calories your body needs to maintain your weight if you do no exercise. This is called your basal metabolic rate, or BMR. The calories needed for a woman to maintain her weight is: WBMR = 655 + (4.3 × weight in pounds) + (4.7 × height in inches) − (4.7× age in years) The calories needed for a man to maintain his weight is: MBMR = 66 + (6.3 × weight in pounds) + (12.9 × height in inches) − (6.8 × age in years) A typical chocolate bar will contain around 230 calories. Write a java program that allows the user to input his or her weight in pounds, height in inches, and age in years. The program should then output the number of chocolate bars that should be consumed to maintain one’s weight for both a woman and a man of the input weight, height, and age. NOTE: This is an application of a selection statement! Input Data: Use a named constant for the number of calories in a “typical chocolate bar.” Use Scanner methods to enter the…arrow_forwardQ10: Using (ode45, ode23, or ode15s), solve the below dynamic electrical system differential equation. 1. The charge Q(t) on the capacitor in the electrical circuit shown satisfies the differential equation where d²Q dQ 1 +R- + √ √e dt2 dt L = 0.5 R = 6.0 C= 0.02 and V(t) is the applied voltage. V(t) = V(t), henrys is the coil's inductance ohms is the resistor's resistance farads is the capacitor's capacitance ellee (i) Is the circuit oscillatory? (ii) If V(t) = 24 sin(10r) volts and Q(0) = 0 = Q'(0), find Q(t). (iii) Sketch the transient solution, the steady state solution, and the full solution Q(t).arrow_forward
- Q1/The pressure drop in pascals (Pa) for a fluid flowing in a pipe with a sudden decrease in diameter can be determined based on the loss of head equation given below: h = 24-11 2g Area A Area A Area A Where: V₂ is the velocity in position 2 (m/s), g: is acceleration due to gravity = 9.81 m/s², A₁ and A₂ are the cross-sectional areas of the tube in position 1 and 2 respectively. A==d² Where: d is the diameter (m). Write a program in a script file that calculates the head loss. When the script file is executed, it requests the user to input the velocity (V₂) in m/s and values of diameters (d, and d₂). The program displays the inputted value of v followed by a table with the values of diameters in the first and second columns and the corresponding values of h, in the third column. 2 2arrow_forwardThere are two isotopes of an unknown element, X-19 and X-21. The abundance of X-19 is 14.29%. A weighted average uses the percentages of each isotope to scale their contribution to the total mass. Each isotope's contribution is the percentage (in decimal form) multiplied by the mass of the isotope. What is the contribution (in amu) to the weighted average from the X-19 isotope, which has a mass of 19.00 amu?arrow_forwardQ3/ The electric field at a point situated at a distance d from straight charged conductor is (a) Proportional to r (b) Inversely proportional to r (c) Inversely proportional to f (d) None of the abovearrow_forward
- (Thermodynamics) The work, W, performed by a single piston in an engine can be determined by this formula: W=Fd F is the force provided by the piston in Newtons. d is the distance the piston moves in meters. a. Determine the units of W by calculating the units resulting from the right side of the formula. Check that your answer corresponds to the units for work listed in Table 1.1. b. Determine the work performed by a piston that provides a force of 1000 N over a distance of 15 centimeters.arrow_forward(Heat transfer) The formula developed in Exercise 5 can be used to determine the cooling time, t, caused only by radiation, of each planet in the solar system. For convenience, this formula is repeated here (see Exercise 5 for a definition of each symbol): t=Nk2eAT3fin A=surfaceareaofasphere=4r2 N=numberofatoms=volumeofthespherevolumeofanatom Volume of a sphere sphere=43radius3 The volume of a single atom is approximately 11029m3 . Using this information and the current temperatures and radii listed in the following chart, determine the time it took each planet to cool to its current temperature, caused only by radiation.arrow_forward3. The velocity of a particle which starts from rest is given by the following table. t see) 0 2 8 10 12 14 16 v (fusee) o 12| 16 26 40| 44 25 12 18 Evaluate using trapezium rule, the total distance travelled in 18 seconds.arrow_forward
- In C Programming Language solve the following programarrow_forward• A circuit consists of a 12 V battery connected across a single resistor. If the current in the circuit is 3 A, calculate the size of the resistor. If a small appliance is rated at a current of 10 amps and a voltage of 120 volts, the power rating would be?.arrow_forwardThe position as a function of time (x(t), y(t)) of a projectile fired with a speed of vo at an angle a is given by x(t) = v₁cosα t y(t) = vo sina.t- 1 2812 Ꮎ 1 where g = 9.81 m/s². The polar coordinates of the projectile at time t are (r(t), 0(t)), where r(t) = √x(t)²+y(t)² and tane = y(1) Consider the case where vo x(t) and 0 = 70°. Determine r(t) and 0(t) for t = 1, 6, 11, 31s. = 162 m/sarrow_forward
- C++ for Engineers and ScientistsComputer ScienceISBN:9781133187844Author:Bronson, Gary J.Publisher:Course Technology Ptr