polykin.properties.vaporization¤
PL_Pitzer ¤
PL_Pitzer(
T: float, Tb: float, Tc: float, Pc: float
) -> float
Estimate the vapor pressure of a pure compound using the Lee-Kesler form of the Pitzer equation.
where \(P_{vap}\) is the vapor pressure, \(P_c\) is the critical pressure, \(\omega\) is the acentric factor, and \(f^{(0)}\) and \(f^{(1)}\) are empirical functions of the reduced temperature.
References
- RC Reid, JM Prausniz, and BE Poling. The properties of gases & liquids 4th edition, 1986, p. 207.
| PARAMETER | DESCRIPTION |
|---|---|
T
|
Temperature. Unit = K.
TYPE:
|
Tb
|
Normal boiling temperature. Unit = K.
TYPE:
|
Tc
|
Critical temperature. Unit = K.
TYPE:
|
Pc
|
Critical pressure. Unit = Pa.
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
float
|
Vapor pressure. Unit = Pa. |
Examples:
Estimate the vapor pressure of butyl acrylate at 25°C.
>>> from polykin.properties.vaporization import PL_Pitzer
>>> pvap = PL_Pitzer(298.15, Tb=420.0, Tc=644.0, Pc=45.40e5)
>>> print(f"{pvap:.1e} Pa")
6.6e+02 Pa
Source code in src/polykin/properties/vaporization/pvap.py
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 | |