diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /1427/CH16/EX16.9 | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '1427/CH16/EX16.9')
-rw-r--r-- | 1427/CH16/EX16.9/16_9.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/1427/CH16/EX16.9/16_9.sce b/1427/CH16/EX16.9/16_9.sce new file mode 100644 index 000000000..03e9c918a --- /dev/null +++ b/1427/CH16/EX16.9/16_9.sce @@ -0,0 +1,15 @@ +//ques-16.9
+//Finding order of reaction and velocity constant
+clc
+//t=time in minutes; y=volume of HCl (in mL)
+a=61.95;//initial volume (in mL)
+t2=4.89; y2=50.59;
+t3=10.37; y3=42.40;
+t4=28.18; y4=29.35;
+k2=(a-y2)/(a*t2*y2);//(in /conc/min)
+k3=(a-y3)/(a*t3*y3);//(in /conc/min)
+k4=(a-y4)/(a*t4*y4);//(in /conc/min)
+//As values of k are identical
+//2nd order reaction
+k=(k2+k3+k4)/3;//velocity constant (in /conc/min)
+printf("The reaction is of 2nd order with velocity constant being %.6f /conc/min.",k);
|