polykin.properties.pvt¤
pseudocritical_properties ¤
pseudocritical_properties(
y: FloatVector,
Tc: FloatVector,
Pc: FloatVector,
Zc: FloatVector,
w: FloatVector | None = None,
) -> tuple[float, float, float, float, float]
Calculate the pseudocritial properties of a mixture to use in corresponding states correlations.
where the meaning of the parameters is as defined below.
References
- RC Reid, JM Prausniz, and BE Poling. The properties of gases & liquids 4th edition, 1986, p. 76-77.
| PARAMETER | DESCRIPTION |
|---|---|
y
|
Mole fractions of all components. Unit = mol/mol.
TYPE:
|
Tc
|
Critical temperatures of all components. Unit = K.
TYPE:
|
Pc
|
Critical pressures of all components. Unit = Pa.
TYPE:
|
Zc
|
Critical compressibility factors of all components.
TYPE:
|
w
|
Acentric factors of all components.
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
tuple[float, float, float, float, float]
|
Tuple of pseudocritial properties, \((T_{cm}, P_{cm}, v_{cm}, Z_{cm}, \omega_{cm})\). |
Source code in src/polykin/properties/pvt/mixing_rules.py
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 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 | |