diff options
Diffstat (limited to '1019/CH3/EX3.12')
-rw-r--r-- | 1019/CH3/EX3.12/Example_3_12.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/1019/CH3/EX3.12/Example_3_12.sce b/1019/CH3/EX3.12/Example_3_12.sce new file mode 100644 index 000000000..a4a19fb40 --- /dev/null +++ b/1019/CH3/EX3.12/Example_3_12.sce @@ -0,0 +1,12 @@ +//Example 3.12
+clear;
+clc;
+
+//Given
+delHfHCl = -168.0;//heat of formation in kJ of HCl
+delHf = 0;//heat of formation of H+ ions in kJ
+
+//To determine the heat of formation of chloride ions
+delHi = delHfHCl-delHf;//heat of formation of chloride ions in kJ
+mprintf('heat of formation of chloride ions = %f kJ',delHi);
+//end
\ No newline at end of file |