summaryrefslogtreecommitdiff
path: root/2471/CH4/EX4.10/Ex4_10.sce
blob: 031e02de96ef83a07ec9e38389f816c19be1c6d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
clear ;
clc;
// Example 4.10
printf('Example 4.10\n\n');
printf('Page No. 106\n\n');

// given
T1 = 150;// Surface temperature in degree celcius
T2 = 20;// Ambient temperature in degree celcius
d = 0.100; //Outside diametr of pipe in m
h = 10;// Outside film coefficient in W/m^2-K
t = 25*10^-3;// thickness of insulation in m
K = 0.040;// Thermal conductivity of insulation in W/m-K

r2 = d/2;//in m
r1 = r2+t;// in m
Q = ((T1-T2)/((1/(2*%pi*r1*h))+(log(r1/r2)/(2*%pi*K))));// in W/m
printf('The heat loss per unit length is %.0f W/m',Q)