cantera/interfaces/cython/cantera/thermo.pyx

782 lines
26 KiB
Cython

cdef enum Thermasis:
mass_basis = 0
molar_basis = 1
ctypedef void (*thermoMethod1d)(CxxThermoPhase*, double*) except +
cdef class ThermoPhase(_SolutionBase):
"""
A phase with an equation of state.
Class `ThermoPhase` may be used to represent the intensive thermodynamic
state of a phase of matter, which might be a gas, liquid, or solid.
Class `ThermoPhase` is not usually instantiated directly. It is used
as a base class for classes `Solution` and `Interface`.
"""
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
if 'source' not in kwargs:
self.thermo_basis = mass_basis
def report(self, show_thermo=True):
"""
Generate a report describing the thermodynamic state of this phase. To
print the report to the terminal, simply call the phase object. The
following two statements are equivalent::
>>> phase()
>>> print(phase.report())
"""
return pystr(self.thermo.report(bool(show_thermo)))
def __call__(self):
print(self.report())
property name:
"""
The name assigned to this phase. The default is taken from the CTI/XML
input file.
"""
def __get__(self):
return pystr(self.thermo.name())
def __set__(self, name):
self.thermo.setName(stringify(name))
property ID:
"""
The ID of the phase. The default is taken from the CTI/XML input file.
"""
def __get__(self):
return pystr(self.thermo.id())
def __set__(self, id_):
self.thermo.setID(stringify(id_))
property basis:
"""
Determines whether intensive thermodynamic properties are treated on a
`mass` (per kg) or `molar` (per kmol) basis. This affects the values
returned by the properties `h`, `u`, `s`, `g`, `v`, `density`, `cv`,
and `cp`, as well as the values used with the state-setting properties
such as `HPX` and `UV`.
"""
def __get__(self):
if self.thermo_basis == mass_basis:
return 'mass'
else:
return 'molar'
def __set__(self, value):
if value == 'mass':
self.thermo_basis = mass_basis
elif value == 'molar':
self.thermo_basis = molar_basis
else:
raise ValueError("Valid choices are 'mass' or 'molar'.")
cdef double _mass_factor(self):
""" Conversion factor from current basis to kg """
if self.thermo_basis == molar_basis:
return self.thermo.meanMolecularWeight()
else:
return 1.0
cdef double _mole_factor(self):
""" Conversion factor from current basis to moles """
if self.thermo_basis == mass_basis:
return 1.0/self.thermo.meanMolecularWeight()
else:
return 1.0
def equilibrate(self, XY, solver='auto', double rtol=1e-9,
int maxsteps=1000, int maxiter=100, int loglevel=0):
"""
Set to a state of chemical equilibrium holding property pair
*XY* constant.
:param XY:
A two-letter string, which must be one of the set::
['TP','TV','HP','SP','SV','UV']
:param solver:
Specifies the equilibrium solver to use. May be one of the following:
* ''element_potential'' - a fast solver using the element potential
method
* 'gibbs' - a slower but more robust Gibbs minimization solver
* 'vcs' - the VCS non-ideal equilibrium solver
* "auto" - The element potential solver will be tried first, then
if it fails the gibbs solver will be tried.
:param rtol:
the relative error tolerance.
:param maxsteps:
maximum number of steps in composition to take to find a converged
solution.
:param maxiter:
For the Gibbs minimization solver, this specifies the number of
'outer' iterations on T or P when some property pair other
than TP is specified.
:param loglevel:
Set to a value > 0 to write diagnostic output to a file in HTML
format. Larger values generate more detailed information. The file
will be named ``equilibrate_log.html.`` Subsequent files will be
named ``equilibrate_log1.html``, etc., so that log files are
not overwritten.
"""
cdef int iSolver
if isinstance(solver, int):
iSolver = solver
elif solver == 'auto':
iSolver = -1
elif solver == 'element_potential':
iSolver = 0
elif solver == 'gibbs':
iSolver = 1
elif solver == 'vcs':
iSolver = 2
else:
raise ValueError('Invalid equilibrium solver specified')
XY = XY.upper()
equilibrate(deref(self.thermo), stringify(XY).c_str(),
iSolver, rtol, maxsteps, maxiter, loglevel)
####### Composition, species, and elements ########
property n_elements:
"""Number of elements."""
def __get__(self):
return self.thermo.nElements()
cpdef int element_index(self, element) except *:
"""
The index of element *element*, which may be specified as a string or
an integer. In the latter case, the index is checked for validity and
returned. If no such element is present, an exception is thrown.
"""
if isinstance(element, (str, unicode)):
index = self.thermo.elementIndex(stringify(element))
elif isinstance(element, (int, float)):
index = <int>element
else:
raise TypeError("'element' must be a string or a number")
if not 0 <= index < self.n_elements:
raise ValueError('No such element.')
return index
def element_name(self, m):
"""Name of the element with index *m*."""
return pystr(self.thermo.elementName(m))
property element_names:
"""A list of all the element names."""
def __get__(self):
return [self.element_name(m) for m in range(self.n_elements)]
property n_species:
"""Number of species."""
def __get__(self):
return self.thermo.nSpecies()
def species_name(self, k):
"""Name of the species with index *k*."""
return pystr(self.thermo.speciesName(k))
property species_names:
"""A list of all the species names."""
def __get__(self):
if self._selected_species.size:
indices = self._selected_species
else:
indices = range(self.n_species)
return [self.species_name(k) for k in indices]
cpdef int species_index(self, species) except *:
"""
The index of species *species*, which may be specified as a string or
an integer. In the latter case, the index is checked for validity and
returned. If no such species is present, an exception is thrown.
"""
if isinstance(species, (str, unicode)):
index = self.thermo.speciesIndex(stringify(species))
elif isinstance(species, (int, float)):
index = <int>species
else:
raise TypeError("'species' must be a string or a number")
if not 0 <= index < self.n_species:
raise ValueError('No such species.')
return index
def n_atoms(self, species, element):
"""
Number of atoms of element *element* in species *species*. The element
and species may be specified by name or by index.
>>> phase.n_atoms('CH4','H')
4
"""
return self.thermo.nAtoms(self.species_index(species),
self.element_index(element))
cdef np.ndarray _getArray1(self, thermoMethod1d method):
cdef np.ndarray[np.double_t, ndim=1] data = np.empty(self.n_species)
method(self.thermo, &data[0])
if self._selected_species.size:
return data[self._selected_species]
else:
return data
cdef void _setArray1(self, thermoMethod1d method, values) except *:
if len(values) != self.n_species:
raise ValueError("Array has incorrect length")
cdef np.ndarray[np.double_t, ndim=1] data = \
np.ascontiguousarray(values, dtype=np.double)
method(self.thermo, &data[0])
property molecular_weights:
"""Array of species molecular weights (molar masses) [kg/kmol]."""
def __get__(self):
return self._getArray1(thermo_getMolecularWeights)
property mean_molecular_weight:
"""The mean molecular weight (molar mass) [kg/kmol]."""
def __get__(self):
return self.thermo.meanMolecularWeight()
property Y:
"""
Get/Set the species mass fractions. Can be set as either an array or
as a string. Always returns an array::
>>> phase.Y = [0.1, 0, 0, 0.4, 0, 0, 0, 0, 0.5]
>>> phase.Y = 'H2:0.1, O2:0.4, AR:0.5'
>>> phase.Y
array([0.1, 0, 0, 0.4, 0, 0, 0, 0, 0.5])
"""
def __get__(self):
return self._getArray1(thermo_getMassFractions)
def __set__(self, Y):
if isinstance(Y, (str, unicode)):
self.thermo.setMassFractionsByName(stringify(Y))
else:
self._setArray1(thermo_setMassFractions, Y)
property X:
"""
Get/Set the species mole fractions. Can be set as either an array or
as a string. Always returns an array::
>>> phase.X = [0.1, 0, 0, 0.4, 0, 0, 0, 0, 0.5]
>>> phase.X = 'H2:0.1, O2:0.4, AR:0.5'
>>> phase.X
array([0.1, 0, 0, 0.4, 0, 0, 0, 0, 0.5])
"""
def __get__(self):
return self._getArray1(thermo_getMoleFractions)
def __set__(self, X):
if isinstance(X, (str, unicode)):
self.thermo.setMoleFractionsByName(stringify(X))
else:
self._setArray1(thermo_setMoleFractions, X)
property concentrations:
"""Get/Set the species concentrations [kmol/m^3]."""
def __get__(self):
return self._getArray1(thermo_getConcentrations)
def __set__(self, C):
self._setArray1(thermo_setConcentrations, C)
######## Read-only thermodynamic properties ########
property P:
"""Pressure [Pa]."""
def __get__(self):
return self.thermo.pressure()
property T:
"""Temperature [K]."""
def __get__(self):
return self.thermo.temperature()
property density:
"""Density [kg/m^3 or kmol/m^3] depending on `basis`."""
def __get__(self):
return self.thermo.density() / self._mass_factor()
property density_mass:
"""(Mass) density [kg/m^3]."""
def __get__(self):
return self.thermo.density()
property density_mole:
"""Molar density [kmol/m^3]."""
def __get__(self):
return self.thermo.molarDensity()
property v:
"""Specific volume [m^3/kg or m^3/kmol] depending on `basis`."""
def __get__(self):
return self._mass_factor() / self.thermo.density()
property volume_mass:
"""Specific volume [m^3/kg]."""
def __get__(self):
return 1.0 / self.thermo.density()
property volume_mole:
"""Molar volume [m^3/kmol]."""
def __get__(self):
return self.thermo.molarVolume()
property u:
"""Internal energy in [J/kg or J/kmol]."""
def __get__(self):
return self.thermo.intEnergy_mole() * self._mole_factor()
property int_energy_mole:
"""Molar internal energy [J/kmol]."""
def __get__(self):
return self.thermo.intEnergy_mole()
property int_energy_mass:
"""Specific internal energy [J/kg]."""
def __get__(self):
return self.thermo.intEnergy_mass()
property h:
"""Enthalpy [J/kg or J/kmol] depending on `basis`."""
def __get__(self):
return self.thermo.enthalpy_mole() * self._mole_factor()
property enthalpy_mole:
"""Molar enthalpy [J/kmol]."""
def __get__(self):
return self.thermo.enthalpy_mole()
property enthalpy_mass:
"""Specific enthalpy [J/kg]."""
def __get__(self):
return self.thermo.enthalpy_mass()
property s:
"""Entropy [J/kg/K or J/kmol/K] depending on `basis`."""
def __get__(self):
return self.thermo.entropy_mole() * self._mole_factor()
property entropy_mole:
"""Molar entropy [J/kmol/K]."""
def __get__(self):
return self.thermo.entropy_mole()
property entropy_mass:
"""Specific entropy [J/kg]."""
def __get__(self):
return self.thermo.entropy_mass()
property g:
"""Gibbs free energy [J/kg or J/kmol] depending on `basis`."""
def __get__(self):
return self.thermo.gibbs_mole() * self._mole_factor()
property gibbs_mole:
"""Molar Gibbs free energy [J/kmol]."""
def __get__(self):
return self.thermo.gibbs_mole()
property gibbs_mass:
"""Specific Gibbs free energy [J/kg]."""
def __get__(self):
return self.thermo.gibbs_mass()
property cv:
"""
Heat capacity at constant volume [J/kg/K or J/kmol/K] depending on
`basis`.
"""
def __get__(self):
return self.thermo.cv_mole() * self._mole_factor()
property cv_mole:
"""Molar heat capacity at constant volume [J/kmol/K]."""
def __get__(self):
return self.thermo.cv_mole()
property cv_mass:
"""Specific heat capacity at constant volume [J/kg/K]."""
def __get__(self):
return self.thermo.cv_mass()
property cp:
"""
Heat capacity at constant pressure [J/kg/K or J/kmol/K] depending
on `basis`.
"""
def __get__(self):
return self.thermo.cp_mole() * self._mole_factor()
property cp_mole:
"""Molar heat capacity at constant pressure [J/kmol/K]."""
def __get__(self):
return self.thermo.cp_mole()
property cp_mass:
"""Specific heat capacity at constant pressure [J/kg/K]."""
def __get__(self):
return self.thermo.cp_mass()
######## Methods to get/set the complete thermodynamic state ########
property TD:
"""Get/Set temperature [K] and density [kg/m^3 or kmol/m^3]."""
def __get__(self):
return self.T, self.density
def __set__(self, values):
self.thermo.setState_TR(values[0], values[1] * self._mass_factor())
property TDX:
"""
Get/Set temperature [K], density [kg/m^3 or kmol/m^3], and mole
fractions.
"""
def __get__(self):
return self.T, self.density, self.X
def __set__(self, values):
self.X = values[2]
self.TD = values[:2]
property TDY:
"""
Get/Set temperature [K] and density [kg/m^3 or kmol/m^3], and mass
fractions.
"""
def __get__(self):
return self.T, self.density, self.Y
def __set__(self, values):
self.Y = values[2]
self.TD = values[:2]
property TP:
"""Get/Set temperature [K] and pressure [Pa]."""
def __get__(self):
return self.T, self.P
def __set__(self, values):
self.thermo.setState_TP(values[0], values[1])
property TPX:
"""Get/Set temperature [K], pressure [Pa], and mole fractions."""
def __get__(self):
return self.T, self.P, self.X
def __set__(self, values):
self.X = values[2]
self.TP = values[:2]
property TPY:
"""Get/Set temperature [K], pressure [Pa], and mass fractions."""
def __get__(self):
return self.T, self.P, self.Y
def __set__(self, values):
self.Y = values[2]
self.TP = values[:2]
property UV:
"""
Get/Set internal energy [J/kg or J/kmol] and specific volume
[m^3/kg or m^3/kmol].
"""
def __get__(self):
return self.u, self.v
def __set__(self, values):
self.thermo.setState_UV(values[0] / self._mass_factor(),
values[1] / self._mass_factor())
property UVX:
"""
Get/Set internal energy [J/kg or J/kmol], specific volume
[m^3/kg or m^3/kmol], and mole fractions.
"""
def __get__(self):
return self.u, self.v, self.X
def __set__(self, values):
self.X = values[2]
self.UV = values[:2]
property UVY:
"""
Get/Set internal energy [J/kg or J/kmol], specific volume
[m^3/kg or m^3/kmol], and mass fractions.
"""
def __get__(self):
return self.u, self.v, self.Y
def __set__(self, values):
self.Y = values[2]
self.UV = values[:2]
property HP:
"""Get/Set enthalpy [J/kg or J/kmol] and pressure [Pa]."""
def __get__(self):
return self.h, self.P
def __set__(self, values):
self.thermo.setState_HP(values[0] / self._mass_factor(), values[1])
property HPX:
"""Get/Set enthalpy [J/kg or J/kmol], pressure [Pa] and mole fractions."""
def __get__(self):
return self.h, self.P, self.X
def __set__(self, values):
self.X = values[2]
self.HP = values[:2]
property HPY:
"""Get/Set enthalpy [J/kg or J/kmol], pressure [Pa] and mass fractions."""
def __get__(self):
return self.h, self.P, self.Y
def __set__(self, values):
self.Y = values[2]
self.HP = values[:2]
property SP:
"""Get/Set entropy [J/kg/K or J/kmol/K] and pressure [Pa]."""
def __get__(self):
return self.s, self.P
def __set__(self, values):
self.thermo.setState_SP(values[0] / self._mass_factor(), values[1])
property SPX:
"""Get/Set entropy [J/kg/K or J/kmol/K], pressure [Pa], and mole fractions."""
def __get__(self):
return self.s, self.P, self.X
def __set__(self, values):
self.X = values[2]
self.SP = values[:2]
property SPY:
"""Get/Set entropy [J/kg/K or J/kmol/K], pressure [Pa], and mass fractions."""
def __get__(self):
return self.s, self.P, self.Y
def __set__(self, values):
self.Y = values[2]
self.SP = values[:2]
# partial molar / non-dimensional properties
property partial_molar_enthalpies:
"""Array of species partial molar enthalpies [J/kmol]."""
def __get__(self):
return self._getArray1(thermo_getPartialMolarEnthalpies)
property partial_molar_entropies:
"""Array of species partial molar entropies [J/kmol/K]."""
def __get__(self):
return self._getArray1(thermo_getPartialMolarEntropies)
property partial_molar_int_energies:
"""Array of species partial molar internal energies [J/kmol]."""
def __get__(self):
return self._getArray1(thermo_getPartialMolarIntEnergies)
property chemical_potentials:
"""Array of species chemical potentials [J/kmol]."""
def __get__(self):
return self._getArray1(thermo_getChemPotentials)
property electrochemical_potentials:
"""Array of species electrochemical potentials [J/kmol]."""
def __get__(self):
return self._getArray1(thermo_getElectrochemPotentials)
property partial_molar_cp:
"""
Array of species partial molar specific heat capacities at constant
pressure [J/kmol/K].
"""
def __get__(self):
return self._getArray1(thermo_getPartialMolarCp)
property partial_molar_volumes:
"""Array of species partial molar volumes [m^3/kmol]."""
def __get__(self):
return self._getArray1(thermo_getPartialMolarVolumes)
property standard_enthalpies_RT:
"""
Array of nondimensional species standard-state enthalpies at the
current temperature and pressure.
"""
def __get__(self):
return self._getArray1(thermo_getEnthalpy_RT)
property standard_entropies_R:
"""
Array of nondimensional species standard-state entropies at the
current temperature and pressure.
"""
def __get__(self):
return self._getArray1(thermo_getEntropy_R)
property standard_int_energies_RT:
"""
Array of nondimensional species standard-state internal energies at the
current temperature and pressure.
"""
def __get__(self):
return self._getArray1(thermo_getIntEnergy_RT)
property standard_gibbs_RT:
"""
Array of nondimensional species standard-state Gibbs free energies at
the current temperature and pressure.
"""
def __get__(self):
return self._getArray1(thermo_getGibbs_RT)
property standard_cp_R:
"""
Array of nondimensional species standard-state specific heat capacities
at constant pressure at the current temperature and pressure.
"""
def __get__(self):
return self._getArray1(thermo_getCp_R)
######## Miscellaneous properties ########
property isothermal_compressibility:
"""Isothermal compressibility [1/Pa]."""
def __get__(self):
return self.thermo.isothermalCompressibility()
property thermal_expansion_coeff:
"""Thermal expansion coefficient [1/K]."""
def __get__(self):
return self.thermo.thermalExpansionCoeff()
property min_temp:
"""
Minimum temperature for which the thermodynamic data for the phase are
valid.
"""
def __get__(self):
return self.thermo.minTemp()
property max_temp:
"""
Maximum temperature for which the thermodynamic data for the phase are
valid.
"""
def __get__(self):
return self.thermo.maxTemp()
property reference_pressure:
"""Reference state pressure [Pa]."""
def __get__(self):
return self.thermo.refPressure()
property electric_potential:
"""Get/Set the electric potential [V] for this phase."""
def __get__(self):
return self.thermo.electricPotential()
def __set__(self, double value):
self.thermo.setElectricPotential(value)
def element_potentials(self):
"""
Get the array of element potentials. The element potentials are only
defined for equilibrium states. This method first sets the composition
to a state of equilibrium at constant T and P, then computes the
element potentials for this equilibrium state.
"""
self.equilibrate('TP')
cdef np.ndarray[np.double_t, ndim=1] data = np.zeros(self.n_elements)
self.thermo.getElementPotentials(&data[0])
return data
cdef class InterfacePhase(ThermoPhase):
""" A class representing a surface or edge phase"""
cdef CxxSurfPhase* surf
def __cinit__(self, *args, **kwargs):
if self.thermo.eosType() not in (thermo_type_surf, thermo_type_edge):
raise TypeError('Underlying ThermoPhase object is of the wrong type.')
self.surf = <CxxSurfPhase*>(self.thermo)
property site_density:
"""
Get/Set the site density. [kmol/m^2] for surface phases; [kmol/m] for
edge phases.
"""
def __get__(self):
return self.surf.siteDensity()
def __set__(self, double value):
self.surf.setSiteDensity(value)
property coverages:
"""Get/Set the fraction of sites covered by each species."""
def __get__(self):
cdef np.ndarray[np.double_t, ndim=1] data = np.empty(self.n_species)
self.surf.getCoverages(&data[0])
if self._selected_species.size:
return data[self._selected_species]
else:
return data
def __set__(self, theta):
if len(theta) != self.n_species:
raise ValueError("Array has incorrect length")
cdef np.ndarray[np.double_t, ndim=1] data = \
np.ascontiguousarray(theta, dtype=np.double)
self.surf.setCoverages(&data[0])
cdef class PureFluid(ThermoPhase):
"""
A pure substance that can be a gas, a liquid, a mixed gas-liquid fluid,
or a fluid beyond its critical point.
"""
property critical_temperature:
"""Critical temperature [K]."""
def __get__(self):
return self.thermo.critTemperature()
property critical_pressure:
"""Critical pressure [Pa]."""
def __get__(self):
return self.thermo.critPressure()
property critical_density:
"""Critical density [kg/m^3 or kmol/m^3] depending on `basis`."""
def __get__(self):
return self.thermo.critDensity() / self._mass_factor()
property P_sat:
"""Saturation pressure [Pa] at the current temperature."""
def __get__(self):
return self.thermo.satPressure(self.T)
property T_sat:
"""Saturation temperature [K] at the current pressure."""
def __get__(self):
return self.thermo.satTemperature(self.P)
property X:
"""Vapor fraction (quality)."""
def __get__(self):
return self.thermo.vaporFraction()
property TX:
"""Get/Set the temperature and vapor fraction of a two-phase state."""
def __get__(self):
return self.T, self.X
def __set__(self, values):
self.thermo.setState_Tsat(values[0], values[1])
property PX:
"""Get/Set the pressure and vapor fraction of a two-phase state."""
def __get__(self):
return self.P, self.X
def __set__(self, values):
self.thermo.setState_Psat(values[0], values[1])