summaryrefslogtreecommitdiff
path: root/629/CH15/EX15.5/example15_5.sce
blob: f9add62ed83058cfa11a5f0075bd9d818a182f13 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
clear
clc
//Example 15.5 DISCHARGE USING CHEZY EQUATION
n=0.015;
l=10; //width[ft]
y=6; //depth[ft]
Rh=l*y/(l+2*y)
So=0.0016; //channel slope
A=l*y //area[ft^2]
//Discharge
Q=1.49*A*Rh^(2/3)*So^(1/2)/n //[cfs]
printf("\nThe discharge in the concrete channel = %.f cfs.\n",Q)