blob: c1c9a65c3de8fa27359a0b245d1d1c02cc343c8f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
clc
//initialization of variables
K = 0.0087 // overall m.t.c in cm/sec
D = 0.98*10^-5 // cm^2/sec
L = 0.3 // cm
v = 70 // cm/sec
nu = 0.01 //cm^2/sec
//Calculations
k1 = 0.646*(D/L)*((L*v/nu)^(0.5))*((nu/D)^(1/3))// cm/sec
k2 = (1/((1/K)-(1/k1)))/// cm/sec
//Results
printf("The rate constant for the reaction is %.2f cm/sec",k2)
|