summaryrefslogtreecommitdiff
path: root/1427/CH16/EX16.26
diff options
context:
space:
mode:
Diffstat (limited to '1427/CH16/EX16.26')
-rw-r--r--1427/CH16/EX16.26/16_26.sce10
1 files changed, 10 insertions, 0 deletions
diff --git a/1427/CH16/EX16.26/16_26.sce b/1427/CH16/EX16.26/16_26.sce
new file mode 100644
index 000000000..9356f1002
--- /dev/null
+++ b/1427/CH16/EX16.26/16_26.sce
@@ -0,0 +1,10 @@
+//ques-16.26
+//Calculating values of rate constants
+clc
+K=0.1;//equilibrium constant
+R_T=10^-5;//relaxation time (in s)
+//R_T = 1/(ka+kb)
+//K=ka/kb
+ka=1/(11*10^-5);
+kb=10*ka;
+printf("The value of ka is %d /s and kb is %d /s.",ka,kb);