summaryrefslogtreecommitdiff
path: root/3718/CH5/EX5.2/Ex5_2.sce
diff options
context:
space:
mode:
Diffstat (limited to '3718/CH5/EX5.2/Ex5_2.sce')
-rw-r--r--3718/CH5/EX5.2/Ex5_2.sce11
1 files changed, 11 insertions, 0 deletions
diff --git a/3718/CH5/EX5.2/Ex5_2.sce b/3718/CH5/EX5.2/Ex5_2.sce
new file mode 100644
index 000000000..04c757c80
--- /dev/null
+++ b/3718/CH5/EX5.2/Ex5_2.sce
@@ -0,0 +1,11 @@
+//Chapter 5: Chemical Kinetics and Catalysis
+//Problem: 2
+clc;
+
+//Declaration of Variables
+t = 40 //in minutes
+
+// Solution
+mprintf("Rate constant = 0.693 / t\n")
+K = 0.693 / t
+mprintf(" Rate constant = %.4f / min",K)