summaryrefslogtreecommitdiff
path: root/3751/CH11/EX11.2/Ex11_2.sce
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.2/Ex11_2.sce
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.2/Ex11_2.sce')
-rw-r--r--3751/CH11/EX11.2/Ex11_2.sce36
1 files changed, 36 insertions, 0 deletions
diff --git a/3751/CH11/EX11.2/Ex11_2.sce b/3751/CH11/EX11.2/Ex11_2.sce
new file mode 100644
index 000000000..570404a98
--- /dev/null
+++ b/3751/CH11/EX11.2/Ex11_2.sce
@@ -0,0 +1,36 @@
+//Fluid Systems - By - Shiv Kumar
+//Chapter 11- Centrifugal Pumps
+//Example 11.2
+//To Find the Vane Angle at Outer Periphery of the Impeller.
+
+ clc
+ clear
+
+//Given Data:-
+ N=1470; //Speed, rpm
+ Q=100; //Discharge, litres/s
+ Hm=24; //manometric Head, m
+ Do=240; // Diameter of Impeller at Outlet, mm
+ b_o=50; //Width of Impeller at Outlet, mm
+ eta_man=76/100; //Manometric EEfficiency
+
+
+//Data Used:-
+ g=9.81; //Acceleration due to gravity, m/s^2
+
+
+//Computations:-
+ Q=Q/1000; //m^3/s
+ Do=Do/1000; //m
+ b_o=b_o/1000; //m
+
+ uo=%pi*Do*N/60; //m/s
+ Vwo=g*Hm/(uo*eta_man); //m/s
+ Vfo=Q/(%pi*Do*b_o); //m/s
+ //From Outlet Velocity Triangle (OVT),
+ beta_o=atand(Vfo/(uo-Vwo)); //degrees
+
+//Result:-
+ printf("The Vane Angle at Outer Periphery of Impeller, beta_o=%.2f Degrees \n",beta_o) //The answer vary due to round off error
+
+