C C There are a total of 0 entries in the algebraic variable array. C There are a total of 6 entries in each of the rate and state variable arrays. C There are a total of 11 entries in the constant variable array. C C C VOI is time in component environment (second). C STATES(1) is C1 in component C1 (dimensionless). C CONSTS(1) is C1C2 in component reaction_constants (second_order_rate_constant). C CONSTS(2) is C2C1 in component reaction_constants (first_order_rate_constant). C STATES(2) is C2 in component C2 (dimensionless). C CONSTS(3) is Ca in component reaction_constants (micromolar). C CONSTS(4) is C2C3 in component reaction_constants (second_order_rate_constant). C CONSTS(5) is C3C2 in component reaction_constants (first_order_rate_constant). C CONSTS(6) is C2O1 in component reaction_constants (second_order_rate_constant). C CONSTS(7) is O1C2 in component reaction_constants (first_order_rate_constant). C STATES(3) is C3 in component C3 (dimensionless). C STATES(4) is O1 in component O1 (dimensionless). C CONSTS(8) is O2C3 in component reaction_constants (first_order_rate_constant). C CONSTS(9) is C3O2 in component reaction_constants (second_order_rate_constant). C STATES(5) is O2 in component O2 (dimensionless). C STATES(6) is C4 in component C4 (dimensionless). C CONSTS(10) is O2C4 in component reaction_constants (first_order_rate_constant). C CONSTS(11) is C4O2 in component reaction_constants (first_order_rate_constant). C RATES(1) is d/dt C1 in component C1 (dimensionless). C RATES(2) is d/dt C2 in component C2 (dimensionless). C RATES(3) is d/dt C3 in component C3 (dimensionless). C RATES(6) is d/dt C4 in component C4 (dimensionless). C RATES(4) is d/dt O1 in component O1 (dimensionless). C RATES(5) is d/dt O2 in component O2 (dimensionless). C SUBROUTINE initConsts(CONSTS, RATES, STATES) REAL CONSTS(*), RATES(*), STATES(*) STATES(1) = 0.1667 CONSTS(1) = 3.26 CONSTS(2) = 116.0 STATES(2) = 0.1667 CONSTS(3) = 50.0 CONSTS(4) = 0.66 CONSTS(5) = 163.0 CONSTS(6) = 7.86 CONSTS(7) = 1480.0 STATES(3) = 0.1667 STATES(4) = 0.1667 CONSTS(8) = 330.0 CONSTS(9) = 7.77 STATES(5) = 0.1667 STATES(6) = 0.1667 CONSTS(10) = 298.0 CONSTS(11) = 2390.0 RETURN END SUBROUTINE computeRates(VOI, CONSTS, RATES, STATES, ALGBRC) REAL VOI, CONSTS(*), RATES(*), STATES(*), ALGBRC(*) RATES(1) = CONSTS(2)*STATES(2) - CONSTS(1)*CONSTS(3)*STATES(2) RATES(2) = ( CONSTS(1)*STATES(1)*CONSTS(3)+ CONSTS(5)*STATES(3)+ CONSTS(7)*STATES(4)) - ( CONSTS(2)*STATES(2)+ CONSTS(4)*CONSTS(3)*STATES(2)+ CONSTS(6)*CONSTS(3)*STATES(4)) RATES(3) = ( CONSTS(8)*STATES(5)+ CONSTS(4)*CONSTS(3)*STATES(2)) - ( CONSTS(9)*CONSTS(3)*STATES(3)+ CONSTS(5)*STATES(3)) RATES(6) = CONSTS(10)*STATES(5) - CONSTS(11)*STATES(6) RATES(4) = CONSTS(6)*STATES(2)*CONSTS(3) - CONSTS(7)*STATES(4) RATES(5) = ( CONSTS(9)*CONSTS(3)*STATES(3)+ CONSTS(11)*STATES(6)) - ( CONSTS(8)*STATES(5)+ CONSTS(10)*STATES(5)) RETURN END SUBROUTINE computeVariables(VOI, CONSTS, RATES, STATES, ALGBRC) REAL VOI, CONSTS(*), RATES(*), STATES(*), ALGBRC(*) RETURN END