summaryrefslogtreecommitdiff
path: root/3751/CH11/EX11.24
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3751/CH11/EX11.24
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip
initial commit / add all books
Diffstat (limited to '3751/CH11/EX11.24')
-rw-r--r--3751/CH11/EX11.24/Ex11_24.sce31
1 files changed, 31 insertions, 0 deletions
diff --git a/3751/CH11/EX11.24/Ex11_24.sce b/3751/CH11/EX11.24/Ex11_24.sce
new file mode 100644
index 000000000..0023dda33
--- /dev/null
+++ b/3751/CH11/EX11.24/Ex11_24.sce
@@ -0,0 +1,31 @@
+//Fluid Systems - By - Shiv Kumar
+//Chapter 11 - Centrifugal Pumps
+//Example 11.24
+//To Find the the number of stages and Diameter of each Impeller of the similar multistage Pump.
+
+ clc
+ clear
+
+//Given Data:-
+ //For Single Stage Pump,
+ N1=2000; //Speed, rpm
+ D1=300; //Impeller Diameter, mm
+ Hm1=32; //Manometric Head, m
+ Q1=3; //Discharge, m^3/s
+
+ //For Multi Stage Pump,
+ N2=1600; //Speed, rpm
+ H_mT2=200; //Total Manometric Head, m
+ Q2=5; //Discharge, m^3/s
+
+
+//Computations:-
+ Hm2=Hm1*(N2/N1)*sqrt(Q2/Q1); //m
+ n=round(H_mT2/Hm2); //No. of stages
+ D2=D1*(N1/N2)*sqrt(Hm2/Hm1); //Diameter of Each Impeller, mm
+
+//Results:-
+ printf("Number of the Stages for the Multi stage Pump, n=%.f \n",n)
+ printf("Diameter of each Impeller for the Multi stage Pump, D2=%.2f mm\n",D2) //The answer vary due to round off error
+
+