Generated Code

The following is c 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 7 entries in the constant variable array.
 */
/*
 * VOI is time in component environment (day).
 * STATES[0] is x in component x (dimensionless).
 * CONSTANTS[0] is d1 in component model_parameters (first_order_rate_constant).
 * CONSTANTS[1] is a in component model_parameters (first_order_rate_constant).
 * CONSTANTS[2] is r in component model_parameters (first_order_rate_constant).
 * STATES[1] is y in component y (dimensionless).
 * CONSTANTS[3] is kappa in component model_parameters (dimensionless).
 * CONSTANTS[6] is d2 in component y (first_order_rate_constant).
 * CONSTANTS[4] is p in component model_parameters (first_order_rate_constant).
 * STATES[2] is z in component z (dimensionless).
 * CONSTANTS[5] is v in component z (first_order_rate_constant).
 * RATES[0] is d/dt x in component x (dimensionless).
 * RATES[1] is d/dt y in component y (dimensionless).
 * RATES[2] is d/dt z in component z (dimensionless).
 */
void
initConsts(double* CONSTANTS, double* RATES, double *STATES)
{
STATES[0] = 10E-1;
CONSTANTS[0] = 0.005;
CONSTANTS[1] = 0.03333;
CONSTANTS[2] = 1.0;
STATES[1] = 0.0;
CONSTANTS[3] = 1.0;
CONSTANTS[4] = 200.0;
STATES[2] = 0.01;
CONSTANTS[5] = 0.5;
CONSTANTS[6] = (- ( 99.0000*CONSTANTS[1]*CONSTANTS[0])+ CONSTANTS[1]*CONSTANTS[2]+ CONSTANTS[0]*CONSTANTS[2])/(CONSTANTS[1] - CONSTANTS[0]);
}
void
computeRates(double VOI, double* CONSTANTS, double* RATES, double* STATES, double* ALGEBRAIC)
{
RATES[0] =  2.00000*CONSTANTS[2]*STATES[1] - ( CONSTANTS[1]*STATES[0]*(1.00000 - STATES[0]/CONSTANTS[3])+ CONSTANTS[0]*STATES[0]*(STATES[0]/CONSTANTS[3]));
RATES[1] =  CONSTANTS[1]*STATES[0]*(1.00000 - STATES[0]/CONSTANTS[3]) - ( (CONSTANTS[2]+CONSTANTS[6])*STATES[1]+ CONSTANTS[4]*STATES[2]*STATES[1]);
RATES[2] =  CONSTANTS[4]*STATES[2]*STATES[1] -  CONSTANTS[5]*STATES[2];
}
void
computeVariables(double VOI, double* CONSTANTS, double* RATES, double* STATES, double* ALGEBRAIC)
{
}