blob: 100ed34a8a888a6f75c1416367806ed2ee2dd6a5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
clear;
clc;
// Stoichiometry
// Chapter 5
// Energy Balances
// Example 5.44
// Page 297
printf("Example 5.44, Page 297 \n \n");
// solution
Hfs = -1094.33
Hfao = -1072.32
Hsol = Hfao-Hfs
printf(" Heat of solution of Boric acid = "+string(Hsol)+" kJ/mol.")
|