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 /1955/CH5/EX5.2 | |
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 '1955/CH5/EX5.2')
-rwxr-xr-x | 1955/CH5/EX5.2/example2.sce | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/1955/CH5/EX5.2/example2.sce b/1955/CH5/EX5.2/example2.sce new file mode 100755 index 000000000..b175d73d3 --- /dev/null +++ b/1955/CH5/EX5.2/example2.sce @@ -0,0 +1,36 @@ +clc
+clear
+//input data
+U=300//Blade speed in m/s
+a=20//Nozzle angle in degree
+dhs=473//Isentropic heat drop in kJ/kg
+Nn=0.85//Nozzle efficiency
+W2W1=0.7//Blade velocity coefficient
+nM=0.9//Mechanical efficiency
+
+//initial calculations
+dh=Nn*dhs//Useful heat drop converted into kinetic energy in kJ/kg
+C1=(2*1000*dh)^(1/2)//Velocity of steam at exit from nozzle in m/s
+
+printf('The scale of the velocity vector diagram is 1:100\n\nThe following values are obtained from the velocity vector diagram')
+
+Ca1=310//Inlet axial velocity in m/s
+Ca2=210//Exit axial velocity in m/s
+Wx1=550//Inlet whirl velocity in m/s
+Wx2=380//Exit whirl velocity in m/s
+W1=620//inlet Blade velocity in m/s
+
+//calculations
+W2=W2W1*W1//Exit bladde velocity in m/s
+AT=Ca1-Ca2//Axial thrust in N/kg
+Wm=U*(Wx1+Wx2)*10^-3//Work developed per kg of steam/sec in kW/(kg/s)
+P=Wm*nM//Power developed per kg of steam/sec in kW/(kg/s)
+m=3600/P//Steam rate per kW.hr in kg
+Ndia=((U*(Wx1+Wx2))/((C1^2)/2))//Diagram or blade efficiency
+MNdia=(sind(90-a))^(2)//Maximum blade efficiency under optimum conditions
+Ns1=Wm/dhs//Stage efficiency
+Ns2=Ndia*Nn//Stage efficiency in other method
+E=(((W1^2)-(W2^2))/2)*10^-3//Energy loss in blade friction in kJ/kg
+
+//output
+printf('\n\n(a)Axial thrust is %3i N/kg\n(b)\n Work developed per kg of steam/sec is %3i kW/(kg/s)\n Power developed per kg of steam/sec is %3.1f kW/(kg/s)\n Steam rate per kW.hr is %3.1f kg\n(c)\n Diagram or blade efficiency is %3.3f\n Maximum blade efficiency under optimum conditions is %3.3f\n Stage efficiency is %3.4f\n(d)Energy loss in blade friction is %3.3f kJ/kg',AT,Wm,P,m,Ndia,MNdia,Ns1,E)
|