summaryrefslogtreecommitdiff
path: root/3689/CH18/EX18.5/18_5.sce
diff options
context:
space:
mode:
Diffstat (limited to '3689/CH18/EX18.5/18_5.sce')
-rw-r--r--3689/CH18/EX18.5/18_5.sce11
1 files changed, 11 insertions, 0 deletions
diff --git a/3689/CH18/EX18.5/18_5.sce b/3689/CH18/EX18.5/18_5.sce
new file mode 100644
index 000000000..f0c199f8c
--- /dev/null
+++ b/3689/CH18/EX18.5/18_5.sce
@@ -0,0 +1,11 @@
+////
+//Variable Declaration
+kAbykI = 2.0 //Ratio of rate constants
+kA = 0.1 //First order rate constant for rxn 1, 1/s
+kI = 0.05 //First order rate constant for rxn 2, 1/s
+//Calculations
+tmax = 1/(kA-kI)*log(kA/kI)
+
+//Results
+printf("\n Time required for maximum concentration of A: %4.2f s",tmax)
+