summaryrefslogtreecommitdiff
path: root/1073/CH4/EX4.17/4_17.sce
blob: d73d598fe7761ecbb6bc4e0e7f949aaf622dbd4e (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
clc;
clear;
//Example 4.17
sigma=5.67*10^-8    //[W/(sq m.K^4)]
e=0.8
T1=673;  //[K]
T2=303;  //[K]
Do=200   //[mm]
Do=Do/1000  //[m]
L=1      //Let [m]
A1=%pi*Do*L //[m^2/m]
//CAse 1: Pipe to surrundings

Q1=e*A1*sigma*(T1^4-T2^4)   //[W/m]
Q1=5600     //Approximated
//Q1=5600         //[W/m] approximated in book for calculation purpose
//Concentric cylinders
e1=0.8;
e2=0.91;
D1=0.2  //[m]
D2=0.4  //[m]
Q2=sigma*0.628*(T1^4-T2^4)/((1/e1)+(D1/D2)*((1/e2)-1))   //[W/m] length
Red=Q1-Q2   //Reduction in heat loss

printf("\nDue to thermal radiaiton,Loss of heat to surrounding is %d W/m\n",round(Q1));
printf("\nWhen pipe is enclosed in 1 400 mm diameter brick conduit,Loss of heat is %d W/m\n",round(Q2));
printf("\n Reduction in heat loss is %d W/m\n",round(Red));