diff options
Diffstat (limited to '1019/CH3/EX3.4/Example_3_4.sce')
-rw-r--r-- | 1019/CH3/EX3.4/Example_3_4.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/1019/CH3/EX3.4/Example_3_4.sce b/1019/CH3/EX3.4/Example_3_4.sce new file mode 100644 index 000000000..32c8af36b --- /dev/null +++ b/1019/CH3/EX3.4/Example_3_4.sce @@ -0,0 +1,13 @@ +//Example 3.4
+clear;
+clc;
+
+//Given
+delH1 = 10.72;//delH1 is the heat of reaction in kJ (i)
+delH2 = 4.68;//delH2 is the heat of reaction in kJ (ii)
+delH3 = -1.16;//delH3 is the heat of reaction in kJ (iii)
+
+//To determine the heat of required reaction
+delH = delH1-delH2+delH3;//heat of reaction in kJ
+mprintf('heat of required reaction = %f kJ',delH);
+//end
\ No newline at end of file |