summaryrefslogtreecommitdiff
path: root/2021/CH18/EX18.6/EX18_6.sce
diff options
context:
space:
mode:
Diffstat (limited to '2021/CH18/EX18.6/EX18_6.sce')
-rwxr-xr-x2021/CH18/EX18.6/EX18_6.sce11
1 files changed, 11 insertions, 0 deletions
diff --git a/2021/CH18/EX18.6/EX18_6.sce b/2021/CH18/EX18.6/EX18_6.sce
new file mode 100755
index 000000000..f05b19f78
--- /dev/null
+++ b/2021/CH18/EX18.6/EX18_6.sce
@@ -0,0 +1,11 @@
+//Finding of Discharge, Width
+//Given
+D=1.2;
+D1=0.6;
+Vf=1.8;
+B=.20;
+//To Find
+Q=(%pi*D*B*Vf);
+B1=((D*B)/D1)*100;
+disp("Discharge ="+string(Q)+" m^3/sec");
+disp("Width ="+string(B1)+" centimeter");