diff options
Diffstat (limited to '3785/CH6/EX6.7/Ex6_7.sce')
-rw-r--r-- | 3785/CH6/EX6.7/Ex6_7.sce | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/3785/CH6/EX6.7/Ex6_7.sce b/3785/CH6/EX6.7/Ex6_7.sce new file mode 100644 index 000000000..36a6aa120 --- /dev/null +++ b/3785/CH6/EX6.7/Ex6_7.sce @@ -0,0 +1,8 @@ +// Example 6_7
+clc;funcprot(0);
+// Solution
+// P_out=(3*%pi*mu*W*omega^2*D^3)/(16*h);
+// P_in=(5*%pi*mu*W*omega^2*D^3)/(8*h);
+// n_p=P_out/P_in;
+n_p=(((3*%pi)/16)/((5*%pi)/8))*100;//The pump efficiency in %
+printf("\nThe pump efficiency,n_p=%0.0f percentage",n_p);
|