Cantera  2.3.0
IdealGasConstPressureReactor.h
1 //! @file ConstPressureReactor.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_IDEALGASCONSTP_REACTOR_H
7 #define CT_IDEALGASCONSTP_REACTOR_H
8 
9 #include "ConstPressureReactor.h"
10 
11 namespace Cantera
12 {
13 
14 /**
15  * Class ConstPressureReactor is a class for constant-pressure reactors. The
16  * reactor may have an arbitrary number of inlets and outlets, each of which may
17  * be connected to a "flow device" such as a mass flow controller, a pressure
18  * regulator, etc. Additional reactors may be connected to the other end of the
19  * flow device, allowing construction of arbitrary reactor networks.
20  */
22 {
23 public:
25 
26  virtual int type() const {
27  return IdealGasConstPressureReactorType;
28  }
29 
30  virtual void setThermoMgr(ThermoPhase& thermo);
31 
32  //! @deprecated Use getState instead. To be removed after Cantera 2.3.
33  virtual void getInitialConditions(doublereal t0, size_t leny,
34  doublereal* y);
35  virtual void getState(doublereal* y);
36 
37  virtual void initialize(doublereal t0 = 0.0);
38  virtual void evalEqs(doublereal t, doublereal* y,
39  doublereal* ydot, doublereal* params);
40 
41  virtual void updateState(doublereal* y);
42 
43  //! Return the index in the solution vector for this reactor of the
44  //! component named *nm*. Possible values for *nm* are "mass",
45  //! "temperature", the name of a homogeneous phase species, or the name of a
46  //! surface species.
47  virtual size_t componentIndex(const std::string& nm) const;
48  std::string componentName(size_t k);
49 
50 protected:
51  vector_fp m_hk; //!< Species molar enthalpies
52 };
53 }
54 
55 #endif
virtual int type() const
Return a constant indicating the type of this Reactor.
std::string componentName(size_t k)
Return the name of the solution component with index i.
Class ConstPressureReactor is a class for constant-pressure reactors.
virtual void getInitialConditions(doublereal t0, size_t leny, doublereal *y)
virtual void setThermoMgr(ThermoPhase &thermo)
Specify the mixture contained in the reactor.
virtual void getState(doublereal *y)
Get the the current state of the reactor.
vector_fp m_hk
Species molar enthalpies.
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:93
virtual size_t componentIndex(const std::string &nm) const
Return the index in the solution vector for this reactor of the component named nm.
Class ConstPressureReactor is a class for constant-pressure reactors.
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
virtual void evalEqs(doublereal t, doublereal *y, doublereal *ydot, doublereal *params)
Namespace for the Cantera kernel.
Definition: application.cpp:29
virtual void initialize(doublereal t0=0.0)
Initialize the reactor.