diff options
Diffstat (limited to '2021/CH18/EX18.1/EX18_1.sce')
-rwxr-xr-x | 2021/CH18/EX18.1/EX18_1.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/2021/CH18/EX18.1/EX18_1.sce b/2021/CH18/EX18.1/EX18_1.sce new file mode 100755 index 000000000..88b465538 --- /dev/null +++ b/2021/CH18/EX18.1/EX18_1.sce @@ -0,0 +1,19 @@ +//Finding of Power delivered , Efficiency
+//Given
+u=35;
+Q=1;
+theta=10;
+H=270;
+Cv=0.98;
+g=9.81;
+rho=1000;
+//To Find
+V=Cv*sqrt(2*g*H);
+Vr=V-u;
+Vw1=Vr*cos(%pi/18)-u;
+W=rho*(Q*(V+Vw1)*u);
+P=W/1000;
+E=(2*(V+Vw1)*u)/V^2;
+E1=E*100;
+disp("Power delivered ="+string(P)+" Kilo watts");
+disp("Hydraulic Efficiency ="+string(E1)+" percentage");
|