blob: a99f0aebac4b5c36c26c832452c9fed7a92d1d5b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
//Chapter 3: Thermodynamic and Chemical Equilibrium
//Problem: 5
clc;
//Declaration of Variables
wt = 1 // g
delta_h = 149 // joules
// Solution
delta_h_f = delta_h * (10 * 12 + 8 * 1)
delta_h_f_c=delta_h_f * 10 ** -3
mprintf("Enthalpy of fusion of naphthalene:%.3f kJ/mol", delta_h_f_c)
|