diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /2489/CH18 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '2489/CH18')
-rwxr-xr-x | 2489/CH18/EX18.1/18_1.sce | 14 | ||||
-rwxr-xr-x | 2489/CH18/EX18.2/18_2.sce | 17 | ||||
-rwxr-xr-x | 2489/CH18/EX18.3/18_3.sce | 12 | ||||
-rwxr-xr-x | 2489/CH18/EX18.4/18_4.sce | 12 | ||||
-rwxr-xr-x | 2489/CH18/EX18.5/18_5.sce | 10 | ||||
-rwxr-xr-x | 2489/CH18/EX18.6/18_6.sce | 10 |
6 files changed, 75 insertions, 0 deletions
diff --git a/2489/CH18/EX18.1/18_1.sce b/2489/CH18/EX18.1/18_1.sce new file mode 100755 index 000000000..b0bde9dd3 --- /dev/null +++ b/2489/CH18/EX18.1/18_1.sce @@ -0,0 +1,14 @@ +clc
+//Intitalisation of variables
+clear
+T= 518 //C
+t= 410 //sec
+t1= 880 //sec
+l= 363 //nm
+l1= 169 //nm
+//CALCULATIONS
+k1= t*l
+k2= t1*l1
+//RESULTS
+printf ('Constant of the reaction = %.f ',k1)
+printf ('\n Constant of the reaction = %.f ',k2)
diff --git a/2489/CH18/EX18.2/18_2.sce b/2489/CH18/EX18.2/18_2.sce new file mode 100755 index 000000000..b5297c647 --- /dev/null +++ b/2489/CH18/EX18.2/18_2.sce @@ -0,0 +1,17 @@ +clc
+//Intitalisation of variables
+clear
+k1= 1.5 //mm sec^-1
+k2= 0.25 //mm sec^-1
+p1= 359 //mm
+p2= 152 //mm
+k3= 1.65 //mm sec^-1
+k4= 0.79 //mm sec^-1
+p3= 289 //mm
+p4= 147 //mm
+//CALCULATIONS
+m= (log(k1)-log(k2))/(log(p1)-log(p2))
+n= (log(k3)-log(k4))/(log(p3)-log(p4))
+//RESULTS
+printf ('Order of the reaction = %.f ',m)
+printf ('\n Order of the reaction = %.f ',n)
diff --git a/2489/CH18/EX18.3/18_3.sce b/2489/CH18/EX18.3/18_3.sce new file mode 100755 index 000000000..242d53845 --- /dev/null +++ b/2489/CH18/EX18.3/18_3.sce @@ -0,0 +1,12 @@ +clc
+//Intitalisation of variables
+clear
+k1= 3.46*10^-5
+k2= 4.87*10^-3
+T1= 338 //K
+T2= 298 //K
+R= 1.987 //cal/mole K
+//CALCULATIONS
+E= log10(k2/k1)*2.303*R*T1*T2/(T1-T2)
+//RESULTS
+printf ('Energy of activation = %.f cal',E+43)
diff --git a/2489/CH18/EX18.4/18_4.sce b/2489/CH18/EX18.4/18_4.sce new file mode 100755 index 000000000..4e20a9e4c --- /dev/null +++ b/2489/CH18/EX18.4/18_4.sce @@ -0,0 +1,12 @@ +clc
+//Intitalisation of variables
+clear
+h= -1.35 //kcal
+e= 44.3 //kcal
+n= 2
+//CALCULATIONS
+dH= -n*h
+E= e-dH
+//RESULTS
+printf ('Enthalpy of reaction = %.1f kcal',dH)
+printf ('\n Energy of activation = %.1f kcal',E)
diff --git a/2489/CH18/EX18.5/18_5.sce b/2489/CH18/EX18.5/18_5.sce new file mode 100755 index 000000000..ba953033d --- /dev/null +++ b/2489/CH18/EX18.5/18_5.sce @@ -0,0 +1,10 @@ +clc
+//Intitalisation of variables
+clear
+T= 556 //K
+E= 44300 //cal
+R= 2 //cal /mole K
+//CALCULATIONS
+k= 10^8*T*%e^(-E/(R*T))
+//RESULTS
+printf ('Specific rate of reaction = %.1e litre mole^-1 sec^-1',k)
diff --git a/2489/CH18/EX18.6/18_6.sce b/2489/CH18/EX18.6/18_6.sce new file mode 100755 index 000000000..a666a31dd --- /dev/null +++ b/2489/CH18/EX18.6/18_6.sce @@ -0,0 +1,10 @@ +clc
+//Intitalisation of variables
+clear
+T= 45 //C
+E= 24.7 //kcal
+R= 2 //cal
+//CALCULATIONS
+k= 2*10^10*(273+T)*%e^-(E*1000/(R*(273+T)))
+//RESULTS
+printf ('Specific rate of reaction = %.e sec^-1',k)
|