summaryrefslogtreecommitdiff
path: root/1427/CH16/EX16.22/16_22.sce
blob: 64eecd04694b7cea14929bc6dfb119e46af66e09 (plain)
1
2
3
4
5
6
7
8
//ques-16.22
//Determining order of the reaction
clc
r1=0.76; r2=1.07;//rate of reaction (in torr/s)
x1=5; x2=20;//percentage of decomposition
a1=1-(x1/100); a2=1-(x2/100);
n=log10(r2/r1)/log10(a1/a2);//order
printf("The order of the reaction is %.0f.",n);