summaryrefslogtreecommitdiff
path: root/2510/CH6/EX6.14/Ex6_14.sce
blob: de7664586953de6e8613fcb056d68b3bd6245cba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
//Variable declaration:
u = 6.72*10**-4                     //Viscosity of water (lb/ft.s)
p = 62.4                            //Density of water (lb/ft^3)
//For laminar flow:
Re = 2100.0                        //Reynolds number
//From table 6.2, we have:
D = 2.067/12.0                      //Inside diameter of pipe (ft)

//Calculation:
V = Re*u/D/p                        //Average velocity of water flowing (ft/s)

//Result:
printf("The average velocity of water flowing is: %.2f ft/s.",V)