Generated Code

The following is c_ida code generated by the CellML API from this CellML file. (Back to language selection)

The raw code is available.

/*
   There are a total of 0 entries in the algebraic variable array.
   There are a total of 3 entries in each of the rate and state variable arrays.
   There are a total of 2 entries in the constant variable array.
 */
/*
 * VOI is time in component environment (second).
 * STATES[0] is Ca in component Ca (micromolar).
 * CONSTANTS[0] is k1 in component reaction_constants (second_order_rate_constant).
 * CONSTANTS[1] is k1_ in component reaction_constants (first_order_rate_constant).
 * STATES[1] is Trop in component Trop (micromolar).
 * STATES[2] is CaTrop in component CaTrop (micromolar).
 * RATES[0] is d/dt Ca in component Ca (micromolar).
 * RATES[1] is d/dt Trop in component Trop (micromolar).
 * RATES[2] is d/dt CaTrop in component CaTrop (micromolar).
 * There are a total of 0 condition variables.
 */
void
initConsts(double* CONSTANTS, double* RATES, double *STATES)
{
STATES[0] = 0.05;
CONSTANTS[0] = 1.017E14;
CONSTANTS[1] = 132.0;
STATES[1] = 360.0;
STATES[2] = 0.01;
RATES[0] = 0.1001;
RATES[1] = 0.1001;
RATES[2] = 0.1001;
}
void
computeResiduals(double VOI, double* CONSTANTS, double* RATES, double* OLDRATES, double* STATES,
                 double* OLDSTATES, double* ALGEBRAIC, double* CONDVARS)
{
resid[0] = RATES[0] -  CONSTANTS[1]*STATES[2] -  CONSTANTS[0]*STATES[0]*STATES[1];
resid[1] = RATES[1] -  CONSTANTS[1]*STATES[2] -  CONSTANTS[0]*STATES[0]*STATES[1];
resid[2] = RATES[2] -  CONSTANTS[0]*STATES[0]*STATES[1] -  CONSTANTS[1]*STATES[2];
}
void
computeVariables(double VOI, double* CONSTANTS, double* RATES, double* STATES, double* ALGEBRAIC)
{
}
void
computeEssentialVariables(double VOI, double* CONSTANTS, double* RATES, double* STATES, double* ALGEBRAIC)
{
}
void
getStateInformation(double* SI)
{
SI[0] = 1.0;
SI[1] = 1.0;
SI[2] = 1.0;
}
void
computeRoots(double VOI, double* CONSTANTS, double* RATES, double* OLDRATES, double* STATES,
             double* OLDSTATES, double* ALGEBRAIC, double* CONDVARS)
{
}