summaryrefslogtreecommitdiff
path: root/1364/CH14/EX14.4.1/14_4_1.sce
diff options
context:
space:
mode:
Diffstat (limited to '1364/CH14/EX14.4.1/14_4_1.sce')
-rwxr-xr-x1364/CH14/EX14.4.1/14_4_1.sce13
1 files changed, 13 insertions, 0 deletions
diff --git a/1364/CH14/EX14.4.1/14_4_1.sce b/1364/CH14/EX14.4.1/14_4_1.sce
new file mode 100755
index 000000000..eb8d7990f
--- /dev/null
+++ b/1364/CH14/EX14.4.1/14_4_1.sce
@@ -0,0 +1,13 @@
+clc
+//initialisation of variables
+N= 1450 //rev/min
+Q= 500 //gal/min
+H= 60 //ft
+D= 10.25 //in
+//CALCULATIONS
+Ns= N*sqrt(Q)/H^0.75
+h= (N*sqrt(Q/2)/Ns)^(4/3)
+d= D*sqrt(h/H)
+//RESULTS
+printf (' head= %.f ft',h)
+printf (' \n size of the pump= %.2f in',d)