summaryrefslogtreecommitdiff
path: root/527/CH2/EX2.12/2_12exam.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /527/CH2/EX2.12/2_12exam.sce
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '527/CH2/EX2.12/2_12exam.sce')
-rwxr-xr-x527/CH2/EX2.12/2_12exam.sce14
1 files changed, 14 insertions, 0 deletions
diff --git a/527/CH2/EX2.12/2_12exam.sce b/527/CH2/EX2.12/2_12exam.sce
new file mode 100755
index 000000000..ed9d65972
--- /dev/null
+++ b/527/CH2/EX2.12/2_12exam.sce
@@ -0,0 +1,14 @@
+//Engineering and Chemical Thermodynamics
+//Example 2.12
+//Page no :73
+
+clear ; clc ;
+// From table we have
+del_h0_f_CO2 = -393.51 ; // [kJ/mol]
+del_h0_f_H2 = 0 ; // [kJ/mol]
+del_h0_f_H2O = -241.82 ; // [kJ/mol]
+del_h0_f_CH3OH = -200.66 ; // [kJ/mol]
+
+del_h0 = del_h0_f_CO2 + 3 * del_h0_f_H2 - del_h0_f_H2O - del_h0_f_CH3OH ;
+disp(" Example: 2.12 Page no : 73") ;
+printf('\n Enthalpy of reaction = %g kJ/mol',del_h0); \ No newline at end of file