summaryrefslogtreecommitdiff
path: root/3428/CH15/EX9.15.7
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /3428/CH15/EX9.15.7
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 '3428/CH15/EX9.15.7')
-rw-r--r--3428/CH15/EX9.15.7/Ex9_15_7.sce12
1 files changed, 12 insertions, 0 deletions
diff --git a/3428/CH15/EX9.15.7/Ex9_15_7.sce b/3428/CH15/EX9.15.7/Ex9_15_7.sce
new file mode 100644
index 000000000..a465bdd96
--- /dev/null
+++ b/3428/CH15/EX9.15.7/Ex9_15_7.sce
@@ -0,0 +1,12 @@
+//Section-9,Example-3,Page no.-E.9
+//To calculate the equilibrium constant for the disproponation reaction.
+clc;
+E0=0.52-0.16
+R=8.314
+T=298
+n=1
+F=96500
+K=(n*F*E0)/(R*T)
+//K_eq=antilog(K)
+K_eq=%e^K
+disp(K_eq,'Equilibrium constant')