/* There are a total of 1 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. */ /* * STATES[0] is A in component BidirectionalExampleComponent (uM). * STATES[1] is B in component BidirectionalExampleComponent (uM). * STATES[2] is C in component BidirectionalExampleComponent (uM). * ALGEBRAIC[0] is J in component BidirectionalExampleComponent (uM_per_s). * CONSTANTS[0] is kf in component BidirectionalExampleComponent (per_uM_per_s). * CONSTANTS[1] is kr in component BidirectionalExampleComponent (per_s). * VOI is t in component BidirectionalExampleComponent (second). * RATES[0] is d/dt A in component BidirectionalExampleComponent (uM). * RATES[1] is d/dt B in component BidirectionalExampleComponent (uM). * RATES[2] is d/dt C in component BidirectionalExampleComponent (uM). */ void initConsts(double* CONSTANTS, double* RATES, double *STATES) { STATES[0] = 10; STATES[1] = 5; STATES[2] = 0; CONSTANTS[0] = 0.2; CONSTANTS[1] = 0.05; } void computeRates(double VOI, double* CONSTANTS, double* RATES, double* STATES, double* ALGEBRAIC) { ALGEBRAIC[0] = CONSTANTS[0]*STATES[0]*STATES[1] - CONSTANTS[1]*STATES[2]; RATES[0] = - ALGEBRAIC[0]; RATES[1] = - ALGEBRAIC[0]; RATES[2] = ALGEBRAIC[0]; } void computeVariables(double VOI, double* CONSTANTS, double* RATES, double* STATES, double* ALGEBRAIC) { ALGEBRAIC[0] = CONSTANTS[0]*STATES[0]*STATES[1] - CONSTANTS[1]*STATES[2]; }