diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3751/CH11/EX11.26/Ex11_26.sce | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-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.26/Ex11_26.sce')
-rw-r--r-- | 3751/CH11/EX11.26/Ex11_26.sce | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/3751/CH11/EX11.26/Ex11_26.sce b/3751/CH11/EX11.26/Ex11_26.sce new file mode 100644 index 000000000..742e16626 --- /dev/null +++ b/3751/CH11/EX11.26/Ex11_26.sce @@ -0,0 +1,37 @@ +//Fluid Systems - By - Shiv Kumar +//Chapter 11 - Centrifugal Pumps +//Example 11.26 +//To Calculate the Specific Speed of Pump and the Power Input and Find the Head, Discharge and Power required at 900 rpm. + + clc + clear + +//Given Data:- + + N=1500; //Speed, rpm + Q=0.2; //Discharge, m^3/s + H=15; //Head, m + eta_o=0.68; //Overall Efficiency + N2=900; //Speed, rpm + + //Data Used:- + rho=1000; //Density of water, kg/m^3 + g=9.81; //Acceleratio due to gravity, m/s^2 + + +//Computations:- + Ns=N*Q^(1/2)/(H^(3/4)); //Specific Speed of Pump, SI Units + P=rho*g*Q*H /eta_o; //Power Input, W + + Q1=Q; H1=H; N1=N; P1=P; + Q2=Q1*(N2/N1); // m^3/s + H2=H1*(N2/N1)^2; //m + P2=P1*(N2/N1)^3; //W + +//Results:- + printf("Specific Speed of Pump, Ns=%.2f (SI Units)\n",Ns) + printf(" Power Input, P=%.2f W\n",P) + printf(" At 900 rpm (Condition 2)\n\t ") + printf(" Head, H2=%.1f m \n\t Discharge, Q2=%.2f m^3/s,\n\t Power required, P2=%.2f W",H2,Q2,P2) + + |