C C There are a total of 0 entries in the algebraic variable array. C There are a total of 5 entries in each of the rate and state variable arrays. C There are a total of 4 entries in the constant variable array. C C C VOI is time in component environment (second). C STATES(1) is Ca in component Ca (micromolar). C CONSTS(1) is k1 in component reaction_constants (second_order_rate_constant). C CONSTS(2) is k1_ in component reaction_constants (first_order_rate_constant). C STATES(2) is Parv in component Parv (micromolar). C STATES(3) is CaParv in component CaParv (micromolar). C CONSTS(3) is k2 in component reaction_constants (second_order_rate_constant). C CONSTS(4) is k2_ in component reaction_constants (first_order_rate_constant). C STATES(4) is Mg in component Mg (micromolar). C STATES(5) is MgParv in component MgParv (micromolar). C RATES(1) is d/dt Ca in component Ca (micromolar). C RATES(2) is d/dt Parv in component Parv (micromolar). C RATES(3) is d/dt CaParv in component CaParv (micromolar). C RATES(4) is d/dt Mg in component Mg (micromolar). C RATES(5) is d/dt MgParv in component MgParv (micromolar). C SUBROUTINE initConsts(CONSTS, RATES, STATES) REAL CONSTS(*), RATES(*), STATES(*) STATES(1) = 0.05 CONSTS(1) = 4.79E13 CONSTS(2) = 0.574 STATES(2) = 1500.0 STATES(3) = 0.01 CONSTS(3) = 39700E6 CONSTS(4) = 3.45 STATES(4) = 1000.0 STATES(5) = 0.01 RETURN END SUBROUTINE computeRates(VOI, CONSTS, RATES, STATES, ALGBRC) REAL VOI, CONSTS(*), RATES(*), STATES(*), ALGBRC(*) RATES(1) = CONSTS(2)*STATES(3) - CONSTS(1)*STATES(1)*STATES(2) RATES(2) = ( CONSTS(2)*STATES(3)+ CONSTS(4)*STATES(5)) - ( CONSTS(1)*STATES(1)*STATES(2)+ CONSTS(3)*STATES(4)*STATES(2)) RATES(3) = CONSTS(1)*STATES(1)*STATES(2) - CONSTS(2)*STATES(3) RATES(4) = CONSTS(4)*STATES(5) - CONSTS(3)*STATES(4)*STATES(2) RATES(5) = CONSTS(3)*STATES(4)*STATES(2) - CONSTS(4)*STATES(5) RETURN END SUBROUTINE computeVariables(VOI, CONSTS, RATES, STATES, ALGBRC) REAL VOI, CONSTS(*), RATES(*), STATES(*), ALGBRC(*) RETURN END