From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 527/CH2/EX2.12/2_12exam.sce | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100755 527/CH2/EX2.12/2_12exam.sce (limited to '527/CH2/EX2.12/2_12exam.sce') 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 -- cgit