22 "Error: reactor is empty.");
24 m_thermo->restoreState(m_state);
28 y[0] = m_thermo->enthalpy_mass() * m_thermo->density() *
m_vol;
47 m_thermo->setMolesNoTruncate(y + m_sidx);
60 double* dndt = RHS + m_sidx;
64 m_thermo->restoreState(m_state);
66 const vector<double>& imw = m_thermo->inverseMolecularWeights();
78 for (
size_t n = 0; n <
m_nsp; n++) {
84 for (
auto outlet : m_outlet) {
88 for (
size_t n = 0; n <
m_nsp; n++) {
89 dndt[n] -=
outlet->outletSpeciesMassFlowRate(n) * imw[n];
94 for (
auto inlet : m_inlet) {
96 dHdt +=
inlet->enthalpy_mass() *
inlet->massFlowRate();
98 for (
size_t n = 0; n <
m_nsp; n++) {
99 dndt[n] +=
inlet->outletSpeciesMassFlowRate(n) * imw[n];
112 if (nm ==
"enthalpy") {
118 throw CanteraError(
"ConstPressureMoleReactor::componentIndex",
119 "Component '{}' not found", nm);
126 }
else if (k >= m_sidx && k <
neq()) {
128 if (k < m_thermo->nSpecies()) {
129 return m_thermo->speciesName(k);
131 k -= m_thermo->nSpecies();
133 for (
auto& S : m_surfaces) {
135 if (k < th->nSpecies()) {
142 throw IndexError(
"ConstPressureMoleReactor::componentName",
"component", k, m_nv);
153 }
else if (k >= 1 && k < m_nv) {
156 throw CanteraError(
"ConstPressureMoleReactor::lowerBound",
"Index {} is out of bounds.", k);
161 for (
size_t k = m_sidx; k < m_nv; k++) {
162 y[k] = std::max(y[k], 0.0);
Base class for kinetics managers and also contains the kineticsmgr module documentation (see Kinetics...
Header file for class ReactorSurface.
Header for a simple thermodynamics model of a surface phase derived from ThermoPhase,...
Header file for base class WallBase.
Base class for exceptions thrown by Cantera classes.
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.
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.
An array index is out of range.
void evalSurfaces(double *LHS, double *RHS, double *sdot) override
Evaluate terms related to surface reactions.
void getSurfaceInitialConditions(double *y) override
Get initial conditions for SurfPhase objects attached to this reactor.
void getMoles(double *y)
Get moles of the system from mass fractions stored by thermo object.
void setMassFromMoles(double *y)
Set internal mass variable based on moles given.
void initialize(double t0=0.0) override
Initialize the reactor.
void updateSurfaceState(double *y) override
Update the state of SurfPhase objects attached to this reactor.
size_t nSpecies() const
Returns the number of species in the phase.
string speciesName(size_t k) const
Name of the species with index k.
FlowDevice & outlet(size_t n=0)
Return a reference to the n-th outlet FlowDevice connected to this reactor.
double m_pressure
Current pressure in the reactor [Pa].
FlowDevice & inlet(size_t n=0)
Return a reference to the n-th inlet FlowDevice connected to this reactor.
double m_vol
Current volume of the reactor [m^3].
double m_mass
Current mass of the reactor [kg].
size_t m_nsp
Number of homogeneous species in the mixture.
double m_enthalpy
Current specific enthalpy of the reactor [J/kg].
Kinetics * m_kin
Pointer to the homogeneous Kinetics object that handles the reactions.
vector< double > m_wdot
Species net molar production rates.
virtual void evalWalls(double t)
Evaluate terms related to Walls.
size_t neq()
Number of equations (state variables) for this reactor.
double m_Qdot
net heat transfer into the reactor, through walls [W]
vector< double > m_sdot
Production rates of gas phase species on surfaces [kmol/s].
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...
virtual void updateConnected(bool updatePressure)
Update the state information needed by connected reactors, flow devices, and reactor walls.
Base class for a phase with thermodynamic properties.
Namespace for the Cantera kernel.
const double Tiny
Small number to compare differences of mole fractions against.
const double BigNumber
largest number to compare to inf.
Various templated functions that carry out common vector and polynomial operations (see Templated Arr...