diff options
Diffstat (limited to '2021/CH10/EX10.23/EX10_23.sce')
-rwxr-xr-x | 2021/CH10/EX10.23/EX10_23.sce | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/2021/CH10/EX10.23/EX10_23.sce b/2021/CH10/EX10.23/EX10_23.sce new file mode 100755 index 000000000..8317e1869 --- /dev/null +++ b/2021/CH10/EX10.23/EX10_23.sce @@ -0,0 +1,10 @@ +//Finding of discharge at section-1
+//Given
+T=30;
+dy=0.06;
+dt=3600;
+dx=1000;
+q2=35;
+//To Find
+q1=q2+((T*dy)/dt)*dx;
+disp("Discharge at section-1 ="+string(q1)+" m^3/sec");
|