blob: 2e0af5c97047390485a12bf6f50769238ba50c62 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
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)
|