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 /3814/CH6/EX6.2/Ex6_2.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 '3814/CH6/EX6.2/Ex6_2.sce')
-rw-r--r-- | 3814/CH6/EX6.2/Ex6_2.sce | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/3814/CH6/EX6.2/Ex6_2.sce b/3814/CH6/EX6.2/Ex6_2.sce new file mode 100644 index 000000000..83caba697 --- /dev/null +++ b/3814/CH6/EX6.2/Ex6_2.sce @@ -0,0 +1,31 @@ +// determine head and power output if angular velocity from fig2=
+// ex 6.2 pgno.142
+clc
+r1=300 // mm inlet radius
+r2=150 //mm outer radius
+Q=0.05 // m3/s flow rate
+a1=30 //degree inlet guide blade
+a2=80// degree angle
+v1=6 // m/s velocity
+v2=3//m/s velocity
+t=25 // angular velocity
+n=0.9
+n1=0.8
+g=9.8 //
+gammam=9800 // constant gammma
+u1=(r1/1000)*t // velocity
+u2=(r2/1000)*t
+mprintf('\n u1 = %f m/s',u1)
+mprintf(' \n u2 = %f m/s',u2)
+Vlw= v1*cosd(a1)
+mprintf('\n Vlw = v1cos a1 = %f m/s',Vlw)
+V2w=v2*cosd(a2)
+mprintf(' \n V2w = V2cos a2 = %f m/s',V2w)
+E=((u1*Vlw)-(u2*V2w))/(g) // Eduler's head
+mprintf('\n E = %f m',E)
+H=E/n // head
+mprintf('\n H = %f m',H)
+pin=(gammam*Q*H)/1000 // power input
+mprintf('\n Power input= gQH = %f W',pin)
+pout=pin*n1 // power out
+mprintf('\n power output =effiency*pin =%f W',pout)
|