feos.dippr

Ideal gas model based on DIPPR correlations.

Example: Combine a DIPPR ideal gas model with PC-SAFT

from feos.eos import EquationOfState
from feos.pcsaft import PcSaftParameters
from feos.dippr import Dippr

pc_saft_parameters = PcSaftParameters.from_json(
    ['methane', 'ethane'], 
    'pc_saft_parameters.json'
)
dippr = Dippr.from_json(
    ['methane', 'ethane'], 
    'dippr_parameters.json'
)
eos = EquationOfState.pcsaft(pc_saft_parameters).dippr(dippr)

Data types

Identifier

Create an identifier for a pure substance.

IdentifierOption

Possible variants to identify a substance.

DipprRecord

DIPPR ideal gas heat capacity parameters for a pure component.

PureRecord

All information required to characterize a pure component.

Dippr

Ideal gas model based on DIPPR correlations.