summaryrefslogtreecommitdiff
path: root/3843/CH6/EX6.2/Ex6_2.sce
diff options
context:
space:
mode:
Diffstat (limited to '3843/CH6/EX6.2/Ex6_2.sce')
-rw-r--r--3843/CH6/EX6.2/Ex6_2.sce13
1 files changed, 13 insertions, 0 deletions
diff --git a/3843/CH6/EX6.2/Ex6_2.sce b/3843/CH6/EX6.2/Ex6_2.sce
new file mode 100644
index 000000000..118275dbc
--- /dev/null
+++ b/3843/CH6/EX6.2/Ex6_2.sce
@@ -0,0 +1,13 @@
+// Example 6_2
+clc;funcprot(0);
+// Given data
+P_1=1200;// kPa
+P_2=140;// kPa
+T_1=350+273;// K
+c_v=0.717;// kJ/kg.K
+k=1.4;// The specific heat ratio
+
+// Calculation
+T_2=T_1*(P_2/P_1)^((k-1)/k);// K
+w=c_v*(T_1-T_2);// kJ/kg
+printf("The work done by the gases,w=%3.0f kJ/kg",w);