summaryrefslogtreecommitdiff
path: root/1019/CH3/EX3.11/Example_3_11.sce
blob: 4a13039723530c08af4476da57f1c4a5729d9089 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
//Example 3.11
clear;
clc;

//Given 
delHfs = -57.36;//heat of neutralization  in kJ of strong acid and strong base
delHfw = -42.02;//heat of neutralization in kJ of weak acid and weak base

//To determine the heat of ionization of weak acid and weak base
delHi = delHfw-delHfs;//heat of ionization in kJ
mprintf('heat of ionization of weak acid and weak base = %f kJ',delHi);
//end