6#ifndef CT_IDEALGASCONSTP_REACTOR_H
7#define CT_IDEALGASCONSTP_REACTOR_H
25 using ConstPressureReactor::ConstPressureReactor;
27 string type()
const override {
28 return "IdealGasConstPressureReactor";
31 void getState(span<double> y)
override;
34 void eval(
double t, span<double> LHS, span<double> RHS)
override;
35 void evalSteady(
double t, span<double> LHS, span<double> RHS)
override;
Class ConstPressureReactor is a class for constant-pressure reactors.
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 eval(double t, span< double > LHS, span< double > RHS) override
Evaluate the reactor governing equations.
void evalSteady(double t, span< double > LHS, span< double > RHS) override
Evaluate the governing equations with modifications for the steady-state solver.
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.
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 initialize(double t0=0.0) override
Initialize the reactor.
double m_initialTemperature
Initial temperature [K]; used for steady-state calculations.
void updateState(span< const double > y) override
Set the state of the reactor to correspond to the state vector y.
vector< double > m_hk
Species molar enthalpies.
void getState(span< double > y) override
Get the current state of the reactor.
Namespace for the Cantera kernel.