polykin.properties.vaporization_enthalpy¤
DHVL_Watson ¤
DHVL_Watson(
hvap1: float, T1: float, T2: float, Tc: float
) -> float
Calculate the variation of the vaporization enthalpy of a pure compound with temperature using the Watson method.
where \(T_{r,i}=T_i/T_c\).
References
- RC Reid, JM Prausniz, and BE Poling. The properties of gases & liquids 4th edition, 1986, p. 228.
PARAMETER | DESCRIPTION |
---|---|
hvap1
|
Vaporization enthalpy at
TYPE:
|
T1
|
Temperature corresponding to
TYPE:
|
T2
|
Temperature at which the vaporization temperature is to be computed. Unit = K.
TYPE:
|
Tc
|
Critical temperature. Unit = K.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
float
|
Vaporization temperature at |
Examples:
Estimate the vaporization enthalpy of vinyl chloride at 50°C from the known value at the normal boiling temperature.
>>> from polykin.properties.vaporization_enthalpy import DHVL_Watson
>>> DHVL = DHVL_Watson(hvap1=22.9, T1=258., T2=273.15+50, Tc=425.)
>>> print(f"{DHVL:.1f} kJ/mol")
19.0 kJ/mol
Source code in src/polykin/properties/vaporization_enthalpy.py
203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 |
|