summaryrefslogtreecommitdiff
path: root/1427/CH16/EX16.15/16_15.sce
diff options
context:
space:
mode:
Diffstat (limited to '1427/CH16/EX16.15/16_15.sce')
-rw-r--r--1427/CH16/EX16.15/16_15.sce7
1 files changed, 7 insertions, 0 deletions
diff --git a/1427/CH16/EX16.15/16_15.sce b/1427/CH16/EX16.15/16_15.sce
new file mode 100644
index 000000000..bdb6ab637
--- /dev/null
+++ b/1427/CH16/EX16.15/16_15.sce
@@ -0,0 +1,7 @@
+//ques-16.15
+//Calculating activation energy for the reaction
+clc
+k2=5.16*10^4; k1=3.76*10^3;
+T2=1125; T1=1085;//temperature (in K)
+Ea=(log10(k2/k1)*2.303*8.314*T1*T2)/(T2-T1);//activation energy
+printf("Activation energy for the reaction is %d J/mol.",Ea);