Equations of state

Types

MultiComponentFlash.GenericCubicEOSType
GenericCubicEOS(mixture)
GenericCubicEOS(mixture, PengRobinson())

Instantiate a generic cubic equation-of-state for a MultiComponentMixture and a specified EOS.

Currently supported choices for second argument:

1. `PengRobinson()` (default)
2. `PengRobinsonCorrected()`
3. `ZudkevitchJoffe()`
4. `RedlichKwong()`
5. `SoaveRedlichKwong()`
source
MultiComponentFlash.ZudkevitchJoffeType
zj = ZudkevitchJoffe(; F_a = (T, c_i) -> 1.0, F_b = (T, c_i) -> 1.0)

Specializes the GenericCubicEOS to the Zudkevitch-Joffe cubic equation of state.

The Zudkevitch-Joffe equations of state allows for per-component functions of temperature that modify the weight_ai and weight_bi functions. These additional fitting parameters allows for more flexibility when matching complex mixtures.

source

Functions

MultiComponentFlash.force_coefficientsMethod
force_coefficients(eos, cond)

Get coefficients for forces for a specific EOS (component interactions). For most cubics, these are a set of attractive (linear and quadratic) forces and a set of linear repulsive forces.

Note that the current implementation of flash assumes that these are independent of the compositions themselves.

See also force_coefficients!

source