Cantera  3.2.0a2
Loading...
Searching...
No Matches
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 https://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
11namespace 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 * @ingroup reactorGroup
22 */
24{
25public:
26 using Reactor::Reactor; // inherit constructors
27
28 string type() const override {
29 return "ConstPressureReactor";
30 }
31
32 void getState(double* y) override;
33
34 void initialize(double t0=0.0) override;
35 void eval(double t, double* LHS, double* RHS) override;
36 vector<size_t> steadyConstraints() const override;
37
38 void updateState(double* y) override;
39
40 //! Return the index in the solution vector for this reactor of the
41 //! component named *nm*. Possible values for *nm* are "mass", "enthalpy",
42 //! the name of a homogeneous phase species, or the name of a surface
43 //! species.
44 size_t componentIndex(const string& nm) const override;
45 string componentName(size_t k) override;
46 double upperBound(size_t k) const override;
47 double lowerBound(size_t k) const override;
48 void resetBadValues(double* y) override;
49};
50
51}
52
53#endif
Class ConstPressureReactor is a class for constant-pressure reactors.
double upperBound(size_t k) const override
Get the upper bound on the k-th component of the local state vector.
void resetBadValues(double *y) override
Reset physically or mathematically problematic values, such as negative species concentrations.
vector< size_t > steadyConstraints() const override
Get the indices of equations that are algebraic constraints when solving the steady-state problem.
void eval(double t, double *LHS, double *RHS) override
Evaluate the reactor governing equations.
string type() const override
String indicating the reactor model implemented.
size_t componentIndex(const string &nm) const override
Return the index in the solution vector for this reactor of the component named nm.
void getState(double *y) override
Get the the current state of the reactor.
double lowerBound(size_t k) const override
Get the lower bound on the k-th component of the local state vector.
string componentName(size_t k) override
Return the name of the solution component with index i.
void updateState(double *y) override
Set the state of the reactor to correspond to the state vector y.
void initialize(double t0=0.0) override
Initialize the reactor.
Class Reactor is a general-purpose class for stirred reactors.
Definition Reactor.h:47
Namespace for the Cantera kernel.
Definition AnyMap.cpp:595