blob: add2f224c2e7d5d6a760a6e9c2792a341aaa4e3e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
//Fluid system - By - Shiv Kumar
//Chapter 2 - Impact of Jet
//Example 2.14
clc
clear
//Given Data:-
Vi=50; //Absolute velocity of Jet at inlet, m/s
u=25; //velocity of vane, m/s
ui=u;
uo=u;
alpha_i=32; //Angle made by Vi at inlet, degrees
alpha_l=90; //Angle made by Vi at outlet, degrees
alpha_o=180-alpha_l; //degrees
//Computations:-
Vfi=Vi*sind(alpha_i); //m/s
Vwi=Vi*cosd(alpha_i); //m/s
Vwi=Vwi-ui; //m/s
beta_i=atand(Vfi/Vwi); //degrees
Vri=Vfi/sind(beta_i); //m/s
Vro=Vri;
beta_o=acosd(uo/Vro); //degrees
//Result:-
printf("Vane Angle at Inlet, beta_i=%.2f degrees \n", beta_i)
printf("Vane angle at outlet, beta_o=%.2f degrees \n", beta_o) //The answer vary due to round off error
|