blob: 876a0a7ed279db14e91162a54da7b90d69896d64 (
plain)
1
2
3
4
5
6
7
8
9
|
//clc()
//C2H5OH(l) + CH3COOH(l) = C2H5COOCH3(l) + H2O(l) H = ?
Hc2h5oh = -1366.91;//kJ/mol
Hch3cooh = -871.69;//kJ/mol
Hc2h5cooch3 = -2274.48;//kJ/mol
//to calculate heat of reaction from the heat of combustion data ,
//Hreac = Hreac - Hprod
Hreac = Hc2h5oh + Hch3cooh - Hc2h5cooch3;
disp("kJ",Hreac,"Heat of reaction for the esterification of ethyl alcohol with acetic acid = ")
|