roadrunner
2.6.0
Fast simulator for SBML models
|
Compute derivatives, fluxes, and other values of the system at the current state. More...
Functions | |
C_DECL_SPEC bool rrcCallConv | getValue (RRHandle handle, const char *symbolId, double *value) |
Get the value for a given symbol, use getAvailableTimeCourseSymbols(void) for a list of symbols. More... | |
C_DECL_SPEC bool rrcCallConv | setValue (RRHandle handle, const char *symbolId, const double value) |
Set the value for a given symbol, use getAvailableTimeCourseSymbols(void) for a list of symbols. More... | |
C_DECL_SPEC bool rrcCallConv | evalModel (RRHandle handle) |
Evaluate the current model, that it update all assignments and rates of change. Do not carry out an integration step. More... | |
C_DECL_SPEC RRStringArrayPtr rrcCallConv | getEigenvalueIds (RRHandle handle) |
Obtain the list of eigenvalue Ids. More... | |
C_DECL_SPEC RRListPtr rrcCallConv | getAvailableTimeCourseSymbols (RRHandle handle) |
Obtain the list of all available symbols. More... | |
C_DECL_SPEC RRListPtr rrcCallConv | getAvailableSteadyStateSymbols (RRHandle handle) |
Obtain the list of all available steady state symbols. More... | |
Compute derivatives, fluxes, and other values of the system at the current state.
C_DECL_SPEC bool rrcCallConv evalModel | ( | RRHandle | handle | ) |
Evaluate the current model, that it update all assignments and rates of change. Do not carry out an integration step.
[in] | handle | Handle to a RoadRunner instance |
Obtain the list of all available steady state symbols.
[in] | handle | Handle to a RoadRunner instance |
Obtain the list of all available symbols.
[in] | handle | Handle to a RoadRunner instance |
C_DECL_SPEC RRStringArrayPtr rrcCallConv getEigenvalueIds | ( | RRHandle | handle | ) |
Obtain the list of eigenvalue Ids.
[in] | handle | Handle to a RoadRunner instance |
C_DECL_SPEC bool rrcCallConv getValue | ( | RRHandle | handle, |
const char * | symbolId, | ||
double * | value | ||
) |
Get the value for a given symbol, use getAvailableTimeCourseSymbols(void) for a list of symbols.
Example:
[in] | handle | Handle to a RoadRunner instance |
symbolId | The symbol that we wish to obtain the value for | |
value | The value that will be retrieved |
C_DECL_SPEC bool rrcCallConv setValue | ( | RRHandle | handle, |
const char * | symbolId, | ||
const double | value | ||
) |
Set the value for a given symbol, use getAvailableTimeCourseSymbols(void) for a list of symbols.
Example:
[in] | handle | Handle to a RoadRunner instance |
symbolId | The symbol that we wish to set the value | |
value | The value that will be set to the symbol |