summaryrefslogtreecommitdiff
path: root/1364/CH9/EX9.6.1/9_6_1.sce
blob: 00341732f22abf3812f012fc2c3e78448397a3ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
clc
//initialisation of variables
s= 0.8
l= 1//ft
r= 8
//CALCULATIONS
Hw= (s/r)^(2/3)*l
Qw= 1.5*Hw^(2.5)
R= (1/Hw)^2.5
Q= Qw*R
//RESULTS
printf (' depth of water= %.3f ft',Hw)
printf (' \n rate of flow of fluid= %.1f ft^3/sec',Q)