summaryrefslogtreecommitdiff
path: root/884/CH13/EX13.2/Example13_2.sce
blob: 02116c3095f6bf75dd5a0bf498cb2566d9897150 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//computation of reaction rates using stoichiometry

clear;
clc;

printf("\t Example 13.2\n");

dO2=-0.024;//rate of reaction of O2, M/s

//(a)
dN2O5=-2*dO2;//rate of formation of N2O5, M/s
printf("\t the rate of formation of N2O5 is : %4.3f M/s\n",dN2O5);

//(b)
dNO2=4*dO2;//rate of reaction of NO2, M/s
printf("\t the rate of reaction of NO2 is : %4.3f M/s\n",dNO2);

//End