summaryrefslogtreecommitdiff
path: root/2471/CH4/EX4.2
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.2
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.2')
-rwxr-xr-x2471/CH4/EX4.2/Ex4_2.sce17
1 files changed, 17 insertions, 0 deletions
diff --git a/2471/CH4/EX4.2/Ex4_2.sce b/2471/CH4/EX4.2/Ex4_2.sce
new file mode 100755
index 000000000..9b91875f2
--- /dev/null
+++ b/2471/CH4/EX4.2/Ex4_2.sce
@@ -0,0 +1,17 @@
+clear ;
+clc;
+// Example 4.2
+printf('Example 4.2\n\n');
+printf('Page No. 89\n\n');
+// given
+K1 = 45// Thermal Conductivity of mild steel in W/m-K
+K2 = 0.040// Thermal Conductivity of insulaton in W/m-K
+L1 = 5*10^-3;// thickness of mild steel in metre
+L2 = 50*10^-3;// thickness of insulation in metre
+T1 = 100;// in degree celcius
+T2 = 25;// in degree celcius
+A = 1;// Area in m^2
+
+//By Fourier law of conduction
+Q = (((T1-T2)/((L1/(K1*A))+(L2/(K2*A)))))// in Watts
+printf('The rate of conductive heat transfer is %.0f W \n',Q)