diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /2465/CH5/EX5.11 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '2465/CH5/EX5.11')
-rw-r--r-- | 2465/CH5/EX5.11/Ex5_11.sce | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/2465/CH5/EX5.11/Ex5_11.sce b/2465/CH5/EX5.11/Ex5_11.sce new file mode 100644 index 000000000..06b492323 --- /dev/null +++ b/2465/CH5/EX5.11/Ex5_11.sce @@ -0,0 +1,23 @@ +//Chapter-5,Example 11,Page 126
+clc();
+close();
+
+a=0.1 //initial concentration of reactants
+
+x=0.2*a
+
+t=40 //time
+
+k=x/(a*t*(a-x))
+
+t_half=1/(a*k)
+
+x1=0.75*a
+
+t1=x1/(k*a*(a-x1))
+
+printf('the rate constant is k = %.4f l/mol.min',k)
+
+printf('\n the half life period is %.f mins',t_half)
+
+printf('\n the time required to complete 75 percent reaction is %.f mins',t1)
|