blob: 4da76a7549d5b7473c8eca7925bb03709029c39f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
//ques9
//determining exit plane properties in control volume
clear
clc
//x-inlet
//y-exit
Mx=1.5;//mach number for inlet
My=0.7011;//mach number for exit
Px=272.4;//inlet pressure in kPa
Tx=248.3;//inlet temperature in K
Pox=1000;//stagnation pressure for inlet
Py=2.4583*Px;//Exit Pressure in kPa
Ty=1.320*Tx;//Exit temperature in K
Poy=0.9298*Pox;//Exit pressure in kPa
printf('Exit pressure = %.1f kPa \n',Py);
printf(' Exit temperature = %.1f K \n',Ty);
printf(' Exit stagnation pressure = %.1f kPa \n',Poy);
|