diff options
Diffstat (limited to '2465/CH5/EX5.7/Example_7.sce')
-rw-r--r-- | 2465/CH5/EX5.7/Example_7.sce | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/2465/CH5/EX5.7/Example_7.sce b/2465/CH5/EX5.7/Example_7.sce new file mode 100644 index 000000000..728c0cf49 --- /dev/null +++ b/2465/CH5/EX5.7/Example_7.sce @@ -0,0 +1,27 @@ +//Chapter-5,Example 7,Page 124
+clc();
+close();
+
+//for 2st order reaction
+//k = (1/a*t)*(x/(a-x))
+
+a= 16
+
+//time intervals
+
+t=[ 5 15 25 35]
+
+//assume y = a-x
+
+y=[ 10.24 6.13 4.32 3.41] //volume of acid
+
+x=a-y
+
+k = (1 ./(a*t)).*(x./(y))
+
+printf('value of k are ' )
+
+disp(k)
+
+printf('since k values are fairly constant by putting in 2nd order rate equation. \nHence dhydrolysis of methyl acetate is of 2st order.')
+
|