6#ifndef CT_IDEALGASCONSTPRESSMOLE_REACTOR_H
7#define CT_IDEALGASCONSTPRESSMOLE_REACTOR_H
23 using ConstPressureMoleReactor::ConstPressureMoleReactor;
25 string type()
const override {
26 return "IdealGasConstPressureMoleReactor";
33 void eval(
double t,
double* LHS,
double* RHS)
override;
ConstPressureMoleReactor is a class for constant-pressure reactors which use a state of moles.
IdealGasConstPressureMoleReactor is a class for ideal gas constant-pressure reactors which use a stat...
bool preconditionerSupported() const override
Return a false if preconditioning is not supported or true otherwise.
double upperBound(size_t k) const override
Get the upper bound on the k-th component of the local state vector.
double m_TotalCp
Total heat capacity ( ) [J/K].
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 current state of the reactor.
void getJacobianElements(vector< Eigen::Triplet< double > > &trips) override
Calculate an approximate Jacobian to accelerate preconditioned solvers.
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.
vector< double > m_hk
Species molar enthalpies.
void getJacobianScalingFactors(double &f_species, double *f_energy) override
Get scaling factors for the Jacobian matrix terms proportional to .
Namespace for the Cantera kernel.