Cantera  2.3.0
ConstPressureReactor.h
Go to the documentation of this file.
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_CONSTP_REACTOR_H
7 #define CT_CONSTP_REACTOR_H
8 
9 #include "Reactor.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
17  * may be connected to a "flow device" such as a mass flow controller, a
18  * pressure regulator, etc. Additional reactors may be connected to the other
19  * end of the flow device, allowing construction of arbitrary reactor
20  * networks.
21  */
23 {
24 public:
26 
27  virtual int type() const {
28  return ConstPressureReactorType;
29  }
30 
31  //! @deprecated Use getState instead. To be removed after Cantera 2.3.
32  virtual void getInitialConditions(doublereal t0, size_t leny,
33  doublereal* y);
34  virtual void getState(doublereal* y);
35 
36  virtual void initialize(doublereal t0 = 0.0);
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", "enthalpy",
44  //! the name of a homogeneous phase species, or the name of a surface
45  //! species.
46  virtual size_t componentIndex(const std::string& nm) const;
47  std::string componentName(size_t k);
48 };
49 
50 }
51 
52 #endif
virtual void getInitialConditions(doublereal t0, size_t leny, doublereal *y)
Class ConstPressureReactor is a class for constant-pressure reactors.
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 evalEqs(doublereal t, doublereal *y, doublereal *ydot, doublereal *params)
virtual int type() const
Return a constant indicating the type of this Reactor.
virtual void updateState(doublereal *y)
Set the state of the reactor to correspond to the state vector y.
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.
virtual void getState(doublereal *y)
Get the the current state of the reactor.
Namespace for the Cantera kernel.
Definition: application.cpp:29
Class Reactor is a general-purpose class for stirred reactors.
Definition: Reactor.h:37