summaryrefslogtreecommitdiff
path: root/1752/CH7/EX7.12/exa_7_12.sce
blob: e99b97a70b00660e7a86cd49d7aa050407fcf891 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
//Exa 7.12
clc;
clear;
close;
//given data
T1=500;// in K
T2=300;// in K
sigma=5.67*10^-8;
A=2;// surface area of each plate in m^2
//(a) If the plates are perfectly black
F12=1;
q12=sigma*A*F12*(T1^4-T2^4);
disp(q12,"Radiation heat transfer between two black parellel plates in watt");

//(b) If the plates are gray surface
//in this case
F12=1;
//A1=A2, so
A1byA2=1
epsilon1=.4;
epsilon2=epsilon1;
//Fg12=1/(1/epsilon1+(1/epsilon2-1)*A1byA2);
Fg12=1/((1-epsilon1)/epsilon1 + 1/F12 + [(1-epsilon2)/epsilon2]*A1byA2);
q12=sigma*A*Fg12*(T1^4-T2^4);// in W
disp(q12,"Heat transfer rate in watt")