blob: bda2bf677d47361b88befdf68f65413a9c6cdd5e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
clear;
clc;
// Stoichiometry
// Chapter 7
// Combustion
// Example 7.3
// Page 444
printf("Example 7.3, Page 444 \n \n");
// solution
// basis 1 mol of gaseous propane
H2O = 4*18.0153 //g
NHV = 2219.17-(H2O*2442.5/1000)
printf("NHV = "+string(NHV)+" kJ/mol.")
|