diff options
Diffstat (limited to '1019/CH3/EX3.9/Example_3_9.sce')
-rw-r--r-- | 1019/CH3/EX3.9/Example_3_9.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/1019/CH3/EX3.9/Example_3_9.sce b/1019/CH3/EX3.9/Example_3_9.sce new file mode 100644 index 000000000..5124ef82f --- /dev/null +++ b/1019/CH3/EX3.9/Example_3_9.sce @@ -0,0 +1,16 @@ +//An Introduction to Chemical Thermodynamics
+//Chapter 3
+//Thermochemistry
+
+//Example 3.9
+clear;
+clc;
+
+//Given
+delHf1 = -92.3;//heat of formation in kJ of HCl
+delHf2 = -168.0;//heat of formation in kJ of HCl.100 H2O
+
+//To determine the heat of solution of HCl in 100 H20
+delH = delHf2-delHf1;//heat of solution of HCl in 100 H20 in kJ
+mprintf('heat of solution of l in 100 H2O = %f kJ',delH);
+//end
\ No newline at end of file |