diff options
Diffstat (limited to '2021/CH10/EX10.3/EX10_3.sce')
-rwxr-xr-x | 2021/CH10/EX10.3/EX10_3.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/2021/CH10/EX10.3/EX10_3.sce b/2021/CH10/EX10.3/EX10_3.sce new file mode 100755 index 000000000..b5c71c150 --- /dev/null +++ b/2021/CH10/EX10.3/EX10_3.sce @@ -0,0 +1,13 @@ +//Finding of discharge through trapezoidal channel
+//Given
+B=6;
+z=1/3;
+C=60;
+y=3;
+sb=1/5000;
+//To Find
+A=(B+z*y)*y;
+P=B+(2*y*sqrt(1+z^2));
+R=A/P;
+q=A*C*sqrt(R*sb);
+disp("Discharge through Trapezoidal channel ="+string(q)+" m^3/sec");
|