diff options
Diffstat (limited to '2021/CH17/EX17.7/EX17_7.sce')
-rwxr-xr-x | 2021/CH17/EX17.7/EX17_7.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/2021/CH17/EX17.7/EX17_7.sce b/2021/CH17/EX17.7/EX17_7.sce new file mode 100755 index 000000000..4328ed513 --- /dev/null +++ b/2021/CH17/EX17.7/EX17_7.sce @@ -0,0 +1,13 @@ +//Finding of Vane Angle
+//Given
+V=40;
+u=20;
+alpha=30;
+b=90;
+u1=20;
+//TO Find
+theta=atand((V*sin(%pi/6))/((V*cos(%pi/6))-u));
+Vr=((V*sin(%pi/6))/(sin(theta)));
+pi=acosd(u1/Vr);
+disp("Vane angle at Inlet ="+string(theta)+" Degrees");
+disp("Vane angle at Outlet ="+string(pi)+" Degrees");
|