summaryrefslogtreecommitdiff
path: root/1652/CH17
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1652/CH17
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '1652/CH17')
-rwxr-xr-x1652/CH17/EX17.1/17_1.sce10
-rwxr-xr-x1652/CH17/EX17.2/17_2.sce11
-rwxr-xr-x1652/CH17/EX17.3/17_3.sce14
-rwxr-xr-x1652/CH17/EX17.5/17_5.sce14
4 files changed, 49 insertions, 0 deletions
diff --git a/1652/CH17/EX17.1/17_1.sce b/1652/CH17/EX17.1/17_1.sce
new file mode 100755
index 000000000..ffd39bfbb
--- /dev/null
+++ b/1652/CH17/EX17.1/17_1.sce
@@ -0,0 +1,10 @@
+clc
+//Initialization of variablesx1=5
+x2=20
+x1=5
+n1=7.49
+n2=5.14
+//calculations
+n=(log(n1)-log(n2))/(log(100-x1) - log(100-x2))
+//results
+printf("Order of the reaction = %.2f",n)
diff --git a/1652/CH17/EX17.2/17_2.sce b/1652/CH17/EX17.2/17_2.sce
new file mode 100755
index 000000000..1af7568d4
--- /dev/null
+++ b/1652/CH17/EX17.2/17_2.sce
@@ -0,0 +1,11 @@
+clc
+//Initialization of variables
+p2=169
+p1=363
+t1=410
+t2=880
+//calculations
+ndash=(log(t2) - log(t1))/(log(p1) - log(p2))
+n=ndash+1
+//results
+printf("Order of the reaction = %.2f",n)
diff --git a/1652/CH17/EX17.3/17_3.sce b/1652/CH17/EX17.3/17_3.sce
new file mode 100755
index 000000000..d14b96cb0
--- /dev/null
+++ b/1652/CH17/EX17.3/17_3.sce
@@ -0,0 +1,14 @@
+clc
+//Initialization of variables
+R=1.987 //cal/deg/mol
+k1=4.45*10^-5
+k2=2.52*10^-6
+T1=283+273.2 //K
+T2=356+273.2 //K
+//calculations
+Ea=2.303*R*1.7530 /(1/T1 - 1/T2)
+logZ= log10(k1) +Ea/(2.303*R*T1)
+Z=10^logZ
+//results
+printf("Activation energy = %d cal/mol",Ea)
+printf("\n Z = %.1e lt /mol sec",Z)
diff --git a/1652/CH17/EX17.5/17_5.sce b/1652/CH17/EX17.5/17_5.sce
new file mode 100755
index 000000000..f66cc6340
--- /dev/null
+++ b/1652/CH17/EX17.5/17_5.sce
@@ -0,0 +1,14 @@
+clc
+//Initialization of variables
+g1=0.661
+g2=0.899
+g3=0.405
+g4=0.803
+g5=0.946
+g6=0.614
+k=1.33
+//calculations
+k0=k*g3/(g1*g2)
+k2=k0*g4*g5/g6
+//results
+printf("Equlibrium constant = %.2f lt/mol min",k2)