diff options
Diffstat (limited to '3718/CH5/EX5.11/Ex5_11.sce')
-rw-r--r-- | 3718/CH5/EX5.11/Ex5_11.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/3718/CH5/EX5.11/Ex5_11.sce b/3718/CH5/EX5.11/Ex5_11.sce new file mode 100644 index 000000000..4f03204d2 --- /dev/null +++ b/3718/CH5/EX5.11/Ex5_11.sce @@ -0,0 +1,11 @@ +//Chapter 5: Chemical Kinetics and Catalysis
+//Problem: 11
+clc;
+
+//Declaration of Variables
+a = 1 //in mole
+x = 3 / 4.0 // reaction completed
+
+// Solution
+K = (2.303 / 6) * log10(1 / (1 - x))
+mprintf("The rate constant is :%.3f / min",K)
|