summaryrefslogtreecommitdiff
path: root/2223/CH8/EX8.3/Ex8_3.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /2223/CH8/EX8.3/Ex8_3.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 '2223/CH8/EX8.3/Ex8_3.sce')
-rwxr-xr-x2223/CH8/EX8.3/Ex8_3.sce33
1 files changed, 33 insertions, 0 deletions
diff --git a/2223/CH8/EX8.3/Ex8_3.sce b/2223/CH8/EX8.3/Ex8_3.sce
new file mode 100755
index 000000000..b905ea369
--- /dev/null
+++ b/2223/CH8/EX8.3/Ex8_3.sce
@@ -0,0 +1,33 @@
+// scilab Code Exa 8.3 Calculation on a compressor cascade
+theta=25; // Camber angle
+gamma_a=30; // stagger angle
+i=5; // incidence
+t_c=0.031; // momentum thickness-chord ratio(t/l)
+p_c=1; // pitch-chord ratio
+
+//part(a)cascade blade angles
+beta1=((2*gamma_a)+theta)*0.5; // blade angle at entry
+beta2=((2*gamma_a)-theta)*0.5; // blade angle at exit
+disp ("(a)therefore, the blade angles are")
+disp ("degree",beta1,"beta1=")
+disp ("degree",beta2,"beta2=")
+
+//part(b) the nominal air angles
+alpha1=beta1+i; // air angle at entry
+alpha2=atand(tand(alpha1)-(1.55/(1+(1.5*p_c)))); // air angle at exit
+disp ("(b)therefore, the air angles are")
+disp ("degree",alpha1,"alpha1=")
+disp ("degree",alpha2,"alpha2=")
+
+//part(c) stagnation pressure loss coefficient
+Y=2*t_c*p_c*(cosd(alpha1)^2)/(cosd(alpha2)^3);
+disp (Y,"(c)the stagnation pressure loss coefficient is")
+
+// part(d)drag coefficient
+alpham=atand(0.5*(tand(alpha1)+tand(alpha2)));
+C_D=p_c*Y*(cosd(alpham)^3)/(cosd(alpha1)^2);
+disp (C_D,"(d)the drag coefficient is")
+
+// part(e)Lift coefficient
+C_L=(2*p_c*(tand(alpha1)-tand(alpha2))*cosd(alpham))-(C_D*tand(alpham));
+disp (C_L,"(e)the Lift coefficient is")