diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3689/CH18/EX18.11 | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '3689/CH18/EX18.11')
-rw-r--r-- | 3689/CH18/EX18.11/18_11.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/3689/CH18/EX18.11/18_11.sce b/3689/CH18/EX18.11/18_11.sce new file mode 100644 index 000000000..99dd531ef --- /dev/null +++ b/3689/CH18/EX18.11/18_11.sce @@ -0,0 +1,18 @@ +//////Variable Declaration
+Ea = 104e3 //Activation energy for reaction, J/mol
+A = 1.e13 //Pre-exponential factor for reaction, 1/s
+T = 300.0 //Temeprature, K
+R = 8.314 //Ideal gas constant, J/(mol.K)
+h = 6.626e-34 //Plnak constant, Js
+c = 1.0 //Std. State concentration, M
+k = 1.38e-23 //,J/K
+
+//Calculations
+dH = Ea - 2*R*T
+dS = R*log(A*h*c/(k*T*%e**2))
+
+//Results
+printf("\n Forward Rate constant is %4.2e 1/s",dH)
+
+printf("\n Backward Rate constant is %4.2f 1/s",dS)
+
|