diff options
Diffstat (limited to '1394/CH16/EX16.3.2/Ex16_3_2.sce')
-rwxr-xr-x | 1394/CH16/EX16.3.2/Ex16_3_2.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/1394/CH16/EX16.3.2/Ex16_3_2.sce b/1394/CH16/EX16.3.2/Ex16_3_2.sce new file mode 100755 index 000000000..c1c9a65c3 --- /dev/null +++ b/1394/CH16/EX16.3.2/Ex16_3_2.sce @@ -0,0 +1,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)
|