summaryrefslogtreecommitdiff
path: root/629/CH14/EX14.4
diff options
context:
space:
mode:
Diffstat (limited to '629/CH14/EX14.4')
-rw-r--r--629/CH14/EX14.4/ex14_4.txt5
-rw-r--r--629/CH14/EX14.4/example14_4.sce13
2 files changed, 18 insertions, 0 deletions
diff --git a/629/CH14/EX14.4/ex14_4.txt b/629/CH14/EX14.4/ex14_4.txt
new file mode 100644
index 000000000..dd9109e21
--- /dev/null
+++ b/629/CH14/EX14.4/ex14_4.txt
@@ -0,0 +1,5 @@
+
+The speed at which the pump should be operated = 1961 rpm.
+
+The discharge for the given conditions = 0.234 m^3/s.
+ \ No newline at end of file
diff --git a/629/CH14/EX14.4/example14_4.sce b/629/CH14/EX14.4/example14_4.sce
new file mode 100644
index 000000000..aa5223e69
--- /dev/null
+++ b/629/CH14/EX14.4/example14_4.sce
@@ -0,0 +1,13 @@
+clear
+clc
+//Example 14.4 SPEED AND DISCHARGE OF CENTRIFUGAL PUMP
+N1=2133.5; //speed[rpm]
+H1=90; //[m]
+H2=76; //[m]
+//(g.H/n.D^2)_N1=(g.H/n.D^2)_N2
+N2=N1*(H2/H1)^(1/2) //[rpm]
+printf("\nThe speed at which the pump should be operated = %.f rpm.\n",N2)
+//(Q/n.D^3)_N1=(Q/n.D^3)_N2
+Q1=0.255; //discharge[m^3/s]
+Q2=Q1*N2/N1 //[m^3/s]
+printf("\nThe discharge for the given conditions = %.3f m^3/s.\n",Q2) \ No newline at end of file