summaryrefslogtreecommitdiff
path: root/3876/CH9/EX9.2/Ex9_2.sce
blob: 66f93c3451d4c8be6f591f3adf67c80af763914d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//Chapter 9 Ionic Equilibria and Buffer Action

clc;
clear;

//Initialisation of Variables
k= 1.8*10**-5
C= 0.2 //M
T= 25 //C

//CALCULATIONS
x= sqrt(C*k)
a= x/C
C1= a*C

//RESULTS
mprintf("Hydronium-ion concentration = %.2e mole per litre",C1)