diff options
Diffstat (limited to '2021/CH6/EX6.8/EX6_8.sce')
-rwxr-xr-x | 2021/CH6/EX6.8/EX6_8.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/2021/CH6/EX6.8/EX6_8.sce b/2021/CH6/EX6.8/EX6_8.sce new file mode 100755 index 000000000..d25d934d5 --- /dev/null +++ b/2021/CH6/EX6.8/EX6_8.sce @@ -0,0 +1,12 @@ +//Fiding of Discharge
+//Given
+d1=0.3;
+pd=0.06;
+g=9.81;
+cv=0.98;
+//To Find
+vc=sqrt(2*g*pd)*cv;
+V=0.8*vc;
+A=(%pi/4)*d1^2;
+q=V*A;
+disp(" Discharge ="+string(q)+" m^3/sec");
|