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.1/Ex9_15_1.sce | |
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.1/Ex9_15_1.sce')
-rw-r--r-- | 3428/CH15/EX9.15.1/Ex9_15_1.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/3428/CH15/EX9.15.1/Ex9_15_1.sce b/3428/CH15/EX9.15.1/Ex9_15_1.sce new file mode 100644 index 000000000..99f5c026d --- /dev/null +++ b/3428/CH15/EX9.15.1/Ex9_15_1.sce @@ -0,0 +1,12 @@ +//Section-9,Example-1,Page no.-E.5 +//To calculate the potential of the electrode at 25 degree celcius. +clc; +C=0.1 //Concentration of solution. +C_96=C*(96/100) //Concentration of Zn^2+ at 96% dissociation. +R=8.314 +T=25+273 //Temperature in Kelvin +E_0=-0.76 +n=2 +F=96500 +E=E_0-(((R*T)/(n*F))*log(1/C_96)) +disp(E,'Potential of electrode(V)') |