Cantera  2.1.2
Public Member Functions | Protected Attributes | Private Member Functions | Friends | List of all members

A species thermodynamic property manager for a phase. More...

#include <GeneralSpeciesThermo.h>

Inheritance diagram for GeneralSpeciesThermo:
[legend]
Collaboration diagram for GeneralSpeciesThermo:
[legend]

Public Member Functions

 GeneralSpeciesThermo ()
 Constructor. More...
 
 GeneralSpeciesThermo (const GeneralSpeciesThermo &b)
 Copy constructor. More...
 
GeneralSpeciesThermooperator= (const GeneralSpeciesThermo &b)
 Assignment operator. More...
 
virtual ~GeneralSpeciesThermo ()
 Destructor. More...
 
virtual SpeciesThermoduplMyselfAsSpeciesThermo () const
 Duplication routine for objects derived from SpeciesThermo. More...
 
virtual void install (const std::string &name, size_t index, int type, const doublereal *c, doublereal minTemp, doublereal maxTemp, doublereal refPressure)
 Install a new species thermodynamic property parameterization for one species. More...
 
virtual void install_STIT (SpeciesThermoInterpType *stit_ptr)
 Install a new species thermodynamic property parameterization for one species. More...
 
void installPDSShandler (size_t k, PDSS *PDSS_ptr, VPSSMgr *vpssmgr_ptr)
 Install a PDSS object to handle the reference state thermodynamics calculation. More...
 
virtual void update_one (size_t k, doublereal T, doublereal *cp_R, doublereal *h_RT, doublereal *s_R) const
 Like update(), but only updates the single species k. More...
 
virtual void update (doublereal T, doublereal *cp_R, doublereal *h_RT, doublereal *s_R) const
 Compute the reference-state properties for all species. More...
 
virtual doublereal minTemp (size_t k=npos) const
 Minimum temperature. More...
 
virtual doublereal maxTemp (size_t k=npos) const
 Maximum temperature. More...
 
virtual doublereal refPressure (size_t k=npos) const
 The reference-state pressure for species k. More...
 
virtual int reportType (size_t index) const
 This utility function reports the type of parameterization used for the species with index number index. More...
 
virtual void reportParams (size_t index, int &type, doublereal *const c, doublereal &minTemp, doublereal &maxTemp, doublereal &refPressure) const
 
- Public Member Functions inherited from SpeciesThermo
 SpeciesThermo ()
 Constructor. More...
 
virtual ~SpeciesThermo ()
 Destructor. More...
 
 SpeciesThermo (const SpeciesThermo &right)
 Copy Constructor for the SpeciesThermo object. More...
 
SpeciesThermooperator= (const SpeciesThermo &right)
 Assignment operator for the SpeciesThermo object. More...
 

Protected Attributes

std::vector
< SpeciesThermoInterpType * > 
m_sp
 This is the main unknown in the object. More...
 
doublereal m_tlow_max
 Maximum value of the lowest temperature. More...
 
doublereal m_thigh_min
 Minimum value of the highest temperature. More...
 
doublereal m_p0
 reference pressure (Pa) More...
 
size_t m_kk
 Internal variable indicating the length of the number of species in the phase. More...
 

Private Member Functions

SpeciesThermoInterpTypeprovideSTIT (size_t k)
 Provide the SpeciesthermoInterpType object. More...
 

Friends

class VPSSMgr
 Make the class VPSSMgr a friend because we need to access the function provideSTIT() More...
 

Additional Inherited Members

- Public Attributes inherited from SpeciesThermo
bool m_allow_discontinuities
 

Detailed Description

A species thermodynamic property manager for a phase.

This is a general manager that can handle a wide variety of species thermodynamic polynomials for individual species. It is slow, however, because it recomputes the functions of temperature needed for each species. What it does is to create a vector of SpeciesThermoInterpType objects.

Definition at line 31 of file GeneralSpeciesThermo.h.

Constructor & Destructor Documentation

Copy constructor.

Parameters
bObject to be copied

Definition at line 35 of file GeneralSpeciesThermo.cpp.

References SpeciesThermoInterpType::duplMyselfAsSpeciesThermoInterpType(), GeneralSpeciesThermo::m_kk, and GeneralSpeciesThermo::m_sp.

~GeneralSpeciesThermo ( )
virtual

Destructor.

Definition at line 75 of file GeneralSpeciesThermo.cpp.

References GeneralSpeciesThermo::m_kk, and GeneralSpeciesThermo::m_sp.

Member Function Documentation

GeneralSpeciesThermo & operator= ( const GeneralSpeciesThermo b)
SpeciesThermo * duplMyselfAsSpeciesThermo ( ) const
virtual

Duplication routine for objects derived from SpeciesThermo.

This function can be used to duplicate objects derived from SpeciesThermo even if the application only has a pointer to SpeciesThermo to work with.

Implements SpeciesThermo.

Definition at line 88 of file GeneralSpeciesThermo.cpp.

References GeneralSpeciesThermo::GeneralSpeciesThermo().

void install ( const std::string &  name,
size_t  index,
int  type,
const doublereal *  c,
doublereal  minTemp,
doublereal  maxTemp,
doublereal  refPressure 
)
virtual

Install a new species thermodynamic property parameterization for one species.

Install a SpeciesThermoInterpType object for the species, index. This routine contains an internal list of SpeciesThermoInterpType objects that it knows about. A factory-type lookup is done to create the object.

Parameters
nameName of the species
indexThe 'update' method will update the property values for this species at position i index in the property arrays.
typeint flag specifying the type of parameterization to be installed.
cvector of coefficients for the parameterization. This vector is simply passed through to the parameterization constructor. Its length depends upon the parameterization.
minTempminimum temperature for which this parameterization is valid.
maxTempmaximum temperature for which this parameterization is valid.
refPressurestandard-state pressure for this parameterization.
See Also
speciesThermoTypes.h
Todo:
Create a factory method for SpeciesThermoInterpType. That's basically what we are doing here.

Implements SpeciesThermo.

Definition at line 93 of file GeneralSpeciesThermo.cpp.

References ADSORBATE, CONSTANT_CP, Cantera::int2str(), GeneralSpeciesThermo::m_kk, GeneralSpeciesThermo::m_sp, GeneralSpeciesThermo::m_thigh_min, GeneralSpeciesThermo::m_tlow_max, MU0_INTERP, NASA1, NASA2, SHOMATE1, SHOMATE2, SIMPLE, and STAT.

void install_STIT ( SpeciesThermoInterpType stit_ptr)
virtual

Install a new species thermodynamic property parameterization for one species.

Parameters
stit_ptrPointer to the SpeciesThermoInterpType object This will set up the thermo for one species

Implements SpeciesThermo.

Definition at line 171 of file GeneralSpeciesThermo.cpp.

References AssertThrow, Cantera::int2str(), GeneralSpeciesThermo::m_kk, GeneralSpeciesThermo::m_sp, GeneralSpeciesThermo::m_thigh_min, GeneralSpeciesThermo::m_tlow_max, SpeciesThermoInterpType::maxTemp(), SpeciesThermoInterpType::minTemp(), and SpeciesThermoInterpType::speciesIndex().

Referenced by GeneralSpeciesThermo::installPDSShandler().

void installPDSShandler ( size_t  k,
PDSS PDSS_ptr,
VPSSMgr vpssmgr_ptr 
)

Install a PDSS object to handle the reference state thermodynamics calculation.

Parameters
kspecies index
PDSS_ptrPressure dependent standard state (PDSS) object that will handle the reference state calc
vpssmgr_ptrPointer to the variable pressure standard state manager that handles the PDSS object.

Definition at line 200 of file GeneralSpeciesThermo.cpp.

References GeneralSpeciesThermo::install_STIT().

Referenced by VPSSMgr_Water_ConstVol::createInstallPDSS(), VPSSMgr_Water_HKFT::createInstallPDSS(), and VPSSMgr_General::returnPDSS_ptr().

void update_one ( size_t  k,
doublereal  T,
doublereal *  cp_R,
doublereal *  h_RT,
doublereal *  s_R 
) const
virtual

Like update(), but only updates the single species k.

Parameters
kspecies index
TTemperature (Kelvin)
cp_RVector of Dimensionless heat capacities. (length m_kk).
h_RTVector of Dimensionless enthalpies. (length m_kk).
s_RVector of Dimensionless entropies. (length m_kk).

Reimplemented from SpeciesThermo.

Definition at line 208 of file GeneralSpeciesThermo.cpp.

References GeneralSpeciesThermo::m_sp, and SpeciesThermoInterpType::updatePropertiesTemp().

void update ( doublereal  T,
doublereal *  cp_R,
doublereal *  h_RT,
doublereal *  s_R 
) const
virtual

Compute the reference-state properties for all species.

Given temperature T in K, this method updates the values of the non- dimensional heat capacity at constant pressure, enthalpy, and entropy, at the reference pressure, Pref of each of the standard states.

Parameters
TTemperature (Kelvin)
cp_RVector of Dimensionless heat capacities. (length m_kk).
h_RTVector of Dimensionless enthalpies. (length m_kk).
s_RVector of Dimensionless entropies. (length m_kk).

Implements SpeciesThermo.

Definition at line 218 of file GeneralSpeciesThermo.cpp.

References GeneralSpeciesThermo::m_sp, and SpeciesThermoInterpType::updatePropertiesTemp().

doublereal minTemp ( size_t  k = npos) const
virtual

Minimum temperature.

If no argument is supplied, this method returns the minimum temperature for which all parameterizations are valid. If an integer index k is supplied, then the value returned is the minimum temperature for species k in the phase.

Parameters
kSpecies index

Implements SpeciesThermo.

Definition at line 264 of file GeneralSpeciesThermo.cpp.

References GeneralSpeciesThermo::m_sp, GeneralSpeciesThermo::m_tlow_max, SpeciesThermoInterpType::minTemp(), and Cantera::npos.

doublereal maxTemp ( size_t  k = npos) const
virtual

Maximum temperature.

If no argument is supplied, this method returns the maximum temperature for which all parameterizations are valid. If an integer index k is supplied, then the value returned is the maximum temperature for parameterization k.

Parameters
kSpecies Index

Implements SpeciesThermo.

Definition at line 277 of file GeneralSpeciesThermo.cpp.

References GeneralSpeciesThermo::m_sp, GeneralSpeciesThermo::m_thigh_min, SpeciesThermoInterpType::maxTemp(), and Cantera::npos.

doublereal refPressure ( size_t  k = npos) const
virtual

The reference-state pressure for species k.

Returns the reference state pressure in Pascals for species k. If k is left out of the argument list, it returns the reference state pressure for the first species. Note that some SpeciesThermo implementations, such as those for ideal gases, require that all species in the same phase have the same reference state pressures.

Parameters
kSpecies Index

Implements SpeciesThermo.

Definition at line 290 of file GeneralSpeciesThermo.cpp.

References GeneralSpeciesThermo::m_p0, GeneralSpeciesThermo::m_sp, Cantera::npos, and SpeciesThermoInterpType::refPressure().

int reportType ( size_t  index) const
virtual

This utility function reports the type of parameterization used for the species with index number index.

Parameters
indexSpecies index

Implements SpeciesThermo.

Definition at line 236 of file GeneralSpeciesThermo.cpp.

References GeneralSpeciesThermo::m_sp, and SpeciesThermoInterpType::reportType().

void reportParams ( size_t  index,
int &  type,
doublereal *const  c,
doublereal &  minTemp,
doublereal &  maxTemp,
doublereal &  refPressure 
) const
virtual
SpeciesThermoInterpType * provideSTIT ( size_t  k)
private

Provide the SpeciesthermoInterpType object.

Parameters
kspecies index
Returns
pointer to the SpeciesThermoInterpType object.

Definition at line 303 of file GeneralSpeciesThermo.cpp.

References GeneralSpeciesThermo::m_sp.

Referenced by VPSSMgr::initAllPtrs().

Friends And Related Function Documentation

friend class VPSSMgr
friend

Make the class VPSSMgr a friend because we need to access the function provideSTIT()

Definition at line 174 of file GeneralSpeciesThermo.h.

Member Data Documentation

std::vector<SpeciesThermoInterpType*> m_sp
protected

This is the main unknown in the object.

It is a list of pointers to type SpeciesThermoInterpType. Note, this object owns the objects, so they are deleted in the destructor of this object. Note, that in some instances, m_sp[k] = 0, e.g., no SpeciesThermoInterpType is installed for one or more species. These cases must be handled by the calling routine.

Definition at line 155 of file GeneralSpeciesThermo.h.

Referenced by GeneralSpeciesThermo::GeneralSpeciesThermo(), GeneralSpeciesThermo::install(), GeneralSpeciesThermo::install_STIT(), GeneralSpeciesThermo::maxTemp(), GeneralSpeciesThermo::minTemp(), GeneralSpeciesThermo::operator=(), GeneralSpeciesThermo::provideSTIT(), GeneralSpeciesThermo::refPressure(), GeneralSpeciesThermo::reportParams(), GeneralSpeciesThermo::reportType(), GeneralSpeciesThermo::update(), GeneralSpeciesThermo::update_one(), and GeneralSpeciesThermo::~GeneralSpeciesThermo().

doublereal m_tlow_max
protected
doublereal m_thigh_min
protected
doublereal m_p0
protected

reference pressure (Pa)

Definition at line 164 of file GeneralSpeciesThermo.h.

Referenced by GeneralSpeciesThermo::refPressure().

size_t m_kk
protected

The documentation for this class was generated from the following files: