Cantera  2.3.0
IdealGasReactor.h
Go to the documentation of this file.
1 //! @file IdealGasReactor.h
2 
3 // This file is part of Cantera. See License.txt in the top-level directory or
4 // at http://www.cantera.org/license.txt for license and copyright information.
5 
6 #ifndef CT_IDEALGASREACTOR_H
7 #define CT_IDEALGASREACTOR_H
8 
9 #include "Reactor.h"
10 
11 namespace Cantera
12 {
13 
14 /**
15  * Class IdealGasReactor is a class for stirred reactors that is specifically
16  * optimized for ideal gases. In this formulation, temperature replaces the
17  * total internal energy as a state variable.
18  */
19 class IdealGasReactor : public Reactor
20 {
21 public:
22  IdealGasReactor() {}
23 
24  virtual int type() const {
25  return IdealGasReactorType;
26  }
27 
28  virtual void setThermoMgr(ThermoPhase& thermo);
29 
30  //! @deprecated Use getState instead. To be removed after Cantera 2.3.
31  virtual void getInitialConditions(doublereal t0, size_t leny,
32  doublereal* y);
33  virtual void getState(doublereal* y);
34 
35  virtual void initialize(doublereal t0 = 0.0);
36 
37  virtual void evalEqs(doublereal t, doublereal* y,
38  doublereal* ydot, doublereal* params);
39 
40  virtual void updateState(doublereal* y);
41 
42  //! Return the index in the solution vector for this reactor of the
43  //! component named *nm*. Possible values for *nm* are "mass",
44  //! "volume", "temperature", the name of a homogeneous phase species, or the
45  //! name of a surface species.
46  virtual size_t componentIndex(const std::string& nm) const;
47  std::string componentName(size_t k);
48 
49 protected:
50  vector_fp m_uk; //!< Species molar internal energies
51 };
52 
53 }
54 
55 #endif
virtual void getInitialConditions(doublereal t0, size_t leny, doublereal *y)
virtual void updateState(doublereal *y)
Set the state of the reactor to correspond to the state vector y.
virtual int type() const
Return a constant indicating the type of this Reactor.
virtual void getState(doublereal *y)
Get the the current state of the reactor.
virtual size_t componentIndex(const std::string &nm) const
Return the index in the solution vector for this reactor of the component named nm.
Base class for a phase with thermodynamic properties.
Definition: ThermoPhase.h:93
std::string componentName(size_t k)
Return the name of the solution component with index i.
virtual void initialize(doublereal t0=0.0)
Initialize the reactor.
std::vector< double > vector_fp
Turn on the use of stl vectors for the basic array type within cantera Vector of doubles.
Definition: ct_defs.h:157
Class IdealGasReactor is a class for stirred reactors that is specifically optimized for ideal gases...
virtual void evalEqs(doublereal t, doublereal *y, doublereal *ydot, doublereal *params)
virtual void setThermoMgr(ThermoPhase &thermo)
Specify the mixture contained in the reactor.
Namespace for the Cantera kernel.
Definition: application.cpp:29
vector_fp m_uk
Species molar internal energies.
Class Reactor is a general-purpose class for stirred reactors.
Definition: Reactor.h:37