summaryrefslogtreecommitdiff
path: root/581/CH8/EX8.3/Example8_3.sce
blob: 6afb5398a1a312f166c74a5b10a4fd1683dc91fb (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

clear;
clc;

printf("\t Example 8.3\n");

T1=323;     //wall temp.,K
T2=293;     //air temp.,K
H=0.3;      //height of wall, m
v1=16.45*10^-6;   // molecular diffusivity, m^2/s
b=1/T2;    // b=1/v*d(R*T/p)/dt=1/To   characterisation constant of thermal expansion of solid, K^-1
v2=2.318*10^-5;    //molecular diffusivity, m^2/s
Pr=0.71;   //prandtl no.

 Ral=9.8*b*(T1-T2)*H^3/((1.566*10^-5)*(2.203*10^-5));    // Rayleigh no.
 Nu=0.678*Ral^(0.25)*(Pr/(0.952+Pr))^(1/4);        // nusselt no.
 h=Nu*0.0267/H     // average heat transfer coefficient, W/m^2/K
 
 Nu1=0.68+0.67*((Ral)^(1/4)/(1+(0.492/Pr)^(9/16))^(4/9));    //churchill correlation 
 
 h1=Nu1*(0.0267/0.3)-.11;     //average heat transfer coefficient, W/m^2/K
 
 
printf("\t correlation average heat transfer coefficient is :%.2f W/m^2/K\n",h1)
printf("\t the prediction is therefore within 5 percent of corelation .we should use the latter result in preference to the theoritical one, although the difference is slight.")
  //end