diff options
Diffstat (limited to '2465/CH5/EX5.16')
-rw-r--r-- | 2465/CH5/EX5.16/Example_16.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/2465/CH5/EX5.16/Example_16.sce b/2465/CH5/EX5.16/Example_16.sce new file mode 100644 index 000000000..90d6670a2 --- /dev/null +++ b/2465/CH5/EX5.16/Example_16.sce @@ -0,0 +1,19 @@ +//Chapter-5,Example 16,Page 128
+clc();
+close();
+
+t_half = 600 // half life
+
+K=0.693/t_half
+
+Ea=98600 //activation energy
+
+A= 4*10^13 //Arrhenius factor
+
+R=8.316 //gas constant
+
+T=Ea/(2.303*R*log10(A/K))
+
+printf('temperature is %.f K',T)
+
+//mistake in textbook
|