blob: 6c9273bb00315bd7f5ab604a902f71e7d2bf5e26 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
//Engineering and Chemical Thermodynamics
//Example 6.2
//Page no :261
clear ; clc ;
//Given
slop = -4222.1 ;
R = 8.314 ;
del_h_vap = -R * slop * 10^-3 ;
disp(" Example: 6.2 Page no : 261") ;
printf("\n Enthalpy of vapourisation of Ga(CH3)3 = %.1f kJ/mol",del_h_vap) ;
|