summaryrefslogtreecommitdiff
path: root/1427/CH16/EX16.9/16_9.sce
diff options
context:
space:
mode:
Diffstat (limited to '1427/CH16/EX16.9/16_9.sce')
-rw-r--r--1427/CH16/EX16.9/16_9.sce15
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);