polykin.properties.vaporization¤
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 enthalpy is to be computed [K].
TYPE:
|
Tc
|
Critical temperature [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 import DHVL_Watson
>>> DHVL = DHVL_Watson(hvap1=22.9, T1=258.0, T2=273.15+50, Tc=425.0)
>>> print(f"{DHVL:.1f} kJ/mol")
19.0 kJ/mol
Source code in src/polykin/properties/vaporization/dhvl.py
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 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 | |