summaryrefslogtreecommitdiff
path: root/405/CH8/EX8.2/8_2.sce
blob: 5a0a6e2727018c1c2683472a6cab5fd3fa180eb5 (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
26
27
28
clear;
clc;
printf("\t\t\tExample Number 8.2\n\n\n");
// heat transfer between black surfaces
// Example 8.2 (page no.-389-390) 
// solution

L = 1;// [m] length of black plate
W = 0.5;// [m] width of black plate
T1 = 1000+273;// [K] first plate temperature
T2 = 500+273;// [K] second plate temperature
sigma = 5.669*10^(-8);// [W/square meter K^(4)]
// the ratios for use with figure 8-12(page no.-386) are
Y_by_D = W/W;
X_by_D = L/W;
// so that 
F12 = 0.285;// radiation shape factor 
// the heat transfer is calculated from
q = sigma*L*W*F12*(T1^(4)-T2^(4));
printf("net radiant heat exchange between the two plates is %f kW",q/1000);