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 /3428/CH15/EX9.15.10 | |
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 '3428/CH15/EX9.15.10')
-rw-r--r-- | 3428/CH15/EX9.15.10/Ex9_15_10.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/3428/CH15/EX9.15.10/Ex9_15_10.sce b/3428/CH15/EX9.15.10/Ex9_15_10.sce new file mode 100644 index 000000000..51d9e560c --- /dev/null +++ b/3428/CH15/EX9.15.10/Ex9_15_10.sce @@ -0,0 +1,14 @@ +//Section-9,Example-6,Page no.-E.10 +//To calculate the equilibrium constant for the given reduction reaction. +clc; +E0_Ri=-0.21 +E0_Ru=-0.06 +E0=E0_Ri-E0_Ru +n=2 +F=96500 +R=8.314 +T=298 +K=(n*F*E0)/(R*T) +//K_eq=antilog(K) +K_eq=%e^K +disp(K_eq,'equilibrium constant for the reduction reaction') |