blob: 422d0468f15de93f2d1565b056a872b7320da6ee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
//Finding of Bed slope of Trapezoidal channel
//Given
B=6;
y=3;
z=3/4;
q=30;
A=(B+(z*y))*y;
P=B+(2*y)*sqrt(1+z^2);
R=(A/P);
n=0.0158;
//To Find
sb=((q^2)*n^2)/((A^2)*(R^(4/3)));
disp("Bed slope of Trapezoidal channel ="+string(sb)+" no units");
|