diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /2417/CH11/EX11.15 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '2417/CH11/EX11.15')
-rwxr-xr-x | 2417/CH11/EX11.15/Ex11_15.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/2417/CH11/EX11.15/Ex11_15.sce b/2417/CH11/EX11.15/Ex11_15.sce new file mode 100755 index 000000000..ced8a28f2 --- /dev/null +++ b/2417/CH11/EX11.15/Ex11_15.sce @@ -0,0 +1,17 @@ +//scilab 5.4.1
+clear;
+clc;
+printf("\t\t\tProblem Number 11.15\n\n\n");
+// Chapter 11 : Heat Transfer
+// Problem 11.15 (page no. 574)
+// Solution
+
+D=3.5/12; //3.5 inch = 3.5/12 feet//Unit:ft //Outside diameter
+Ti=120; //Inside temperature //unit:fahrenheit
+To=70; //Outside temperature //unit:fahrenheit
+deltaT=Ti-To; //unit:fahrenheit //Change in temperature
+h=0.9; //Coefficient of heat transfer //Unit:Btu/(hr*ft^2*F)
+L=5; //Length //Unit:ft //From problem 11.10
+A=(%pi*D)*L; //Area //Unit:ft^2
+Q=h*A*deltaT; //The heat loss due to convection //Unit:Btu/hr //Newton's law of cooling
+printf("The heat loss due to convection is %f Btu/hr",Q);
|