Utilities

Partial derivatives

Experimental features

Functions for obtaining partial derivatives of the flashed results. Please note that this is an experimental feature. Examples of usage are found in the unit tests.

MultiComponentFlash.set_partialsMethod
set_partials(v, storage, eos, c, index)

Modify a value v of ForwardDiff.Dual type to get the correct derivatives.

If the mixture is two-phase, the partial derivatives of phase molar fractions and vapor fraction with respect to the flash conditions (pressure, temperature and overall mole fractions) are not trivial. This function is the main gateway for setting these values.

Notes

Experimental interface, subject to change. You most likely want to use either set_partials_phase_mole_fractions! or set_partials_vapor_fraction

In order for this routine to work, the storage must be initialized using flash_storage with the following options enabled:

  • inc_jac = true
  • diff_externals = true

and inverse_flash_update! must be called after a successful flash. The partial derivatives with respect to p, T, z is then contained in storage.buf_inv with a negative sign. This function then performs the requisite chain rule operations for the input.

source

Coupling utilities

Experimental features

Utilities for coupling flash to simulation codes. Please note that this is an experimental feature.

MultiComponentFlash.lbc_viscositiesMethod
lbc_viscosities(eos, p, T, flashed_mixture)

Compute phase viscosities for a flashed two-phase mixture using the LBC correlation.

Always returns a named tuple of (μl, μv), even if the mixture is single-phase.

The value in the absent phase will be that of the present phase for single-phase conditions.

source
MultiComponentFlash.mass_densitiesMethod
mass_densities(eos, p, T, flashed_mixture)

Compute mass densities for a flashed two-phase mixture.

Always returns a named tuple of (ρl, ρv), even if the mixture is single-phase.

The value in the absent phase will be that of the present phase for single-phase conditions.

source
MultiComponentFlash.phase_saturationsMethod
phase_saturations(eos, p, T, flashed_mixture)

Compute phase saturations for a flashed two-phase mixture.

Always returns a named tuple of (Sl, Sv), even if the mixture is single-phase.

The value in the absent phase will be zero.

source

Various

MultiComponentFlash.single_phase_labelMethod
single_phase_label(mixture, cond)

Li's method for single-phase labeling of a mixture. Estimate of pure vapor/liquid.

Returns a vapor fraction that is either 1.0 (=pure vapor) or 0.0 (=pure liquid).

source