diff options
Diffstat (limited to '2021/CH20/EX20.1/EX20_1.sce')
-rwxr-xr-x | 2021/CH20/EX20.1/EX20_1.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/2021/CH20/EX20.1/EX20_1.sce b/2021/CH20/EX20.1/EX20_1.sce new file mode 100755 index 000000000..70af83e46 --- /dev/null +++ b/2021/CH20/EX20.1/EX20_1.sce @@ -0,0 +1,16 @@ +//Finding of theoretical discharge ,Coefficient of Discharge ,Slip
+//Given
+N=30;
+Qac=0.012;
+d=0.25;
+L=0.5;
+//To Find
+A=(%pi/4)*d^2;
+Qth=(A*L*N)/60;
+S=Qth-Qac;
+Cd=Qac/Qth;
+S1=((Qth-Qac)/Qth)*100;
+disp("Theoretical Discharge ="+string(Qth)+" m^3/sec");
+disp("Co efficient of Discharge ="+string(Cd)+" No Units");
+disp("Slip ="+string(S)+" m^3/sec");
+disp("Percentage Slip ="+string(S1)+" No Units");
|