summaryrefslogtreecommitdiff
path: root/2021/CH10/EX10.2/EX10_2.sce
diff options
context:
space:
mode:
Diffstat (limited to '2021/CH10/EX10.2/EX10_2.sce')
-rwxr-xr-x2021/CH10/EX10.2/EX10_2.sce14
1 files changed, 14 insertions, 0 deletions
diff --git a/2021/CH10/EX10.2/EX10_2.sce b/2021/CH10/EX10.2/EX10_2.sce
new file mode 100755
index 000000000..003c6f0f5
--- /dev/null
+++ b/2021/CH10/EX10.2/EX10_2.sce
@@ -0,0 +1,14 @@
+//Finding of bed slope and conveyance of channel
+//Given
+q=0.15;
+B=.70;
+y=.40;
+C=60;
+A=B*y;
+P=B+(2*y);
+R=(A/P);
+//To Find
+sb=((q^2)*(P))/((A^3)*C^2)
+K=A*C*sqrt(R);
+disp("Bed of slope ="+string(sb)+" no units");
+disp("conveyance of channel ="+string(K)+" m^3/sec");