summaryrefslogtreecommitdiff
path: root/1073/CH3/EX3.5/3_5.sce
blob: 554a2e09a93c1a7d3bd7a3e4e71b255c844bd4c7 (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

clc;
clear;
//Example 3.5
//Given
mu=3.9*10^-4    //Kinematic viscosity in sq m/s
k=36.4*10^-3    //Thermal conductivity in W/(m.K)
Npr=0.69
u_inf=8    //[m/s]
L=1    //Lenght of plate in [m]
Nre_l=u_inf*L/mu 
//Since Nre_l is less than 3*10^5 ,the flow is laminar over the entire length of plate
Nnu=0.664*sqrt(Nre_l)*Npr^(1.0/3.0)    //=hL/k

h=k*Nnu/L    //w/sq m.K
h=3.06      //Approximation   [W/sq m.K]
T_inf=523    //[K]
Tw=351    //[K]
W=0.3    //Width of plate [m]
A=W*L    //Area in [sq m]
Q=h*A*(T_inf-Tw)    // Rate of heat removal from one side in [W]
printf("\nRate of heat removal is %f W\n",Q)
//from two side:
Q=2*Q    //[W]
printf("\n %f W heat should be removed continously from the plate",Q);