summaryrefslogtreecommitdiff
path: root/1073/CH3/EX3.39/3_39.sce
blob: 972a7ad88714ea43e986c1e540b067bf26ab533e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
clc;
clear;
//Example 3.39
k=0.035; //[W/(m.K)]
Npr=0.684   ;//Prandtl number
Beta=2.42*10^-3; //[K^-1]
v=27.8*10^-6;    //[m^2/s]
Tw=533;  //[K]
T_inf=363  ;    //[K]
dT=Tw-T_inf //[K]
D=0.01  ;//[m]
g=9.81; //[m/s^2]
Nra=(g*Beta*dT*(D^3))/(v^2)
//For this <10^5,we have for sphere
A=4*%pi*(D/2)^2 //Area of sphere in [m^2]
Nnu=(2+0.43*Nra^(1.0/4.0))//Nusslet number
h=Nnu*k/D   //W/(m^2.K)
Q=h*A*dT    //[W]
printf("\nRate of heat loss is %f W",Q)