summaryrefslogtreecommitdiff
path: root/3428/CH15/EX9.15.4/Ex9_15_4.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /3428/CH15/EX9.15.4/Ex9_15_4.sce
downloadScilab-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.4/Ex9_15_4.sce')
-rw-r--r--3428/CH15/EX9.15.4/Ex9_15_4.sce11
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')
+