diff options
Diffstat (limited to '2465/CH5/EX5.2/Example_2.sce')
-rw-r--r-- | 2465/CH5/EX5.2/Example_2.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/2465/CH5/EX5.2/Example_2.sce b/2465/CH5/EX5.2/Example_2.sce new file mode 100644 index 000000000..e1d462398 --- /dev/null +++ b/2465/CH5/EX5.2/Example_2.sce @@ -0,0 +1,19 @@ +//Chapter-5,Example 2,Page 122
+clc();
+close();
+
+t=[7.18 18 27.05] //time in minute
+
+r=[ 21.4 17.7 15] //rotation in degrees
+
+r_0=24.09
+
+r_a=-10.74
+
+k=(1 ./t).*log10((r_0-r_a)./(r-r_a))
+
+printf('values of k')
+
+disp(k)
+
+printf('since k values are fairly constant by putting in 1nd order rate equation. \nHence hydrolysis of methyl acetate is of 1st order.')
|