polykin.properties.vaporization¤
DHVL_Vetere ¤
DHVL_Vetere(Tb: float, Tc: float, Pc: float) -> float
Calculate the enthalpy of vaporization of a pure compound at the normal boiling point, \(\Delta H_{vb}\), using the Vetere method.
where \(P_c\) is the critical pressure, \(T_c\) is the critical temperature, \(T_b\) is the normal boiling temperature, and \(T_{br}=T_b/T_c\) is the reduced normal boiling temperature.
References
- RC Reid, JM Prausniz, and BE Poling. The properties of gases & liquids 4th edition, 1986, p. 227.
| PARAMETER | DESCRIPTION |
|---|---|
Tb
|
Normal boiling point temperature [K].
TYPE:
|
Tc
|
Critical temperature [K].
TYPE:
|
Pc
|
Critical pressure [Pa].
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
float
|
Vaporization enthalpy at the normal boiling point [J/mol]. |
See Also
DHVL_Kistiakowsky_Vetere: alternative method.DHVL_Pitzer: alternative method.
Examples:
Estimate the vaporization enthalpy of vinyl chloride at the normal boiling temperature.
>>> from polykin.properties.vaporization import DHVL_Vetere
>>> DHVL = DHVL_Vetere(Tb=259.8, Tc=425.0, Pc=51.5e5)
>>> print(f"{DHVL/1e3:.1f} kJ/mol")
21.6 kJ/mol
Source code in src/polykin/properties/vaporization/dhvl.py
72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 | |