/* 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 4 entries in the constant variable array. */ /* * STATES[0] is C in component MultienvironmentExampleComponent (uM). * STATES[1] is D in component MultienvironmentExampleComponent (per_um2). * STATES[2] is E in component MultienvironmentExampleComponent (per_um2). * CONSTANTS[0] is kf in component MultienvironmentExampleComponent (per_uM_per_s). * CONSTANTS[1] is kr in component MultienvironmentExampleComponent (per_s). * ALGEBRAIC[0] is J in component MultienvironmentExampleComponent (per_um2_per_s). * VOI is t in component MultienvironmentExampleComponent (second). * CONSTANTS[2] is R in component MultienvironmentExampleComponent (per_um). * CONSTANTS[3] is Cpc in component MultienvironmentExampleComponent (uM_um2). * RATES[0] is d/dt C in component MultienvironmentExampleComponent (uM). * RATES[1] is d/dt D in component MultienvironmentExampleComponent (per_um2). * RATES[2] is d/dt E in component MultienvironmentExampleComponent (per_um2). * There are a total of 0 condition variables. */ void initConsts(double* CONSTANTS, double* RATES, double *STATES) { STATES[0] = 200; STATES[1] = 4; STATES[2] = 0; CONSTANTS[0] = 6e-3; CONSTANTS[1] = 1e-3; CONSTANTS[2] = 5; CONSTANTS[3] = CONSTANTS[2]/602.200; 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[3]*ALGEBRAIC[0]; resid[1] = RATES[1] - - ALGEBRAIC[0]; resid[2] = RATES[2] - ALGEBRAIC[0]; } void computeVariables(double VOI, double* CONSTANTS, double* RATES, double* STATES, double* ALGEBRAIC) { } void computeEssentialVariables(double VOI, double* CONSTANTS, double* RATES, double* STATES, double* ALGEBRAIC) { ALGEBRAIC[0] = STATES[0]*STATES[1]*CONSTANTS[0] - CONSTANTS[1]*STATES[2]; } 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) { }