From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 2465/CH5/EX5.11/Ex5_11.sce | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 2465/CH5/EX5.11/Ex5_11.sce (limited to '2465/CH5/EX5.11/Ex5_11.sce') 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) -- cgit