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.17 | |
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.17')
-rw-r--r-- | 3428/CH15/EX9.15.17/Ex9_15_17.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/3428/CH15/EX9.15.17/Ex9_15_17.sce b/3428/CH15/EX9.15.17/Ex9_15_17.sce new file mode 100644 index 000000000..cef6ee3cc --- /dev/null +++ b/3428/CH15/EX9.15.17/Ex9_15_17.sce @@ -0,0 +1,13 @@ +//Section-9,Example-1,Page no.-E.23 +//To determine the range of voltmeter to display changes of pH at given conditions. +clc; +E=0 +R=8.314 +T=298 +F=96500 +pH_1=1 +E1_bar=E+(((R*T*log(10))/F)*(7-pH_1)) +pH_7=14 +E2_bar=E+(((R*T*log(10))/F)*(7-pH_7)) +E_bar=E1_bar-E2_bar +disp(E_bar,'Required range of voltmeter(V)') |