Mixtures

MultiComponentFlash.MolecularPropertyMethod
MolecularProperty("Name")

Convenience constructor that looks up molecular properties from a table in tabulated_properties.

The properties are taken from the wonderful MIT-licensed CoolProp. Please note that the equations of state included in this module may not be appropriate for all the available species included in CoolProp, especially for mixtures!

See list of species at CoolProp website.

source
MultiComponentFlash.MolecularPropertyMethod
MolecularProperty(; mw, p_c, T_c, V_c, acentric_factor = 0.0)

Keyword constructor version of MolecularProperty. Except for the acentric factor, all properties must be specified. Explanation of inputs:

mw: Molar mass (kg / mol) pc: Critical pressure (Pa) Tc: Critical temperature (°K) Vc: Critical volume (m^3 / mol) acentricfactor (dimensionless)

source
MultiComponentFlash.MultiComponentMixtureType
MultiComponentMixture(properties::NTuple{N, MolecularProperty}; A_ij = nothing, names = ["C1", "C2", ...], name = "UnnamedMixture")

Create a multicomponent mixture with an optional binary interaction coefficient matrix A_ij.

source