summaryrefslogtreecommitdiff
path: root/2471/CH4/EX4.3
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /2471/CH4/EX4.3
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 '2471/CH4/EX4.3')
-rwxr-xr-x2471/CH4/EX4.3/Ex4_3.sce27
1 files changed, 27 insertions, 0 deletions
diff --git a/2471/CH4/EX4.3/Ex4_3.sce b/2471/CH4/EX4.3/Ex4_3.sce
new file mode 100755
index 000000000..58b696245
--- /dev/null
+++ b/2471/CH4/EX4.3/Ex4_3.sce
@@ -0,0 +1,27 @@
+clear ;
+clc;
+// Example 4.3
+printf('Example 4.3\n\n');
+printf('Page No. 90\n\n');
+
+// given
+K1 = 26;// Thermal Conductivity of stainless steel in W/m-K
+K2 = 0.038;// Thermal Conductivity of insulaton in W/m-K
+L1 = 3*10^-3;// thickness of stainless steel in metre
+L2 = 40*10^-3;// thickness of insulation in metre
+T1 = 105;// in degree celcius
+T2 = 25;// in degree celcius
+L = 15;// Length of pipe in metre
+d1 = 50*10^-3;// Internal diameter of pipe in metre
+d2 = 56*10^-3;// External diameter of pipe in metre
+
+r1 = d1/2;// in metre
+r2 = d2/2;// in metre
+
+rm_p = ((r2-r1)/log(r2/r1));// logarithmic mean radius of pipe in m
+rm_i = (((r2+L2)-r2)/log((r2+L2)/r2));// logarithmic mean radius of insulation in m
+
+//By Fourier law of conduction
+Q = (((T1-T2)/((L1/(K1*2*%pi*rm_p))+(L2/(K2*2*%pi*rm_i)))));// in W/m
+Q_L = Q*L;
+printf('The rate of conductive heat transfer per 15 m length of pie is %3.2f W\n',Q_L)// Deviation in answer due to direct substitution