diff options
Diffstat (limited to '1073/CH2/EX2.32/2_32.sce')
-rwxr-xr-x | 1073/CH2/EX2.32/2_32.sce | 22 |
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); |