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/CH11/EX11.3 | |
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/CH11/EX11.3')
-rw-r--r-- | 3689/CH11/EX11.3/11_3.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/3689/CH11/EX11.3/11_3.sce b/3689/CH11/EX11.3/11_3.sce new file mode 100644 index 000000000..e7894193c --- /dev/null +++ b/3689/CH11/EX11.3/11_3.sce @@ -0,0 +1,16 @@ +////Variable Declaration
+E01 = 0.771 //Rx1 : Fe3+ + e- -----> Fe2+
+E02 = -0.447 //Rx2 : Fe2+ + 2e- -----> Fe
+F = 96485 //Faraday constant, C/mol
+[n1,n2,n3] = (1.,2.,3.)
+
+//Calculations
+dG01 = -n1*F*E01
+dG02 = -n2*F*E02
+ //For overall reaction
+dG0 = dG01 + dG02
+E0Fe3byFe = -dG0/(n3*F)
+
+//Results
+printf("\n E0 for overall reaction is %5.3f V",E0Fe3byFe)
+
|