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 /1427/CH6/EX6.8 | |
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 '1427/CH6/EX6.8')
-rw-r--r-- | 1427/CH6/EX6.8/6_8.sce | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/1427/CH6/EX6.8/6_8.sce b/1427/CH6/EX6.8/6_8.sce new file mode 100644 index 000000000..d8d162576 --- /dev/null +++ b/1427/CH6/EX6.8/6_8.sce @@ -0,0 +1,10 @@ +//ques-6.8
+//Calculating standard emf and emf generated
+clc
+e1=1.7; e2=-0.31;//emfs of two half-cell reactions (in V)
+C1=0.1;//concentration of hydrogen ion (in M)
+C2=2;//concentration of sulphate ion (in M)
+n=2;//number of electrons
+Es=e1-e2;//standard emf (in V)
+E=Es-(0.0592/n)*log10(1/(C1^4*C2^2));
+printf("The standard emf is %.2f V and emf generated is %.2f V.",Es,E);
|