summaryrefslogtreecommitdiff
path: root/3511/CH5/EX5.8/Ex5_8.sce
diff options
context:
space:
mode:
Diffstat (limited to '3511/CH5/EX5.8/Ex5_8.sce')
-rw-r--r--3511/CH5/EX5.8/Ex5_8.sce10
1 files changed, 10 insertions, 0 deletions
diff --git a/3511/CH5/EX5.8/Ex5_8.sce b/3511/CH5/EX5.8/Ex5_8.sce
new file mode 100644
index 000000000..f989c947b
--- /dev/null
+++ b/3511/CH5/EX5.8/Ex5_8.sce
@@ -0,0 +1,10 @@
+clc;
+p=336.5; //specific power output of a turbine in kW/kg
+T4=700; // Temperature at turbine outlet in kelvin
+Cp=1; // Specific heat at constant pressure in kJ/kg K
+Cv=0.717; // Specific heat at constant volume in kJ/kg K
+
+r=Cp/Cv; // Specific heat ratio
+T3=T4+(p/Cp); // Temperature at turbine inlet
+p3_p4=(T3/T4)^(r/(r-1)); // Pressure ratio across the turbine
+disp (round(p3_p4),"Pressure ratio across the turbine = ");