diff options
Diffstat (limited to '3428/CH15/EX9.15.4')
-rw-r--r-- | 3428/CH15/EX9.15.4/Ex9_15_4.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/3428/CH15/EX9.15.4/Ex9_15_4.sce b/3428/CH15/EX9.15.4/Ex9_15_4.sce new file mode 100644 index 000000000..8cfe7d0db --- /dev/null +++ b/3428/CH15/EX9.15.4/Ex9_15_4.sce @@ -0,0 +1,11 @@ +//Section-9,Example-4,Page no.-E.6 +//To calcuate the pH of unknown solution. +clc; +R=8.314 +T=298 +F=96500 +E=0.4188 +E_ref=0.2415 +pH=(E-E_ref)/((2.303*R*T)/F) +disp(pH,'pH of the unknown solution') + |