MOOSE - Multiscale Object Oriented Simulation Environment
|
#include <RateTerm.h>
Public Member Functions | |
RateTerm * | copyWithVolScaling (double vol, double sub, double prd) const |
unsigned int | getReactants (vector< unsigned int > &molIndex) const |
MMEnzyme1 (double Km, double kcat, unsigned int enz, unsigned int sub) | |
double | operator() (const double *S) const |
Computes the rate. The argument is the molecule array. More... | |
![]() | |
unsigned int | getEnzIndex () const |
double | getR1 () const |
Used by Zombie to return rate terms. More... | |
double | getR2 () const |
Used by Zombie to return rate terms. More... | |
MMEnzymeBase (double Km, double kcat, unsigned int enz) | |
void | rescaleVolume (short comptIndex, const vector< short > &compartmentLookup, double ratio) |
void | setKcat (double kcat) |
void | setKm (double Km) |
void | setR1 (double Km) |
Used by Zombie to assign rate terms. More... | |
void | setR2 (double kcat) |
Used by Zombie to assign rate terms. More... | |
void | setRates (double Km, double kcat) |
![]() | |
RateTerm () | |
virtual | ~RateTerm () |
Private Attributes | |
unsigned int | sub_ |
Additional Inherited Members | |
![]() | |
static const double | EPSILON = 1.0e-6 |
![]() | |
unsigned int | enz_ |
double | kcat_ |
double | Km_ |
Definition at line 139 of file RateTerm.h.
|
inline |
Definition at line 142 of file RateTerm.h.
Referenced by copyWithVolScaling().
|
inlinevirtual |
Duplicates rate term and then applies volume scaling. Arguments are volume of reference voxel, product of vol/refVol for all substrates: applied to R1 product of vol/refVol for all products: applied to R2
Note that unless the reaction is cross-compartment, the vol/refVol will be one.
Implements RateTerm.
Definition at line 161 of file RateTerm.h.
References MMEnzymeBase::enz_, MMEnzymeBase::kcat_, MMEnzymeBase::Km_, MMEnzyme1(), NA, and sub_.
|
inlinevirtual |
This function finds the reactant indices in the vector S. It returns the number of substrates found, which are the first entries in molIndex. The products are the remaining ones. Note that it does NOT find products for unidirectional reactions, which is a bit of a problem.
Implements RateTerm.
Definition at line 154 of file RateTerm.h.
References MMEnzymeBase::enz_, and sub_.
|
inlinevirtual |
Computes the rate. The argument is the molecule array.
Implements RateTerm.
Definition at line 149 of file RateTerm.h.
References MMEnzymeBase::enz_, MMEnzymeBase::kcat_, MMEnzymeBase::Km_, and sub_.
|
private |
Definition at line 169 of file RateTerm.h.
Referenced by copyWithVolScaling(), getReactants(), and operator()().