Cantera  2.2.1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
IdealGasReactor.h
Go to the documentation of this file.
1 /**
2  * @file IdealGasReactor.h
3  */
4 
5 // Copyright 2001 California Institute of Technology
6 
7 #ifndef CT_IDEALGASREACTOR_H
8 #define CT_IDEALGASREACTOR_H
9 
10 #include "Reactor.h"
11 
12 namespace Cantera
13 {
14 
15 /**
16  * Class IdealGasReactor is a class for stirred reactors that is specifically
17  * optimized for ideal gases. In this formulation, temperature replaces the
18  * total internal energy as a state variable.
19  */
20 class IdealGasReactor : public Reactor
21 {
22 public:
23  IdealGasReactor() {}
24 
25  virtual int type() const {
26  return IdealGasReactorType;
27  }
28 
29  virtual void setThermoMgr(ThermoPhase& thermo);
30 
31  virtual void getInitialConditions(doublereal t0, size_t leny,
32  doublereal* y);
33 
34  virtual void initialize(doublereal t0 = 0.0);
35 
36  virtual void evalEqs(doublereal t, doublereal* y,
37  doublereal* ydot, doublereal* params);
38 
39  virtual void updateState(doublereal* y);
40 
41  virtual size_t componentIndex(const std::string& nm) const;
42 
43 protected:
44  vector_fp m_uk; //!< Species molar internal energies
45 };
46 
47 }
48 
49 #endif
virtual size_t componentIndex(const std::string &nm) const
Return the index in the solution vector for this reactor of the component named nm.
virtual void getInitialConditions(doublereal t0, size_t leny, doublereal *y)
Called by ReactorNet to get the initial conditions.
virtual void updateState(doublereal *y)
Set the state of the reactor to correspond to the state vector y.
Base class for a phase with thermodynamic properties.
Definition: ThermoPhase.h:97
virtual int type() const
Return a constant indicating the type of this Reactor.
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.
vector_fp m_uk
Species molar internal energies.
Class Reactor is a general-purpose class for stirred reactors.
Definition: Reactor.h:39