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 --- 3685/CH16/EX16.10/Ex16_10.sce | 17 +++++++++++++++++ 3685/CH16/EX16.10/Ex16_10.txt | 4 ++++ 2 files changed, 21 insertions(+) create mode 100644 3685/CH16/EX16.10/Ex16_10.sce create mode 100644 3685/CH16/EX16.10/Ex16_10.txt (limited to '3685/CH16/EX16.10') diff --git a/3685/CH16/EX16.10/Ex16_10.sce b/3685/CH16/EX16.10/Ex16_10.sce new file mode 100644 index 000000000..537b5617b --- /dev/null +++ b/3685/CH16/EX16.10/Ex16_10.sce @@ -0,0 +1,17 @@ +clc +Hr1 = -249952 // For octane +Hp1 = Hr1 +// Below values are calculated using value from table +T2 = 1000 // Assumed reaction temperature in K +Hp2 = -1226577 // Enthalpy of reaction products +T3 = 1200 // Assumed reaction temperature in K +Hp3 = 46537// Enthalpy of reaction products +T4 = 1100// Assumed reaction temperature in K +Hp4 = -595964 // Enthalpy of reaction products +Hp = [Hp2 Hp3 Hp4] +T = [T2 T3 T4] +T1 = interpln([Hp; T],Hp1) // Interpolation to find temperature at Hp1 +printf("\n Example 16.10 \n") +printf("\n The adiabatic flame temperature is %f K",T1) +//The answer provided in the textbook is wrong + diff --git a/3685/CH16/EX16.10/Ex16_10.txt b/3685/CH16/EX16.10/Ex16_10.txt new file mode 100644 index 000000000..af73b6b3c --- /dev/null +++ b/3685/CH16/EX16.10/Ex16_10.txt @@ -0,0 +1,4 @@ + + Example 16.10 + + The adiabatic flame temperature is 1153.423024 K \ No newline at end of file -- cgit