summaryrefslogtreecommitdiff
path: root/1358/CH3/EX3.13/Example313.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1358/CH3/EX3.13/Example313.sce
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '1358/CH3/EX3.13/Example313.sce')
-rwxr-xr-x1358/CH3/EX3.13/Example313.sce24
1 files changed, 24 insertions, 0 deletions
diff --git a/1358/CH3/EX3.13/Example313.sce b/1358/CH3/EX3.13/Example313.sce
new file mode 100755
index 000000000..29f59013f
--- /dev/null
+++ b/1358/CH3/EX3.13/Example313.sce
@@ -0,0 +1,24 @@
+// Display mode
+mode(0);
+// Display warning for floating point exception
+ieee(1);
+clear;
+clc;
+disp("Turbomachinery Design and Theory,Rama S. R. Gorla and Aijaz A. Khan, Chapter 3, Example 13")
+disp("Outer diameter, D2 = 1.4m")
+disp("Inner diameter, D1 = 0.7m")
+disp("Angle at which the water enters the vanes, alpha1 = 12 degrees")
+disp("Velocity of flow at inlet,")
+Cr2 = 2.8
+Cr1 = Cr2
+disp("As the vanes are radial at inlet and outlet end, the velocity of whirl at inlet and outlet will be zero, as shown in Fig. 3.21.")
+disp("Tangential velocity of wheel at inlet,")
+alpha1 = 12
+U1 = Cr1/tan(alpha1*%pi/180)
+D2 = 1.4
+N = 60*U1/(%pi*D2)
+disp("Let beta2 is the vane angle at outlet")
+D1 = 0.7
+U2 = %pi*D1*N/60
+disp("From Outlet triangle,")
+beta2 = atan(Cr2/U2)*180/%pi