The 3-parameter SRI falloff function for F More...


Public Member Functions | |
| SRI3 () | |
| Constructor. | |
| virtual | ~SRI3 () |
| Destructor. | |
| virtual void | init (const vector_fp &c) |
| Initialization of the object. | |
| virtual void | updateTemp (doublereal T, workPtr work) const |
| Update the temperature parameters in the representation. | |
| virtual doublereal | F (doublereal pr, const_workPtr work) const |
| Function that returns F | |
| virtual size_t | workSize () |
| Utility function that returns the size of the workspace. | |
Protected Attributes | |
| doublereal | m_a |
| parameter a in the 3-parameter SRI falloff function | |
| doublereal | m_b |
| parameter b in the 3-parameter SRI falloff function | |
| doublereal | m_c |
| parameter c in the 3-parameter SRI falloff function | |
The 3-parameter SRI falloff function for F
The falloff function defines the value of
in the following rate expression
where
where
s required to greater than or equal to zero. If it is zero, then the corresponding term is set to zero.
Definition at line 342 of file FalloffFactory.cpp.
| SRI3 | ( | ) | [inline] |
Constructor.
Definition at line 347 of file FalloffFactory.cpp.
| virtual ~SRI3 | ( | ) | [inline, virtual] |
Destructor.
Definition at line 350 of file FalloffFactory.cpp.
| virtual doublereal F | ( | doublereal | pr, | |
| const_workPtr | work | |||
| ) | const [inline, virtual] |
Function that returns F
| pr | Value of the reduced pressure for this reaction | |
| work | Pointer to the previously saved work space |
Implements Falloff.
Definition at line 382 of file FalloffFactory.cpp.
References Cantera::fmaxx(), and Cantera::SmallNumber.
| virtual void init | ( | const vector_fp & | c | ) | [inline, virtual] |
| virtual void updateTemp | ( | doublereal | T, | |
| workPtr | work | |||
| ) | const [inline, virtual] |
Update the temperature parameters in the representation.
The workspace has a length of one
| T | Temperature (Kelvin) | |
| work | Vector of working space representing the temperature dependent part of the parameterization. |
Reimplemented from Falloff.
Definition at line 372 of file FalloffFactory.cpp.
| virtual size_t workSize | ( | ) | [inline, virtual] |
Utility function that returns the size of the workspace.
Implements Falloff.
Definition at line 390 of file FalloffFactory.cpp.
doublereal m_a [protected] |
parameter a in the 3-parameter SRI falloff function
This is unitless
Definition at line 398 of file FalloffFactory.cpp.
Referenced by SRI3::init(), and SRI3::updateTemp().
doublereal m_b [protected] |
parameter b in the 3-parameter SRI falloff function
This has units of Kelvin
Definition at line 404 of file FalloffFactory.cpp.
Referenced by SRI3::init(), and SRI3::updateTemp().
doublereal m_c [protected] |
parameter c in the 3-parameter SRI falloff function
This has units of Kelvin
Definition at line 410 of file FalloffFactory.cpp.
Referenced by SRI3::init(), and SRI3::updateTemp().
1.6.3