summaryrefslogtreecommitdiff
path: root/1427/CH16/EX16.13
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /1427/CH16/EX16.13
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-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.13')
-rw-r--r--1427/CH16/EX16.13/16_13.sce13
1 files changed, 13 insertions, 0 deletions
diff --git a/1427/CH16/EX16.13/16_13.sce b/1427/CH16/EX16.13/16_13.sce
new file mode 100644
index 000000000..ee9a02f8b
--- /dev/null
+++ b/1427/CH16/EX16.13/16_13.sce
@@ -0,0 +1,13 @@
+//ques-16.13
+//To show that the reaction is of first order
+clc
+a=24.09+10.74;//(in degrees)
+//t in min; r in degrees
+t2=6.18; r2=21.4;
+t3=18; r3=17.7;
+t4=27.05; r4=15;
+r=10.74;
+k2=(2.303/t2)*log10(a/(r2+r));
+k3=(2.303/t3)*log10(a/(r3+r));
+k4=(2.303/t4)*log10(a/(r4+r));
+printf("As values of k are nearly same, so reaction is of first order.");