diff options
Diffstat (limited to '1427/CH16/EX16.16/16_16.sce')
-rw-r--r-- | 1427/CH16/EX16.16/16_16.sce | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/1427/CH16/EX16.16/16_16.sce b/1427/CH16/EX16.16/16_16.sce new file mode 100644 index 000000000..d5f7658fd --- /dev/null +++ b/1427/CH16/EX16.16/16_16.sce @@ -0,0 +1,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);
|