diff options
Diffstat (limited to '1427/CH6/EX6.14')
-rw-r--r-- | 1427/CH6/EX6.14/6_14.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/1427/CH6/EX6.14/6_14.sce b/1427/CH6/EX6.14/6_14.sce new file mode 100644 index 000000000..4f26e7f41 --- /dev/null +++ b/1427/CH6/EX6.14/6_14.sce @@ -0,0 +1,13 @@ +//ques-6.14
+//Calculating equilibrium constant for a reaction at 300 K
+clc
+e1=0.355; e2=0.3704;//emf of reduction reactions (in V)
+T=300;//temperature (in K)
+E=e2-e1;
+n=1;//number of electrons used
+F=96500;//(in C)
+G=-n*F*E;
+z=-G/(2.303*8.314*T);
+//On solving, log10(K) = z
+K=1.8;
+printf("The equilibrium constant for the given reaction is %.1f.",K);
|