summaryrefslogtreecommitdiff
path: root/23/CH4/EX4.5/Example_4_5.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /23/CH4/EX4.5/Example_4_5.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 '23/CH4/EX4.5/Example_4_5.sce')
-rwxr-xr-x23/CH4/EX4.5/Example_4_5.sce20
1 files changed, 20 insertions, 0 deletions
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