summaryrefslogtreecommitdiff
path: root/1442/CH19/EX19.3
diff options
context:
space:
mode:
Diffstat (limited to '1442/CH19/EX19.3')
-rwxr-xr-x1442/CH19/EX19.3/19_3.sce13
1 files changed, 13 insertions, 0 deletions
diff --git a/1442/CH19/EX19.3/19_3.sce b/1442/CH19/EX19.3/19_3.sce
new file mode 100755
index 000000000..7e2472763
--- /dev/null
+++ b/1442/CH19/EX19.3/19_3.sce
@@ -0,0 +1,13 @@
+clc
+//initialisation of variables
+hCO2= -393520 //kJ/kg mol
+hH2O= -285840 //kJ/kg mol
+hC7H16= -187820 //kJ/kg mol
+M= 100
+hH2O1= -241830 //kJkg mol
+//CALCULATIONS
+HHV= -(7*hCO2+8*hH2O-hC7H16)/M
+LLV= -(7*hCO2+8*hH2O1-hC7H16)/M
+//RESULTS
+printf (' Higher heating vlue= %.f kJ/kg mol ',HHV)
+printf (' \n Lower heating vlue= %.f kJ/kg mol ',LLV)