diff options
Diffstat (limited to '1019/CH3/EX3.3/Example_3_3.sce')
-rw-r--r-- | 1019/CH3/EX3.3/Example_3_3.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/1019/CH3/EX3.3/Example_3_3.sce b/1019/CH3/EX3.3/Example_3_3.sce new file mode 100644 index 000000000..53a61b9c0 --- /dev/null +++ b/1019/CH3/EX3.3/Example_3_3.sce @@ -0,0 +1,12 @@ +//Example 3.3
+clear;
+clc;
+
+//Given
+delH1 = -78.705;//H1 is the heat of reaction (i) in kJ
+delH2 = -3.420;//H2 is the heat of reaction (ii) in kJ
+
+//To determine the heat change
+delH=delH1-delH2;//change in heat in kJ
+mprintf('change in heat = %f kJ',delH);
+//end
\ No newline at end of file |