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 --- 23/CH4/EX4.5/Example_4_5.pdf | Bin 0 -> 4655 bytes 23/CH4/EX4.5/Example_4_5.sce | 20 ++++++++++++++++++++ 2 files changed, 20 insertions(+) create mode 100755 23/CH4/EX4.5/Example_4_5.pdf create mode 100755 23/CH4/EX4.5/Example_4_5.sce (limited to '23/CH4/EX4.5') diff --git a/23/CH4/EX4.5/Example_4_5.pdf b/23/CH4/EX4.5/Example_4_5.pdf new file mode 100755 index 000000000..a66684824 Binary files /dev/null and b/23/CH4/EX4.5/Example_4_5.pdf differ diff --git a/23/CH4/EX4.5/Example_4_5.sce b/23/CH4/EX4.5/Example_4_5.sce new file mode 100755 index 000000000..91436ffa8 --- /dev/null +++ b/23/CH4/EX4.5/Example_4_5.sce @@ -0,0 +1,20 @@ +clc; +clear; + +//Example 4.5 +//Caption : Program to Find the Standard Heat at 298.15K + +//4HCL + O2 --> 2H2O + 2Cl2 +del_H_HCL=-92.307;//KJ Heat Of Formation +del_H_H2O=-241.818;//KJ + +//4HCL --> 2H2 + 2Cl2 +del_H_298_HCL=4*(-1)*del_H_HCL; +//2H2 + O2 --> 2H2O +del_H_298_H2O=2*del_H_H2O; +//Final +del_H_298=del_H_298_HCL+del_H_298_H2O; + +disp('KJ',del_H_298,'Standard Heat') + +//End \ No newline at end of file -- cgit