Species Thermodynamic Models#
The phase models discussed in the Phase Thermodynamic Models section implement specific models for the thermodynamic properties appropriate for the type of phase or interface they represent. Although each one may use different expressions to compute the properties, they all require thermodynamic property information for the individual species.
Generally, the phase models require a parameterization of the standard state heat
capacity, enthalpy, and entropy for each species at a fixed pressure
Models for Species Standard State Enthalpy, Entropy, and Heat Capacity#
Many of Cantera’s phase thermodynamic models are formulated to make use of the
standard state thermodynamic properties
for individual species, defined at a standard pressure
Caution
In some parts of the Cantera documentation, properties calculated at the user-specified
standard pressure
This nomenclature is fairly unique to Cantera, based on the desire to distinguish these different steps in the calculation of the full thermodynamic properties, and is not often seen in other descriptions of solution thermodynamics.
The necessary properties are:
: the standard-state molar heat capacity at constant pressure as a function of temperature; , the standard-state molar enthalpy as a function of temperature; : the standard-state molar entropy as a function of temperature.
While each of these functions is implemented explicitly in Cantera for computational
efficiency,
and
respectively. This means that a parameterization of
The models described in this section can be used to provide standard state thermodynamic data for each species in a phase. They are implemented by classes deriving from SpeciesThermoInterpType.
Note
There is no requirement that all species in a phase use the same parameterization; each species can use the one most appropriate to represent how the heat capacity depends on temperature.
The NASA 7-Coefficient Polynomial Parameterization#
The NASA 7-coefficient polynomial parameterization is used to compute the species
standard-state thermodynamic properties
The NASA parameterization represents
This model is implemented by the C++ classes NasaPoly1 and NasaPoly2.
Note
This is sometimes referred to as the NASA7 polynomial within Cantera. It was used in the original NASA equilibrium program and in Chemkin, which uses 7 coefficients in each of two temperature regions. It is not compatible with the form used in more recent versions of the NASA equilibrium program, which uses 9 coefficients for each temperature region.
YAML Usage
A NASA7 parameterization can be defined in the YAML format by specifying
NASA7
as the model
in the species thermo
field.
The NASA 9-Coefficient Polynomial Parameterization#
The NASA 9-coefficient polynomial parameterization [McBride et al., 2002], often called NASA9 within Cantera for short, is an extension of the NASA 7-coefficient polynomial parameterization that includes two additional terms in each temperature region and supports an arbitrary number of temperature regions.
The NASA9 parameterization represents the species thermodynamic properties with the following equations:
A common source for species data in the NASA9 format is the NASA ThermoBuild tool. This model is implemented by the C++ classes Nasa9Poly1 and Nasa9PolyMultiTempRegion.
YAML Usage
A NASA-9 parameterization can be defined in the YAML format by specifying
NASA9
as the model
in the species thermo
field.
The Shomate Parameterization#
The Shomate parameterization is:
where
YAML Usage
A Shomate parameterization can be defined in the YAML format by specifying
Shomate
as the model
in the species thermo
field.
Constant Heat Capacity#
In some cases, species properties may only be required at a single temperature or over a narrow temperature range. In such cases, the heat capacity can be approximated as constant, and simple expressions can be used for the thermodynamic properties:
The parameterization uses four constants:
YAML Usage
A constant heat capacity parameterization can be defined in the YAML format by
specifying constant-cp
as the model
in the species thermo
field.
Piecewise Gibbs Free Energy#
This parameterization uses a piecewise interpolation of the Gibbs free energy between specified values, with a constant heat capacity between each pair of interpolation points. This model is implemented by the C++ class Mu0Poly.
YAML Usage
A piecewise Gibbs parameterization can be defined in the YAML format by specifying
piecewise-Gibbs
as the model
in the species thermo
field.
Models for Species Contributions to the Equation of State#
Besides enthalpy, entropy, and heat capacity data, some phase models require additional parameters that describe how each species affects the mechanical equation of state. These models are used in combination with one of the above parameterizations for the standard state enthalpy, entropy, and heat capacity. This applies to most models that represent condensed phases.
Constant Volume Model#
This species equation of state model can be used for phase models that require standard state density information for each species, and simply specifies a constant specific volume, density or molar density for the species. Implemented by the C++ class PDSS_ConstVol.
YAML Usage
A constant volume parameterization can be defined in the YAML format by specifying
constant-volume
as the model
in the species
equation-of-state
field.
Temperature-dependent Density#
This species equation of state model can be used for phase models that require the
standard state molar volume
where
YAML Usage
A temperature-dependent density parameterization can be defined in the YAML format by
specifying density-temperature-polynomial
as the model
in the species equation-of-state
field.
Temperature-dependent Molar Volume#
This species equation of state model can be used for phase models that require the
standard state molar volume
This model is implemented by class PDSS_SSVol.
YAML Usage
A temperature-dependent molar volume parameterization can be defined in the YAML format
by specifying molar-volume-temperature-polynomial
as the model
in the species equation-of-state
field.
Peng-Robinson Equation of State#
This species equation of state model is parameterized using the coefficients
where
These pure-species properties are combined in the multi-species Peng-Robinson phase model, implemented by class PengRobinson.
YAML Usage
A Peng-Robinson parameterization for a species can be defined in the YAML format by
specifying Peng-Robinson
as the model
in the species
equation-of-state
field.
Redlich-Kwong Equation of State#
This species equation of state model is parameterized using the coefficients
where
These pure-species properties are combined in the multi-species Redlich-Kwong phase model, implemented by class RedlichKwongMFTP.
YAML Usage
A Redlich-Kwong parameterization for a species can be defined in the YAML format by
specifying Redlich-Kwong
as the model
in the species
equation-of-state
field.
Other Species Equation of State Models#
The following models provide complete standard state parameterizations for a species, including molar volume, enthalpy, entropy, and heat capacity.
Helgeson-Kirkham-Flowers-Tanger Model#
The Helgeson-Kirkham-Flowers-Tanger model for aqueous species. Implemented by the C++ class PDSS_HKFT.
Liquid Water#
A model for liquid water that uses the IAPWS95 formulation [Wagner and Pruß, 2002]. Implemented by the C++ class PDSS_Water.
YAML Usage
A liquid water parameterization can be defined in the YAML format by specifying
liquid-water-IAPWS95
as the model
in the
species equation-of-state
field.