summaryrefslogtreecommitdiff
path: root/1073/CH2/EX2.32
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.32
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.32')
-rwxr-xr-x1073/CH2/EX2.32/2_32.sce22
1 files changed, 22 insertions, 0 deletions
diff --git a/1073/CH2/EX2.32/2_32.sce b/1073/CH2/EX2.32/2_32.sce
new file mode 100755
index 000000000..85617e2c1
--- /dev/null
+++ b/1073/CH2/EX2.32/2_32.sce
@@ -0,0 +1,22 @@
+
+clear;
+clc;
+//Example 2.32
+//Determine: i-Heat flux across the layers and
+//ii-Interfacial temperature between the layers
+
+//Given
+T1=798 //K
+T2=298 //K
+x1=0.02 //m
+x2=x1 //m
+k1=60 //W/m.K
+k2=0.1 //W/m.K
+hi=100 //W/sq m.K
+h0=25 //W/sq m.K
+Q_by_A=(T1-T2)/(1/hi+x1/k1+x2/k2+1/h0); //W/sq m
+printf("Ans (i)- Heat flux across the layers is %f W/sq m",Q_by_A);
+//If Tis the interfacial temperature between steel plate and insulating material
+//Q_by_A=(T-T2)/(x2/k2+1/h0)
+T=Q_by_A*(x2/k2+1/h0)+T2
+printf("Ans-(ii)-Interfacial temperature between layers is %f K (%f degree C)",T,T-273);