summaryrefslogtreecommitdiff
path: root/1073/CH2/EX2.31/2_31.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1073/CH2/EX2.31/2_31.sce
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '1073/CH2/EX2.31/2_31.sce')
-rwxr-xr-x1073/CH2/EX2.31/2_31.sce24
1 files changed, 24 insertions, 0 deletions
diff --git a/1073/CH2/EX2.31/2_31.sce b/1073/CH2/EX2.31/2_31.sce
new file mode 100755
index 000000000..0545e0ac5
--- /dev/null
+++ b/1073/CH2/EX2.31/2_31.sce
@@ -0,0 +1,24 @@
+
+clear;
+clc;
+//Example 2.31
+//Calculate:(a) Heat loss per unit length
+//(b)Reduction in heat loss
+//Given
+hi=10 //W/sq m.K
+h0=hi //W/sq.m.K
+r1=0.09 //m
+r2=0.12 //m
+t=0.05 //thickness of insulation [m]
+k1=40 //W/m.K
+k2=0.05 //W/m.K
+T1=473 //K
+T2=373 //K
+Q_by_L=2*%pi*(T1-T2)/(1/(r1*hi)+log(r2/r1)/k1+1/(r2*h0)); //W/m
+printf("Ans (a) Heat loss=%f W/m ",Q_by_L)
+//After addition of insulation:
+r3=r2+t; //radius of outer surface of insulaiton
+Q_by_L1=2*%pi*(T1-T2)/(1/(r1*hi)+log(r2/r2)/k1+log(r3/r2)/k2+1/(r3*h0)); // W
+Red=Q_by_L-Q_by_L1 //Reduciton in heat loss in [W/m]
+percent_red=(Red/Q_by_L)*100 //% Reduction in heat loss
+printf("Ans (b) Percent reduction in heat loss is %f percent",percent_red)