polykin.thermo.acm¤
UNIQUAC_gamma ¤
UNIQUAC_gamma(
x: FloatVector,
q: FloatVector,
r: FloatVector,
tau: FloatSquareMatrix,
) -> FloatVector
Calculate the activity coefficients of a multicomponent mixture according to the UNIQUAC model.
with:
where \(x_i\) are the mole fractions, \(q_i\) and \(r_i\) denote the pure-component parameters, and \(\tau_{ij}\) are the interaction parameters.
References
- Abrams, D.S. and Prausnitz, J.M. (1975), Statistical thermodynamics of liquid mixtures: A new expression for the excess Gibbs energy of partly or completely miscible systems. AIChE J., 21: 116-128.
- JM Smith, HC Van Ness, MM Abbott. Introduction to chemical engineering thermodynamics, 5th edition, 1996, p. 740-741.
PARAMETER | DESCRIPTION |
---|---|
x
|
Mole fractions of all components. Unit = mol/mol.
TYPE:
|
q
|
Relative surface areas of all components.
TYPE:
|
r
|
Relative volumes of all components.
TYPE:
|
tau
|
Interaction parameters, \(\tau_{ij}\). It is expected (but not checked) that \(\tau_{ii}=1\).
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
FloatVector(N)
|
Activity coefficients of all components. |
See also
UNIQUAC
: related class.
Source code in src/polykin/thermo/acm/uniquac.py
185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 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 248 249 250 |
|