diff options
Diffstat (limited to '3718/CH3/EX3.6/Ex3_6.sce')
-rw-r--r-- | 3718/CH3/EX3.6/Ex3_6.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/3718/CH3/EX3.6/Ex3_6.sce b/3718/CH3/EX3.6/Ex3_6.sce new file mode 100644 index 000000000..2e0af5c97 --- /dev/null +++ b/3718/CH3/EX3.6/Ex3_6.sce @@ -0,0 +1,13 @@ +//Chapter 3: Thermodynamic and Chemical Equilibrium
+//Problem: 6
+clc;
+
+//Declaration of Variables
+d_h_acetylene = 230 // kJ per mol
+d_h_benzene = 85 // kJ per mol
+T = 298 // K
+
+// Solution
+d_h = d_h_benzene - 3 * d_h_acetylene
+
+mprintf("The enthalpy change for the reaction is: %d kJ/mole", d_h)
|