summaryrefslogtreecommitdiff
path: root/530/CH4/EX4.1/example_4_1.sce
blob: a345eb91ca0f9d45b2805c76002be27b2be2c595 (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
28
29
30
31
32
33
clear;
clc;

// A Textbook on HEAT TRANSFER by S P SUKHATME
// Chapter 4
// Principles of Fluid Flow

// Example 4.1
// Page 172
printf("Example 4.1, Page 172 \n\n");

L = 3 ; // Length, [m] 
D = 0.01 ; // ID, [m]
V = 0.2 ; // Average Velocity, [m/s]

// From Table A.1 at 10 degree C
rho=999.7 ; // [kg/m^3]
v=1.306 * 10^-6 ; // [m^2/s]

Re_D=0.2*0.01/(1.306*10^-6) ;

// this value is less than the transition Reynolds  number 2300.
// Hence flow is laminar. From eqn 4.4.19
f = 16/Re_D;

// from eqn 4.4.17
delta_p = 4*f*(L/D)*(rho*V^2)/2;

// since flow is laminar
V_max = 2*V;

printf("Pressure drop is %f Pa \n",delta_p);
printf(" Maximum velocity is %f m/s",V_max);