summaryrefslogtreecommitdiff
path: root/2223/CH6/EX6.2
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /2223/CH6/EX6.2
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 '2223/CH6/EX6.2')
-rwxr-xr-x2223/CH6/EX6.2/Ex6_2.savbin0 -> 30048 bytes
-rwxr-xr-x2223/CH6/EX6.2/Ex6_2.sce23
2 files changed, 23 insertions, 0 deletions
diff --git a/2223/CH6/EX6.2/Ex6_2.sav b/2223/CH6/EX6.2/Ex6_2.sav
new file mode 100755
index 000000000..7fed43626
--- /dev/null
+++ b/2223/CH6/EX6.2/Ex6_2.sav
Binary files differ
diff --git a/2223/CH6/EX6.2/Ex6_2.sce b/2223/CH6/EX6.2/Ex6_2.sce
new file mode 100755
index 000000000..fabe4c998
--- /dev/null
+++ b/2223/CH6/EX6.2/Ex6_2.sce
@@ -0,0 +1,23 @@
+// scilab Code Exa 6.2 radially tipped Centrifugal blower 3000rpm
+P=150; // Power Output in kW
+N=3e3; // Speed in RPM
+d2=40/100; // outer diameter of the impeller in m
+d1=25/100; // inner diameter of the impeller in m
+b=8/100; // impeller width at entry in m
+n_st=0.7; // stage efficiency
+V1=22.67; // Absolute Velocity at entry in m/s
+ro=1.25; // density of air in kg/m3
+
+// part(a) determining the pressure developed
+u2=%pi*d2*N/60;
+u1=d1*u2/d2;
+w_ac=u2^2;
+delh_s=n_st*w_ac;
+delp=ro*delh_s;
+disp ("mm W.G." ,delp/9.81,"(a)the pressure developed is")
+
+// part (b) determining the power required
+A1=%pi*d1*b;
+m=ro*V1*A1;
+P=m*w_ac/10e2;
+disp("kW",P,"(b)Power required is")