Cantera
3.1.0a1
|
A surface where reactions can occur that is in contact with the bulk fluid of a Reactor. More...
#include <ReactorSurface.h>
A surface where reactions can occur that is in contact with the bulk fluid of a Reactor.
Definition at line 20 of file ReactorSurface.h.
Public Member Functions | |
ReactorSurface (const ReactorSurface &)=delete | |
ReactorSurface & | operator= (const ReactorSurface &)=delete |
double | area () const |
Returns the surface area [m^2]. More... | |
void | setArea (double a) |
Set the surface area [m^2]. More... | |
SurfPhase * | thermo () |
Accessor for the SurfPhase object. More... | |
Kinetics * | kinetics () |
Accessor for the InterfaceKinetics object. More... | |
void | setKinetics (Kinetics *kin) |
Set the InterfaceKinetics object for this surface. More... | |
void | setReactor (ReactorBase *reactor) |
Set the reactor that this Surface interacts with. More... | |
size_t | nSensParams () const |
Number of sensitivity parameters associated with reactions on this surface. More... | |
void | setCoverages (const double *cov) |
Set the surface coverages. More... | |
void | setCoverages (const Composition &cov) |
Set the surface coverages by name. More... | |
void | setCoverages (const string &cov) |
Set the surface coverages by name. More... | |
void | getCoverages (double *cov) const |
Get the surface coverages. More... | |
void | syncState () |
Set the coverages and temperature in the surface phase object to the values for this surface. More... | |
void | addSensitivityReaction (size_t i) |
Enable calculation of sensitivities with respect to the rate constant for reaction i . More... | |
void | setSensitivityParameters (const double *params) |
Set reaction rate multipliers. More... | |
void | resetSensitivityParameters () |
Set reaction rate multipliers back to their initial values. More... | |
Protected Attributes | |
double | m_area = 1.0 |
SurfPhase * | m_thermo = nullptr |
Kinetics * | m_kinetics = nullptr |
ReactorBase * | m_reactor = nullptr |
vector< double > | m_cov |
vector< SensitivityParameter > | m_params |
double area | ( | ) | const |
Returns the surface area [m^2].
Definition at line 15 of file ReactorSurface.cpp.
void setArea | ( | double | a | ) |
Set the surface area [m^2].
Definition at line 20 of file ReactorSurface.cpp.
|
inline |
Accessor for the SurfPhase object.
Definition at line 35 of file ReactorSurface.h.
|
inline |
Accessor for the InterfaceKinetics object.
Definition at line 40 of file ReactorSurface.h.
void setKinetics | ( | Kinetics * | kin | ) |
Set the InterfaceKinetics object for this surface.
Definition at line 25 of file ReactorSurface.cpp.
void setReactor | ( | ReactorBase * | reactor | ) |
Set the reactor that this Surface interacts with.
Definition at line 42 of file ReactorSurface.cpp.
|
inline |
Number of sensitivity parameters associated with reactions on this surface.
Definition at line 52 of file ReactorSurface.h.
void setCoverages | ( | const double * | cov | ) |
Set the surface coverages.
Array cov
has length equal to the number of surface species.
Definition at line 47 of file ReactorSurface.cpp.
void setCoverages | ( | const Composition & | cov | ) |
Set the surface coverages by name.
Definition at line 52 of file ReactorSurface.cpp.
void setCoverages | ( | const string & | cov | ) |
Set the surface coverages by name.
Definition at line 58 of file ReactorSurface.cpp.
void getCoverages | ( | double * | cov | ) | const |
Get the surface coverages.
Array cov
should have length equal to the number of surface species.
Definition at line 64 of file ReactorSurface.cpp.
void syncState | ( | ) |
Set the coverages and temperature in the surface phase object to the values for this surface.
The temperature is set to match the bulk phase of the attached Reactor.
Definition at line 69 of file ReactorSurface.cpp.
void addSensitivityReaction | ( | size_t | i | ) |
Enable calculation of sensitivities with respect to the rate constant for reaction i
.
Definition at line 75 of file ReactorSurface.cpp.
void setSensitivityParameters | ( | const double * | params | ) |
Set reaction rate multipliers.
params
is the global vector of sensitivity parameters. This function is called within ReactorNet::eval() before the reaction rates are evaluated.
Definition at line 87 of file ReactorSurface.cpp.
void resetSensitivityParameters | ( | ) |
Set reaction rate multipliers back to their initial values.
This function is called within ReactorNet::eval() after all rates have been evaluated.
Definition at line 95 of file ReactorSurface.cpp.