Cantera  4.0.0a1
Loading...
Searching...
No Matches
ConstPressureMoleReactor.h
Go to the documentation of this file.
1//! @file ConstPressureMoleReactor.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_CONSTPRESSMOLE_REACTOR_H
7#define CT_CONSTPRESSMOLE_REACTOR_H
8
10
11namespace Cantera
12{
13
14/**
15 * ConstPressureMoleReactor is a class for constant-pressure reactors
16 * which use a state of moles.
17 * @since New in %Cantera 3.0
18 * @ingroup reactorGroup
19 */
21{
22public:
23 ConstPressureMoleReactor(shared_ptr<Solution> sol, const string& name="(none)");
24 ConstPressureMoleReactor(shared_ptr<Solution> sol, bool clone,
25 const string& name="(none)");
26
27 string type() const override {
28 return "ConstPressureMoleReactor";
29 };
30
31 void getState(double* y) override;
32 void eval(double t, double* LHS, double* RHS) override;
33 void evalSteady(double t, double* LHS, double* RHS) override;
34 vector<size_t> initializeSteady() override;
35
36 void updateState(double* y) override;
37
38 size_t componentIndex(const string& nm) const override;
39 string componentName(size_t k) override;
40 double upperBound(size_t k) const override;
41 double lowerBound(size_t k) const override;
42 void resetBadValues(double* y) override;
43
44protected:
45 const size_t m_sidx = 1;
46 double m_initialMass; //!< Initial mass [kg]; used for steady-state calculations
47};
48
49}
50
51#endif
ConstPressureMoleReactor is a class for constant-pressure reactors which use a state of moles.
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.
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 evalSteady(double t, double *LHS, double *RHS) override
Evaluate the governing equations with modifications for the steady-state solver.
void getState(double *y) override
Get the current state of the reactor.
double m_initialMass
Initial mass [kg]; used for steady-state calculations.
vector< size_t > initializeSteady() override
Initialize the reactor before solving a steady-state problem.
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.
MoleReactor is meant to serve the same purpose as the reactor class but with a state vector composed ...
Definition MoleReactor.h:21
string name() const
Return the name of this reactor.
Definition ReactorBase.h:81
Namespace for the Cantera kernel.
Definition AnyMap.cpp:595