diff options
Diffstat (limited to '2021/CH17/EX17.11/EX17_11.sce')
-rwxr-xr-x | 2021/CH17/EX17.11/EX17_11.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/2021/CH17/EX17.11/EX17_11.sce b/2021/CH17/EX17.11/EX17_11.sce new file mode 100755 index 000000000..a57589ca3 --- /dev/null +++ b/2021/CH17/EX17.11/EX17_11.sce @@ -0,0 +1,18 @@ +//Finding of Propelling Force,Work Done ,Efficiency
+//Given
+Cv=0.97;
+g=9.81;
+H=6;
+rho=1000;
+u=4;
+d=0.15;
+//To Find
+V=Cv*sqrt(2*g*H);
+A=(%pi/4)*d^2;
+P=rho*A*(V+u)*V;
+W=P*u;
+E=(2*u*V)/(u+V)^2;
+E1=E*100;
+disp("Propelling Force ="+string(P)+" Newtons");
+disp("Work Done ="+string(W)+" N-m");
+disp("Efficiency ="+string(E1)+" Percentage");
|