blob: e327efecd019bad60aec31644e4186d1ef98ef52 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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);
|