summaryrefslogtreecommitdiff
path: root/3876/CH14/EX14.4/Ex14_4.sce
diff options
context:
space:
mode:
Diffstat (limited to '3876/CH14/EX14.4/Ex14_4.sce')
-rw-r--r--3876/CH14/EX14.4/Ex14_4.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/3876/CH14/EX14.4/Ex14_4.sce b/3876/CH14/EX14.4/Ex14_4.sce
new file mode 100644
index 000000000..e327efecd
--- /dev/null
+++ b/3876/CH14/EX14.4/Ex14_4.sce
@@ -0,0 +1,16 @@
+//Chapter 14 Determination of Hydroniumion Concentrations
+
+clc;
+clear;
+
+//Initialisation of Variables
+E= 0.527 //v
+T= 25 //C
+R= 0.0592
+e= -0.246 //v
+
+//CALCULATIONS
+pH= -(-E-e)/R
+
+//RESULTS
+mprintf("pH of the unknown solution= %.2f",pH);