blob: 51e9a6f727f38d51b5122f65a92622abc5332be6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
clear;
clc;
disp('Example 8.20');
// aim : to determine
// stoichiometric equation for combustion of hydrogen
// solution
// equation with algebric coefficient is
// H2+aO2+79/21*aN2=bH2O+79/21*aN2
// by equating coefficients
b = 1;
a = b/2;
// so equation becomes
// 2 H2+ O2+3.76 N2=2 H2O+3.76 N2
disp('The required stoichiometric equation is = ');
disp('2 H2+ O2+3.76 N2 = 2 H2O+3.76 N2');
// End
|