Cantera  3.1.0a1
Loading...
Searching...
No Matches
Reactor.h
Go to the documentation of this file.
1//! @file Reactor.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_REACTOR_H
7#define CT_REACTOR_H
8
9#include "ReactorBase.h"
10#include "cantera/numerics/eigen_sparse.h"
11
12
13namespace Cantera
14{
15
16class Solution;
17class AnyMap;
18
19/**
20 * Class Reactor is a general-purpose class for stirred reactors. The reactor
21 * may have an arbitrary number of inlets and outlets, each of which may be
22 * connected to a "flow device" such as a mass flow controller, a pressure
23 * regulator, etc. Additional reactors may be connected to the other end of
24 * the flow device, allowing construction of arbitrary reactor networks.
25 *
26 * The reactor class integrates the same governing equations no matter what
27 * type of reactor is simulated. The differences among reactor types are
28 * completely specified by the attached flow devices and the time-dependent
29 * user-specified boundary conditions.
30 *
31 * If an instance of class Reactor is used directly, it will simulate an
32 * adiabatic, constant volume reactor with gas-phase chemistry but no surface
33 * chemistry. Other reactor types may be simulated by deriving a class from
34 * Reactor. This method allows specifying the following in terms of the
35 * instantaneous reactor state:
36 *
37 * - rate of change of the total volume (m^3/s)
38 * - surface heat loss rate (W)
39 * - species surface production rates (kmol/s)
40 *
41 * See the [Science Reference](../reference/science/reactors/controlreactor.html) for
42 * the governing equations of class Reactor.
43 *
44 * @ingroup reactorGroup
45 */
46class Reactor : public ReactorBase
47{
48public:
49 Reactor(shared_ptr<Solution> sol, const string& name = "(none)");
50 using ReactorBase::ReactorBase; // inherit constructors
51
52 string type() const override {
53 return "Reactor";
54 }
55
56 //! Indicate whether the governing equations for this reactor type are a system of
57 //! ODEs or DAEs. In the first case, this class implements the eval() method. In the
58 //! second case, this class implements the evalDae() method.
59 virtual bool isOde() const {
60 return true;
61 }
62
63 //! Indicates whether the governing equations for this reactor are functions of time
64 //! or a spatial variable. All reactors in a network must have the same value.
65 virtual bool timeIsIndependent() const {
66 return true;
67 }
68
69 /**
70 * Insert something into the reactor. The 'something' must belong to a class
71 * that is a subclass of both ThermoPhase and Kinetics.
72 * @deprecated Unused; to be removed after %Cantera 3.1.
73 */
74 template<class G>
75 void insert(G& contents) {
76 warn_deprecated("Reactor::insert", "Unused; to be removed after Cantera 3.1.");
79 }
80
82
83 void setKineticsMgr(Kinetics& kin) override;
84
85 void setChemistry(bool cflag=true) override {
86 m_chem = cflag;
87 }
88
89 //! Returns `true` if changes in the reactor composition due to chemical reactions
90 //! are enabled.
91 bool chemistryEnabled() const {
92 return m_chem;
93 }
94
95 void setEnergy(int eflag=1) override {
96 if (eflag > 0) {
97 m_energy = true;
98 } else {
99 m_energy = false;
100 }
101 }
102
103 //! Returns `true` if solution of the energy equation is enabled.
104 bool energyEnabled() const {
105 return m_energy;
106 }
107
108 //! Number of equations (state variables) for this reactor
109 size_t neq() {
110 if (!m_nv) {
111 initialize();
112 }
113 return m_nv;
114 }
115
116 //! Get the the current state of the reactor.
117 /*!
118 * @param[out] y state vector representing the initial state of the reactor
119 */
120 virtual void getState(double* y);
121
122 //! Get the current state and derivative vector of the reactor for a DAE solver
123 /*!
124 * @param[out] y state vector representing the initial state of the reactor
125 * @param[out] ydot state vector representing the initial derivatives of the
126 * reactor
127 */
128 virtual void getStateDae(double* y, double* ydot) {
129 throw NotImplementedError("Reactor::getStateDae(y, ydot)");
130 }
131
132 void initialize(double t0=0.0) override;
133
134 //! Evaluate the reactor governing equations. Called by ReactorNet::eval.
135 //! @param[in] t time.
136 //! @param[out] LHS pointer to start of vector of left-hand side
137 //! coefficients for governing equations, length m_nv, default values 1
138 //! @param[out] RHS pointer to start of vector of right-hand side
139 //! coefficients for governing equations, length m_nv, default values 0
140 virtual void eval(double t, double* LHS, double* RHS);
141
142 /**
143 * Evaluate the reactor governing equations. Called by ReactorNet::eval.
144 * @param[in] t time.
145 * @param[in] y solution vector, length neq()
146 * @param[in] ydot rate of change of solution vector, length neq()
147 * @param[out] residual residuals vector, length neq()
148 */
149 virtual void evalDae(double t, double* y, double* ydot, double* residual) {
150 throw NotImplementedError("Reactor::evalDae");
151 }
152
153 //! Given a vector of length neq(), mark which variables should be
154 //! considered algebraic constraints
155 virtual void getConstraints(double* constraints) {
156 throw NotImplementedError("Reactor::getConstraints");
157 }
158
159 void syncState() override;
160
161 //! Set the state of the reactor to correspond to the state vector *y*.
162 virtual void updateState(double* y);
163
164 //! Number of sensitivity parameters associated with this reactor
165 //! (including walls)
166 virtual size_t nSensParams() const;
167
168 //! Add a sensitivity parameter associated with the reaction number *rxn*
169 //! (in the homogeneous phase).
170 virtual void addSensitivityReaction(size_t rxn);
171
172 //! Add a sensitivity parameter associated with the enthalpy formation of
173 //! species *k* (in the homogeneous phase)
174 virtual void addSensitivitySpeciesEnthalpy(size_t k);
175
176 //! Return the index in the solution vector for this reactor of the
177 //! component named *nm*. Possible values for *nm* are "mass", "volume",
178 //! "int_energy", the name of a homogeneous phase species, or the name of a
179 //! surface species.
180 virtual size_t componentIndex(const string& nm) const;
181
182 //! Return the name of the solution component with index *i*.
183 //! @see componentIndex()
184 virtual string componentName(size_t k);
185
186 //! Set absolute step size limits during advance
187 //! @param limits array of step size limits with length neq
188 void setAdvanceLimits(const double* limits);
189
190 //! Check whether Reactor object uses advance limits
191 //! @returns True if at least one limit is set, False otherwise
192 bool hasAdvanceLimits() const {
193 return !m_advancelimits.empty();
194 }
195
196 //! Retrieve absolute step size limits during advance
197 //! @param[out] limits array of step size limits with length neq
198 //! @returns True if at least one limit is set, False otherwise
199 bool getAdvanceLimits(double* limits) const;
200
201 //! Set individual step size limit for component name *nm*
202 //! @param nm component name
203 //! @param limit value for step size limit
204 void setAdvanceLimit(const string& nm, const double limit);
205
206 //! Calculate the Jacobian of a specific Reactor specialization.
207 //! @warning Depending on the particular implementation, this may return an
208 //! approximate Jacobian intended only for use in forming a preconditioner for
209 //! iterative solvers.
210 //! @ingroup derivGroup
211 //!
212 //! @warning This method is an experimental part of the %Cantera
213 //! API and may be changed or removed without notice.
214 virtual Eigen::SparseMatrix<double> jacobian() {
215 throw NotImplementedError("Reactor::jacobian");
216 }
217
218 //! Calculate the reactor-specific Jacobian using a finite difference method.
219 //!
220 //! This method is used only for informational purposes. Jacobian calculations
221 //! for the full reactor system are handled internally by CVODES.
222 //!
223 //! @warning This method is an experimental part of the %Cantera
224 //! API and may be changed or removed without notice.
225 Eigen::SparseMatrix<double> finiteDifferenceJacobian();
226
227 //! Use this to set the kinetics objects derivative settings
228 virtual void setDerivativeSettings(AnyMap& settings);
229
230 //! Set reaction rate multipliers based on the sensitivity variables in
231 //! *params*.
232 virtual void applySensitivity(double* params);
233
234 //! Reset the reaction rate multipliers
235 virtual void resetSensitivity(double* params);
236
237 //! Return a false if preconditioning is not supported or true otherwise.
238 //!
239 //! @warning This method is an experimental part of the %Cantera
240 //! API and may be changed or removed without notice.
241 //!
242 //! @since New in %Cantera 3.0
243 //!
244 virtual bool preconditionerSupported() const {return false;};
245
246protected:
247 //! Return the index in the solution vector for this reactor of the species
248 //! named *nm*, in either the homogeneous phase or a surface phase, relative
249 //! to the start of the species terms. Used to implement componentIndex for
250 //! specific reactor implementations.
251 virtual size_t speciesIndex(const string& nm) const;
252
253 //! Evaluate terms related to Walls. Calculates #m_vdot and #m_Qdot based on
254 //! wall movement and heat transfer.
255 //! @param t the current time
256 virtual void evalWalls(double t);
257
258 //! Evaluate terms related to surface reactions.
259 //! @param[out] LHS Multiplicative factor on the left hand side of ODE for surface
260 //! species coverages
261 //! @param[out] RHS Right hand side of ODE for surface species coverages
262 //! @param[out] sdot array of production rates of bulk phase species on surfaces
263 //! [kmol/s]
264 virtual void evalSurfaces(double* LHS, double* RHS, double* sdot);
265
266 virtual void evalSurfaces(double* RHS, double* sdot);
267
268 //! Update the state of SurfPhase objects attached to this reactor
269 virtual void updateSurfaceState(double* y);
270
271 //! Update the state information needed by connected reactors, flow devices,
272 //! and reactor walls. Called from updateState().
273 //! @param updatePressure Indicates whether to update #m_pressure. Should
274 //! `true` for reactors where the pressure is a dependent property,
275 //! calculated from the state, and `false` when the pressure is constant
276 //! or an independent variable.
277 virtual void updateConnected(bool updatePressure);
278
279 //! Get initial conditions for SurfPhase objects attached to this reactor
280 virtual void getSurfaceInitialConditions(double* y);
281
282 //! Pointer to the homogeneous Kinetics object that handles the reactions
283 Kinetics* m_kin = nullptr;
284
285 double m_vdot = 0.0; //!< net rate of volume change from moving walls [m^3/s]
286
287 double m_Qdot = 0.0; //!< net heat transfer into the reactor, through walls [W]
288
289 double m_mass = 0.0; //!< total mass
290 vector<double> m_work;
291
292 //! Production rates of gas phase species on surfaces [kmol/s]
293 vector<double> m_sdot;
294
295 vector<double> m_wdot; //!< Species net molar production rates
296 vector<double> m_uk; //!< Species molar internal energies
297 bool m_chem = false;
298 bool m_energy = true;
299 size_t m_nv = 0;
300 size_t m_nv_surf; //!!< Number of variables associated with reactor surfaces
301
302 vector<double> m_advancelimits; //!< Advance step limit
303
304 // Data associated each sensitivity parameter
305 vector<SensitivityParameter> m_sensParams;
306
307 //! Vector of triplets representing the jacobian
308 vector<Eigen::Triplet<double>> m_jac_trips;
309};
310}
311
312#endif
A map of string keys to values whose type can vary at runtime.
Definition AnyMap.h:427
Public interface for kinetics managers.
Definition Kinetics.h:125
An error indicating that an unimplemented function has been called.
Base class for stirred reactors.
Definition ReactorBase.h:51
void insert(shared_ptr< Solution > sol)
virtual void setThermoMgr(ThermoPhase &thermo)
Specify the mixture contained in the reactor.
ThermoPhase & contents()
return a reference to the contents.
string name() const
Return the name of this reactor.
Definition ReactorBase.h:70
Class Reactor is a general-purpose class for stirred reactors.
Definition Reactor.h:47
virtual string componentName(size_t k)
Return the name of the solution component with index i.
Definition Reactor.cpp:467
void setKineticsMgr(Kinetics &kin) override
Definition Reactor.cpp:42
bool chemistryEnabled() const
Returns true if changes in the reactor composition due to chemical reactions are enabled.
Definition Reactor.h:91
virtual void evalSurfaces(double *LHS, double *RHS, double *sdot)
Evaluate terms related to surface reactions.
Definition Reactor.cpp:290
virtual size_t componentIndex(const string &nm) const
Return the index in the solution vector for this reactor of the component named nm.
Definition Reactor.cpp:451
virtual void getStateDae(double *y, double *ydot)
Get the current state and derivative vector of the reactor for a DAE solver.
Definition Reactor.h:128
virtual void updateSurfaceState(double *y)
Update the state of SurfPhase objects attached to this reactor.
Definition Reactor.cpp:178
void insert(G &contents)
Insert something into the reactor.
Definition Reactor.h:75
virtual void applySensitivity(double *params)
Set reaction rate multipliers based on the sensitivity variables in params.
Definition Reactor.cpp:493
Kinetics * m_kin
Pointer to the homogeneous Kinetics object that handles the reactions.
Definition Reactor.h:283
vector< double > m_wdot
Species net molar production rates.
Definition Reactor.h:295
virtual void eval(double t, double *LHS, double *RHS)
Evaluate the reactor governing equations.
Definition Reactor.cpp:214
virtual void evalWalls(double t)
Evaluate terms related to Walls.
Definition Reactor.cpp:278
bool energyEnabled() const
Returns true if solution of the energy equation is enabled.
Definition Reactor.h:104
Eigen::SparseMatrix< double > finiteDifferenceJacobian()
Calculate the reactor-specific Jacobian using a finite difference method.
Definition Reactor.cpp:319
size_t neq()
Number of equations (state variables) for this reactor.
Definition Reactor.h:109
virtual void addSensitivitySpeciesEnthalpy(size_t k)
Add a sensitivity parameter associated with the enthalpy formation of species k (in the homogeneous p...
Definition Reactor.cpp:414
string type() const override
String indicating the reactor model implemented.
Definition Reactor.h:52
double m_Qdot
net heat transfer into the reactor, through walls [W]
Definition Reactor.h:287
vector< double > m_advancelimits
!< Number of variables associated with reactor surfaces
Definition Reactor.h:302
void setEnergy(int eflag=1) override
Set the energy equation on or off.
Definition Reactor.h:95
virtual void addSensitivityReaction(size_t rxn)
Add a sensitivity parameter associated with the reaction number rxn (in the homogeneous phase).
Definition Reactor.cpp:401
virtual size_t nSensParams() const
Number of sensitivity parameters associated with this reactor (including walls)
Definition Reactor.cpp:115
virtual void setDerivativeSettings(AnyMap &settings)
Use this to set the kinetics objects derivative settings.
Definition Reactor.cpp:33
vector< double > m_uk
Species molar internal energies.
Definition Reactor.h:296
virtual void updateState(double *y)
Set the state of the reactor to correspond to the state vector y.
Definition Reactor.cpp:130
virtual void evalDae(double t, double *y, double *ydot, double *residual)
Evaluate the reactor governing equations.
Definition Reactor.h:149
void setChemistry(bool cflag=true) override
Enable or disable changes in reactor composition due to chemical reactions.
Definition Reactor.h:85
void setAdvanceLimits(const double *limits)
Set absolute step size limits during advance.
Definition Reactor.cpp:536
double m_mass
total mass
Definition Reactor.h:289
vector< Eigen::Triplet< double > > m_jac_trips
Vector of triplets representing the jacobian.
Definition Reactor.h:308
void setAdvanceLimit(const string &nm, const double limit)
Set individual step size limit for component name nm
Definition Reactor.cpp:562
virtual void resetSensitivity(double *params)
Reset the reaction rate multipliers.
Definition Reactor.cpp:515
vector< double > m_sdot
Production rates of gas phase species on surfaces [kmol/s].
Definition Reactor.h:293
virtual void getState(double *y)
Get the the current state of the reactor.
Definition Reactor.cpp:52
bool hasAdvanceLimits() const
Check whether Reactor object uses advance limits.
Definition Reactor.h:192
double m_vdot
net rate of volume change from moving walls [m^3/s]
Definition Reactor.h:285
void syncState() override
Set the state of the reactor to correspond to the state of the associated ThermoPhase object.
Definition Reactor.cpp:124
virtual void getSurfaceInitialConditions(double *y)
Get initial conditions for SurfPhase objects attached to this reactor.
Definition Reactor.cpp:78
void initialize(double t0=0.0) override
Initialize the reactor.
Definition Reactor.cpp:87
virtual void getConstraints(double *constraints)
Given a vector of length neq(), mark which variables should be considered algebraic constraints.
Definition Reactor.h:155
virtual bool preconditionerSupported() const
Return a false if preconditioning is not supported or true otherwise.
Definition Reactor.h:244
bool getAdvanceLimits(double *limits) const
Retrieve absolute step size limits during advance.
Definition Reactor.cpp:551
virtual size_t speciesIndex(const string &nm) const
Return the index in the solution vector for this reactor of the species named nm, in either the homog...
Definition Reactor.cpp:429
virtual bool isOde() const
Indicate whether the governing equations for this reactor type are a system of ODEs or DAEs.
Definition Reactor.h:59
virtual bool timeIsIndependent() const
Indicates whether the governing equations for this reactor are functions of time or a spatial variabl...
Definition Reactor.h:65
virtual void updateConnected(bool updatePressure)
Update the state information needed by connected reactors, flow devices, and reactor walls.
Definition Reactor.cpp:187
virtual Eigen::SparseMatrix< double > jacobian()
Calculate the Jacobian of a specific Reactor specialization.
Definition Reactor.h:214
Namespace for the Cantera kernel.
Definition AnyMap.cpp:564
void warn_deprecated(const string &source, const AnyBase &node, const string &message)
A deprecation warning for syntax in an input file.
Definition AnyMap.cpp:1926