From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 3825/CH9/EX9.7/Ex9_7.sce | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 3825/CH9/EX9.7/Ex9_7.sce (limited to '3825/CH9/EX9.7') diff --git a/3825/CH9/EX9.7/Ex9_7.sce b/3825/CH9/EX9.7/Ex9_7.sce new file mode 100644 index 000000000..e92a73568 --- /dev/null +++ b/3825/CH9/EX9.7/Ex9_7.sce @@ -0,0 +1,18 @@ +clc +ro=16 +gama=1.4 +T1=310.15 //temperature in kelvin +T2=T1*(ro^(gama-1)) +mprintf("T2=%fK\n",T2)//ans vary due to roundoff error +deltas=1.2 +CP=1.0047 +T3=(%e^(deltas/CP))*T2 +mprintf("T3=%fK\n",T3)//ans vary due to roundoff error +q1=CP*(T3-T2) +rc=T3/T2 +mprintf("rc=%f\n",rc)//ans vary due to roundoff error +mprintf("q1=%fkJ/kg\n",q1)//ans vary due to roundoff error +Eta=1-(((rc^gama)-1)/((gama*ro^(gama-1))*(rc-1))) +mprintf("Eta=%f",Eta)//ans vary due to roundoff error + + -- cgit