summaryrefslogtreecommitdiff
path: root/1427/CH16/EX16.16/16_16.sce
blob: d5f7658fde0476d80187ee2b57dc10a5ffe7516e (plain)
1
2
3
4
5
6
7
//ques-16.16
//Calculating energy of activation of the reaction
clc
k1=7*10^-7; k2=9*10^-4;//rate constant
T1=280; T2=330;//temperature (in K)
Ea=(log10(k2/k1)*2.303*1.987*T1*T2)/(T2-T1);//energy of activation
printf("Energy of activation of the reaction is %.3f kcal/K.",Ea/1000);