THINKING LIKE AN ENGINEER W/ACCESS
17th Edition
ISBN: 9781323522127
Author: STEPHAN
Publisher: PEARSON C
expand_more
expand_more
format_list_bulleted
Concept explainers
Textbook Question
Chapter 15.3, Problem 10CC
Comprehension Check 15-1 0
- a. Assume you have four row
vectors containing data on traffic flow named T1, T2, T3, and T4. Using a single MATLAB statement, combine these four, in that order, into a single column vector named TFC. Example:T1=[2 6 4 ]; T2= [0 –1] ; T3= [9 –1 0] ;
T4=[7 7] ; TFC=[2; 6; 4; 0; –1; 9; –l; 0; 7; 7] ;
- b. Using a single MATLAB statement, create a row vector named Rev that contains all even integers from 10 to 10,000 in ascending order followed by all integer multiples of 7 from 700 to 7 in descending order.
- c. Assume you have a row vector named RV5. Using a single MATLAB statement, create a new column vector named Pow that contains, in this order,
- 1. The elements of RV5.
- 2. The square roots of each element of RV5.
- 3. The square of each element of RV5.
Expert Solution & Answer
![Check Mark](/static/check-mark.png)
Want to see the full answer?
Check out a sample textbook solution![Blurred answer](/static/blurred-answer.jpg)
Students have asked these similar questions
9₁
A
Insulated boundary
Insulated boundary
dx
Let's begin with the strong form for a steady-state one-dimensional heat
conduction problem, without convection.
d dT
+ Q =
dx dx
According to Fourier's law of heat conduction, the heat flux q(x), is
dT
q(x)=-k
dx. x
Q is the internal heat source, which heat is generated per unit time per unit
volume. q(x) and q(x + dx) are the heat flux conducted into the control
volume at x and x + dx, respectively. k is thermal conductivity along the x
direction, A is the cross-section area perpendicular to heat flux q(x). T is the
temperature, and is the temperature gradient.
dT
dx
1. Derive the weak form using w(x) as the weight function.
2. Consider the following scenario: a 1D block is 3 m long (L = 3 m), with
constant cross-section area A = 1 m². The left free surface of the block
(x = 0) is maintained at a constant temperature of 200 °C, and the right
surface (x = L = 3m) is insulated. Recall that Neumann boundary
conditions are naturally satisfied…
1 - Clearly identify the system and its mass and energy exchanges between each system and its surroundings by drawing a box to represent the system boundary, and showing the exchanges by input and output arrows. You may want to search and check the systems on the Internet in case you are not familiar with their operations.
A pot with boiling water on a gas stove
A domestic electric water heater
A motor cycle driven on the roadfrom thermodynamics
You just need to draw and put arrows on the first part a b and c
7. A distributed load
w(x) = 4x1/3
acts on the beam AB shown in Figure 7, where x is measured in meters and w is in kN/m. The
length of the beam is L = 4 m. Find the moment of the resultant force about the point B.
w(x) per unit length
L
Figure 7
B
Chapter 15 Solutions
THINKING LIKE AN ENGINEER W/ACCESS
Ch. 15.1 - Which of the following are valid MATLAB variable...Ch. 15.1 - Which of the following assignment statements are...Ch. 15.1 - a. Store all workspace variables in the file...Ch. 15.2 - Write MATLAB code to complete the following...Ch. 15.2 - a. Calculate the two roots of the quadratic...Ch. 15.3 - Each problem should be done with a single MATLAB...Ch. 15.3 - Assume a row vector named vals has already been...Ch. 15.3 - a. Place the indices of all nonzero elements of...Ch. 15.3 - a. Create a column vector CV1 containing 123...Ch. 15.3 - Comprehension Check 15-1 0 a. Assume you have four...
Ch. 15.3 - a. Write a single MATLAB command that will create...Ch. 15.4 - a. Create the matrix CCM1=[180.34.11017] using a...Ch. 15.4 - Write single MATLAB statements to perform each of...Ch. 15.4 - Write single MATLAB statements to perform each of...Ch. 15.4 - Write single MATLAB statements to perform each of...Ch. 15.4 - Write single MATLAB statements to perform each of...Ch. 15.4 - For each of the following questions, write a...Ch. 15.5 - a. Create a variable named MTS containing the text...Ch. 15.6 - Assume a cell array named CA has three cells in a...Ch. 15.6 - Prob. 21CCCh. 15.7 - Create a structure array named Resistors...Ch. 15.7 - Use the data stored in MetalData to answer the...Ch. 15.7 - The structure array named Hdwr has the following...Ch. 15 - Which of the following are not valid MATLAB...Ch. 15 - Prob. 2ICACh. 15 - For the following questions, assume that the...Ch. 15 - For each calculation described below, write a...Ch. 15 - For each calculation described below, write a...Ch. 15 - For each of the vectors described below, write a...Ch. 15 - Assume the following vectors are already defined:...Ch. 15 - For each of the following sequences, write a...Ch. 15 - Modify the following statements so that they are...Ch. 15 - Assume you have three equal-length row vectors....Ch. 15 - Write the MATLAB code necessary to create the...Ch. 15 - For each of the following problems, write a single...Ch. 15 - Assume you have two equal-length row vectors IV1...Ch. 15 - Write the MATLAB code necessary to create the...Ch. 15 - Assuming t = [9 10; 11 12] and v = [2 4;6 8;10 12]...Ch. 15 - Determine solutions to the following problems a....Ch. 15 - For each of the following problems except part...Ch. 15 - Assume you have an N M matrix named Gonzo For...Ch. 15 - For each of the following tasks. write a single...Ch. 15 - Determine the contents of the variables created or...Ch. 15 - For each of the following tasks, write a single...Ch. 15 - For each of the following problems, write a single...Ch. 15 - Each of the following questions contains a...Ch. 15 - Prob. 25ICACh. 15 - Assume a cell array CA1 has already been defined....Ch. 15 - Prob. 27ICACh. 15 - You are setting up a structure array named client...Ch. 15 - You have three temperature values [C] stored in...Ch. 15 - You have N temperature values [C] stored in the...Ch. 15 - Assume four row vectors named Prod10, Prod11,...Ch. 15 - You have a 2 N matrix named GasData. The first...Ch. 15 - Assume the matrix M99 has at least two rows and at...Ch. 15 - Assume a matrix named Prod contains data on...Ch. 15 - You are studying the effects of climate change on...Ch. 15 - You are studying the properties of tiny spheres...Ch. 15 - Assume you have a four-column matrix named...Ch. 15 - One very old method of sending secret messages is...Ch. 15 - Prob. 13RQCh. 15 - Prob. 15RQCh. 15 - Refer to the specifications for Review Questions...
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
- 4. The press in Figure 4 is used to crush a small rock at E. The press comprises three links ABC, CDE and BG, pinned to each other at B and C, and to the ground at D and G. Sketch free-body diagrams of each component and hence determine the force exerted on the rock when a vertical force F = 400 N is applied at A. 210 80 80 C F 200 B 80 E 60% -O-D G All dimensions in mm. Figure 4arrow_forward2. Figure 2 shows a device for lifting bricks and concrete blocks. It comprises two compo- nents ABC and BD, with a frictionless pin at B. Determine the minimum coefficient of friction required at A and D if the device is to work satisfactorily. W all dimensions in inches Figure 2 Darrow_forward1. The shaft AD in Figure 1 supports two pulleys at B and C of radius 200 mm and 250 mm respectively. The shaft is supported in frictionless bearings at A and D and is rotating clockwise (when viewed from the right) at a constant speed of 300 rpm. Only bearing A can support thrust. The tensions T₁ = 200 N, T₂ = 400 N, and T3 = 300 N. The distances AB = 120 mm, BC = 150 mm, and CD120 mm. Find the tension 74 and the reaction forces at the bearings. A T fo Figure 1arrow_forward
- 5. Figure 5 shows a two-dimensional idealization of the front suspension system for a car. During cornering, the road exerts a vertical force of 5 kN and a leftward horizontal force of 1.2 kN on the tire, which is of 510 mm diameter. Draw free-body diagrams of each component and determine the forces transmitted between them. 250 A -320 B 170 D 170 -220-220- all dimensions in mm. Figure 5arrow_forward8. The force F in Figure 8 is 120 lb and the angle 0 = 25°. Find the axial force N, the shear force V and the bending moment M at the point K which is midway between B and C and illustrate their directions on a sketch of the segment KCD. E -0 B K అ D H 7 A- all dimensions in inches Figure 8 Ꮎ G Farrow_forward6. Determine the coordinates x, y of the centroid of the area shaded in Figure 6. y y=x³ Figure 6 3arrow_forward
- 3. Use the method of sections to determine the forces in the members BD, CD, CE in the struc- ture of Figure 3. A B D 4 kN 6 kN all dimensions in meters. Figure 3arrow_forwardA pipeline engineer is considering alternative natural gas pipeline routings. The first route is mostly over land and the second is primarily undersea. Both pipelines will need some valve and fitting replacements in year 25. Cost data for each route is shown in Table P2.21. Notice that the undersea route has a higher initial cost due to higher installation costs and extra corrosion protection for the pipeline. However, the undersea route has cheaper security and maintenance costs which substantially reduces annual costs. The MARR for the project is 15%. Determine which route should be pursued based on a present worth analysis.arrow_forwardThe state of stress at a point is σ = -4.00 kpsi, σy Tyz = 8.000 kpsi, and T₂ = -14.00 kpsi. What is the maximum shear stress for this case? The maximum shear stress is kpsi. = 16.00 kpsi, σ = -14.00 kpsi, Try = 11.00 kpsi,arrow_forward
- The initial cost of a proposed heat recovery system is $375,000. The annual operation andmaintenance costs are projected to be $12,000. The salvage value of the system at the end of itsuseful life (projected to be 30 years) is $60,000. The annual savings in fuel costs resulting fromthis system are estimated to be $55,000 per year.a. Assuming annual compounding, determine the rate of return for this heat recovery system.b. If management has set the MARR to be 15% for a heat recovery system like this, what is themaximum initial cost that can be spent on the system (assuming that all other costs and incomesare the same)?arrow_forwardThe initial cost of a machine for a production facility is $225,000. The machine is expected tolast for 10 years with no salvage value. The company’s tax rate is 49% and SLD is used todepreciate the machine. For this type of depreciation, the tax life of the machine is considered 8years and its salvage value is $5,000. The after-tax rate of return is 14.3%. Determine the uniformannual before-tax cash flow.arrow_forwardThree alternatives are being considered for an air cleaning system. All three systems have a lifeof 10 years with no salvage value. System A has an initial cost of $29,000. During the first fiveyears of operation, the annual costs to operate system A are $5,000. During the second five years,the annual cost of system A increases to $16,000. System B has an initial cost of $43,000. Theannual cost to operate system B is $4,000, however, after the first year, this cost increases by$1,600 per year. System C has an initial cost of $58,000 with an annual cost of $2,400. System Crequires two upgrades: one during year 4 which costs $6,000, and the other during year 8 whichcosts $3,000. The MARR for this project is 17%. Determine which air cleaning system should beinstalled based on an economic analysis.arrow_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
![Text book image](https://www.bartleby.com/isbn_cover_images/9780190698614/9780190698614_smallCoverImage.gif)
Elements Of Electromagnetics
Mechanical Engineering
ISBN:9780190698614
Author:Sadiku, Matthew N. O.
Publisher:Oxford University Press
![Text book image](https://www.bartleby.com/isbn_cover_images/9780134319650/9780134319650_smallCoverImage.gif)
Mechanics of Materials (10th Edition)
Mechanical Engineering
ISBN:9780134319650
Author:Russell C. Hibbeler
Publisher:PEARSON
![Text book image](https://www.bartleby.com/isbn_cover_images/9781259822674/9781259822674_smallCoverImage.gif)
Thermodynamics: An Engineering Approach
Mechanical Engineering
ISBN:9781259822674
Author:Yunus A. Cengel Dr., Michael A. Boles
Publisher:McGraw-Hill Education
![Text book image](https://www.bartleby.com/isbn_cover_images/9781118170519/9781118170519_smallCoverImage.gif)
Control Systems Engineering
Mechanical Engineering
ISBN:9781118170519
Author:Norman S. Nise
Publisher:WILEY
![Text book image](https://www.bartleby.com/isbn_cover_images/9781337093347/9781337093347_smallCoverImage.gif)
Mechanics of Materials (MindTap Course List)
Mechanical Engineering
ISBN:9781337093347
Author:Barry J. Goodno, James M. Gere
Publisher:Cengage Learning
![Text book image](https://www.bartleby.com/isbn_cover_images/9781118807330/9781118807330_smallCoverImage.gif)
Engineering Mechanics: Statics
Mechanical Engineering
ISBN:9781118807330
Author:James L. Meriam, L. G. Kraige, J. N. Bolton
Publisher:WILEY
Properties of Fluids: The Basics; Author: Swanson Flo;https://www.youtube.com/watch?v=TgD3nEO1iCA;License: Standard YouTube License, CC-BY
Fluid Mechanics-Lecture-1_Introduction & Basic Concepts; Author: OOkul - UPSC & SSC Exams;https://www.youtube.com/watch?v=6bZodDnmE0o;License: Standard Youtube License