summaryrefslogtreecommitdiff
path: root/965/CH2/EX2.25/25.sci
blob: 6e23da513b3af06e72406d502232ec0803e4542a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
clc;
clear all;
disp("heat flux calculation")
La=0.2;//m thickness of chrome bricks
Lb=0.1;//m thickness of kaolin bricks
Lc=0.1;//m thickness of masonary bricks
kA=1.25;//W/(m*C) 
kB=0.074;//W/(m*C) 
kC=0.555;//W/(m*C) 
hhf=74;//W/(m^2*C) 
thf=1670;// degree C temperature of hot fluid
t4=70;// temperature of outer surafce
q= (thf-t4)/(1/hhf+La/kA+Lb/kB+Lc/kC); 
disp("W/m^2",q,"rate of heat flow per m^2 = ")
//q=(thf-t1)/(1/hhf)=(t1-t2)/(La/kA)=(t2-t3)/(Lb/kB)
t1=thf-q/hhf;
disp ("degree C",t1,"temperature t1 = ")
t2=t1-q*La/kA;
disp ("degree C",t2,"temperature t2 = ")
t3=t2-q*Lb/kB;
disp ("degree C",t3,"temperature t3 = ")