Cantera
3.1.0a1
|
A class for mass flow controllers. More...
#include <flowControllers.h>
A class for mass flow controllers.
The mass flow rate is constant or specified as a function of time.
Definition at line 20 of file flowControllers.h.
Public Member Functions | |
string | type () const override |
String indicating the flow device implemented. More... | |
void | setMassFlowRate (double mdot) |
Set the fixed mass flow rate (kg/s) through the mass flow controller. More... | |
void | setMassFlowCoeff (double m) |
Set the mass flow coefficient. More... | |
double | getMassFlowCoeff () |
Get the mass flow coefficient. More... | |
void | setPressureFunction (Func1 *f) override |
Set a function of pressure that is used in determining the mass flow rate through the device. More... | |
void | updateMassFlowRate (double time) override |
If a function of time has been specified for mdot, then update the stored mass flow rate. More... | |
Public Member Functions inherited from FlowDevice | |
FlowDevice (const FlowDevice &)=delete | |
FlowDevice & | operator= (const FlowDevice &)=delete |
double | massFlowRate () |
Mass flow rate (kg/s). More... | |
double | outletSpeciesMassFlowRate (size_t k) |
Mass flow rate (kg/s) of outlet species k. More... | |
double | enthalpy_mass () |
specific enthalpy More... | |
bool | install (ReactorBase &in, ReactorBase &out) |
Install a flow device between two reactors. More... | |
virtual bool | ready () |
ReactorBase & | in () const |
Return a reference to the upstream reactor. More... | |
const ReactorBase & | out () const |
Return a const reference to the downstream reactor. More... | |
double | evalPressureFunction () |
Return current value of the pressure function. More... | |
double | evalTimeFunction () |
Return current value of the time function. More... | |
virtual void | setTimeFunction (Func1 *g) |
Set a function of time that is used in determining the mass flow rate through the device. More... | |
void | setSimTime (double time) |
Set current reactor network time. More... | |
Additional Inherited Members | |
Protected Attributes inherited from FlowDevice | |
double | m_mdot = Undef |
Func1 * | m_pfunc = nullptr |
Function set by setPressureFunction; used by updateMassFlowRate. More... | |
Func1 * | m_tfunc = nullptr |
Function set by setTimeFunction; used by updateMassFlowRate. More... | |
double | m_coeff = 1.0 |
Coefficient set by derived classes; used by updateMassFlowRate. More... | |
double | m_time = 0. |
Current reactor network time. More... | |
|
inlineoverridevirtual |
String indicating the flow device implemented.
Usually corresponds to the name of the derived class.
Reimplemented from FlowDevice.
Definition at line 25 of file flowControllers.h.
void setMassFlowRate | ( | double | mdot | ) |
Set the fixed mass flow rate (kg/s) through the mass flow controller.
Definition at line 13 of file flowControllers.cpp.
|
inline |
Set the mass flow coefficient.
m has units of kg/s. The mass flow rate is computed as:
\[\dot{m} = m g(t) \]
where g is a function of time that is set by setTimeFunction
. If no function is specified, the mass flow rate defaults to:
\[\dot{m} = m \]
Definition at line 40 of file flowControllers.h.
|
inline |
Get the mass flow coefficient.
Definition at line 45 of file flowControllers.h.
|
inlineoverridevirtual |
Set a function of pressure that is used in determining the mass flow rate through the device.
The evaluation of mass flow depends on the derived flow device class.
Reimplemented from FlowDevice.
Definition at line 49 of file flowControllers.h.
|
overridevirtual |
If a function of time has been specified for mdot, then update the stored mass flow rate.
Otherwise, mdot is a constant, and does not need updating.
Reimplemented from FlowDevice.
Definition at line 21 of file flowControllers.cpp.