The fact that most metals expand when heated and contract when cooled has serious implications when the dimensions of a piece of laboratory equipment are critical to an experiment. A typical aluminum bar that is w cm wide at 70 degrees Fahrenheit will be
x =w + (t – 70) x 10-4
cm wide at a nearby temperature t. Write a program that prompts the user for the standard width of a bar at 70 degrees Fahrenheit and for a tolerance for width variation. Then display a table like the one below indicating the bar’s width at temperatures from 60 degrees to 85 degrees in one degree intervals and marking with a star (*) the temperatures at which the bar’s width is within the tolerance.
Sample Output:
Ideal Bar Width (at 70 degrees F): 10.00000 cm
Tolerance for Width Variation: 0.00050
Temperature Width Within Tolerance
(degrees F) (cm)
60 9.99900
61 9.99910
62 9.99920
63 9.99930
64 9.99940
65 9.99950 *
66 9.99960 *
…………
85 10.0015
1
Expert's answer
2015-02-27T05:09:37-0500
MATLAB CODE% The fact that most metals expand when heated and contract when cooled has serious implications % when the dimensions of a piece of laboratory equipment are critical to an experiment. % A typical aluminum bar that is w cm wide at 70 degrees Fahrenheit will be % % x= w + (t – 70) x 10-4 % cm wide at a nearby temperature t. % Write a program that prompts the user for the standard width of a bar at 70 degrees % Fahrenheit and for a tolerance for width variation. Then display a table like the one below indicating % the bar’s width at temperatures from 60 degrees to 85 degrees in one degree intervals and marking with a star (*) % the temperatures at which the bar’s width is within the tolerance. % clc,close all,clear all t=60:85; w=9.99900:0.00010:10.0015; x=w+(t-70)*1e-4; [t' w' x']
Comments
Leave a comment