polykin.thermo.flash¤
K_Wilson ¤
K_Wilson(
T: float, P: float, Tc: float, Pc: float, w: float
) -> float
Estimate the K-value of a component in a mixture using the Wilson approximation.
This specific \(K\)-value correlation was developed as a "shortcut" method for providing initial guesses in flash calculations.
References
- Wilson, G. M. A Modified Redlich-Kwong Equation of State: Application to General Physical Data Calculation. AIChE Natl. Meet., Cleveland, 1969.
| PARAMETER | DESCRIPTION |
|---|---|
T
|
Temperature [K].
TYPE:
|
P
|
Pressure [Pa].
TYPE:
|
Tc
|
Critical temperature [K].
TYPE:
|
Pc
|
Critical pressure [Pa].
TYPE:
|
w
|
Acentric factor.
TYPE:
|
Source code in src/polykin/thermo/flash/vle.py
738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 | |