C C There are a total of 0 entries in the algebraic variable array. C There are a total of 3 entries in each of the rate and state variable arrays. C There are a total of 7 entries in the constant variable array. C C C VOI is time in component environment (second). C STATES(1) is x in component x (dimensionless). C CONSTS(1) is r in component model_parameters (first_order_rate_constant). C STATES(2) is v in component v (dimensionless). C STATES(3) is y in component y (dimensionless). C CONSTS(2) is k in component model_parameters (dimensionless). C CONSTS(3) is d in component model_parameters (first_order_rate_constant). C CONSTS(4) is beta in component model_parameters (first_order_rate_constant). C CONSTS(5) is a in component model_parameters (first_order_rate_constant). C CONSTS(6) is u in component model_parameters (first_order_rate_constant). C CONSTS(7) is eta in component model_parameters (first_order_rate_constant). C RATES(1) is d/dt x in component x (dimensionless). C RATES(3) is d/dt y in component y (dimensionless). C RATES(2) is d/dt v in component v (dimensionless). C SUBROUTINE initConsts(CONSTS, RATES, STATES) REAL CONSTS(*), RATES(*), STATES(*) STATES(1) = 0.1 CONSTS(1) = 1.0 STATES(2) = 1.0 STATES(3) = 0.0 CONSTS(2) = 10.0 CONSTS(3) = 0.1 CONSTS(4) = 0.2 CONSTS(5) = 0.2 CONSTS(6) = 0.5 CONSTS(7) = 1.0 RETURN END SUBROUTINE computeRates(VOI, CONSTS, RATES, STATES, ALGBRC) REAL VOI, CONSTS(*), RATES(*), STATES(*), ALGBRC(*) RATES(1) = CONSTS(1)*STATES(1)*STATES(2)*(1.00000 - (STATES(1)+STATES(3))/CONSTS(2)) - ( CONSTS(3)*STATES(1)+ CONSTS(4)*STATES(1)*STATES(2)) RATES(3) = ( CONSTS(4)*STATES(1)*STATES(2)+ CONSTS(1)*STATES(3)*STATES(2)*(1.00000 - (STATES(1)+STATES(3))/CONSTS(2))) - CONSTS(5)*STATES(3) RATES(2) = CONSTS(7)*STATES(3) - CONSTS(6)*STATES(2) RETURN END SUBROUTINE computeVariables(VOI, CONSTS, RATES, STATES, ALGBRC) REAL VOI, CONSTS(*), RATES(*), STATES(*), ALGBRC(*) RETURN END