summaryrefslogtreecommitdiff
path: root/172/CH17/EX17.9
diff options
context:
space:
mode:
Diffstat (limited to '172/CH17/EX17.9')
-rwxr-xr-x172/CH17/EX17.9/ex9.sce18
1 files changed, 18 insertions, 0 deletions
diff --git a/172/CH17/EX17.9/ex9.sce b/172/CH17/EX17.9/ex9.sce
new file mode 100755
index 000000000..4da76a754
--- /dev/null
+++ b/172/CH17/EX17.9/ex9.sce
@@ -0,0 +1,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); \ No newline at end of file