diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /1775/CH4/EX4.16/Chapter4_Example16.sce | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '1775/CH4/EX4.16/Chapter4_Example16.sce')
-rwxr-xr-x | 1775/CH4/EX4.16/Chapter4_Example16.sce | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/1775/CH4/EX4.16/Chapter4_Example16.sce b/1775/CH4/EX4.16/Chapter4_Example16.sce new file mode 100755 index 000000000..c855331b3 --- /dev/null +++ b/1775/CH4/EX4.16/Chapter4_Example16.sce @@ -0,0 +1,29 @@ +//Chapter-4, Illustration 16, Page 205
+//Title: Steam Nozzles and Steam Turbines
+//=============================================================================
+clc
+clear
+
+//INPUT DATA
+C1=375;//Steam velocity in m/s
+a1=20;//Nozzle angle
+U=165;//Blade speed in m/s
+m=1;//Mass flow rate of steam in kg/s
+Wr=0.85;//Blade friction factor
+Ca1=130;//Axial velocity at inlet from the velocity triangle in m/s
+Ca2=Ca1;//Axial velocity at outlet in m/s
+W1=230;//Relative velocity at inlet from the velocity triangle in m/s
+Cx=320;//Change in whirl velocity from the velocity triangle in m/s
+
+//CALCULATIONS
+b2=41;//Blade angle at exit from the velocity triangle in degrees
+b1=34;//Blade angle at exit from the velocity triangle in degrees
+W=(m*Cx*U)/1000;//Power developed by turbine in kW
+
+//OUTPUT
+mprintf('Blade angles assumed are %3.0f degrees,%3.0f degrees \n Power developed by turbine is %3.1f kW',b1,b2,W)
+
+
+
+
+//==============================END OF PROGRAM=================================
|