Mixtures
MultiComponentFlash.MolecularProperty
MultiComponentFlash.MolecularProperty
MultiComponentFlash.MolecularProperty
MultiComponentFlash.MultiComponentMixture
MultiComponentFlash.MultiComponentMixture
MultiComponentFlash.acentric_factor
MultiComponentFlash.critical_pressure
MultiComponentFlash.critical_temperature
MultiComponentFlash.critical_volume
MultiComponentFlash.molar_weight
MultiComponentFlash.number_of_components
MultiComponentFlash.acentric_factor
— MethodGet the acentric factorfor a species.
MultiComponentFlash.critical_pressure
— MethodGet the critical pressure for a species.
MultiComponentFlash.critical_temperature
— MethodGet the critical temperature for a species.
MultiComponentFlash.critical_volume
— MethodGet the critical volume for a species.
MultiComponentFlash.molar_weight
— MethodGet the molar weight for a species.
MultiComponentFlash.number_of_components
— Methodnumber_of_components(mixture)
Return number of components in the MultiComponentMixture
.
MultiComponentFlash.MolecularProperty
— TypeMolecularProperty(molar_mass, p_crit, T_crit, V_crit, acentric_factor = 0.0)
Type that defines the static properties of a molecular species.
MultiComponentFlash.MolecularProperty
— MethodMolecularProperty("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.
MultiComponentFlash.MolecularProperty
— MethodMolecularProperty(; 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)
MultiComponentFlash.MultiComponentMixture
— TypeMultiComponentMixture(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
.
MultiComponentFlash.MultiComponentMixture
— MethodMultiComponentMixture(names::Vector{String}; A_ij = nothing, name = "UnnamedMixture")
Create a multicomponent mixture using name lookup for species.