C C There are a total of 0 entries in the algebraic variable array. C There are a total of 4 entries in each of the rate and state variable arrays. C There are a total of 10 entries in the constant variable array. C C C VOI is time in component environment (day). C STATES(1) is x in component x (dimensionless). C CONSTS(1) is d1 in component model_parameters (first_order_rate_constant). C CONSTS(2) is a in component model_parameters (first_order_rate_constant). C CONSTS(9) is alpha in component model_parameters (first_order_rate_constant). C CONSTS(3) is mu in component model_parameters (first_order_rate_constant). C CONSTS(4) is r in component model_parameters (first_order_rate_constant). C STATES(2) is y in component y (dimensionless). C STATES(3) is w in component w (dimensionless). C CONSTS(5) is kappa in component model_parameters (dimensionless). C CONSTS(10) is d2 in component y (first_order_rate_constant). C CONSTS(6) is p in component model_parameters (first_order_rate_constant). C STATES(4) is z in component z (dimensionless). C CONSTS(7) is f in component w (dimensionless). C CONSTS(8) is v in component z (first_order_rate_constant). C RATES(1) is d/dt x in component x (dimensionless). C RATES(2) is d/dt y in component y (dimensionless). C RATES(3) is d/dt w in component w (dimensionless). C RATES(4) is d/dt z in component z (dimensionless). C SUBROUTINE initConsts(CONSTS, RATES, STATES) REAL CONSTS(*), RATES(*), STATES(*) STATES(1) = 10E-1 CONSTS(1) = 0.005 CONSTS(2) = 0.03333 CONSTS(3) = 0.023 CONSTS(4) = 1.0 STATES(2) = 0.0 STATES(3) = 0.0 CONSTS(5) = 1.0 CONSTS(6) = 200.0 STATES(4) = 0.01 CONSTS(7) = 100.0 CONSTS(8) = 0.5 CONSTS(9) = 0.0100000*CONSTS(2) CONSTS(10) = (- ( 99.0000*CONSTS(2)*CONSTS(1))+ CONSTS(2)*CONSTS(4)+ CONSTS(1)*CONSTS(4))/(CONSTS(2) - CONSTS(1)) RETURN END SUBROUTINE computeRates(VOI, CONSTS, RATES, STATES, ALGBRC) REAL VOI, CONSTS(*), RATES(*), STATES(*), ALGBRC(*) RATES(1) = ( 2.00000*CONSTS(4)*STATES(2)+ 0.100000*CONSTS(3)*STATES(3)) - ( CONSTS(2)*STATES(1)*(1.00000 - STATES(1)/CONSTS(5))+ CONSTS(1)*STATES(1)*(STATES(1)/CONSTS(5))+ CONSTS(9)*STATES(1)) RATES(2) = CONSTS(2)*STATES(1)*(1.00000 - STATES(1)/CONSTS(5)) - ( (CONSTS(4)+CONSTS(10))*STATES(2)+ CONSTS(6)*STATES(4)*STATES(2)) RATES(3) = CONSTS(7)*CONSTS(9)*STATES(1) - ( CONSTS(3)*STATES(3)+ CONSTS(6)*STATES(3)*STATES(4)) RATES(4) = CONSTS(6)*STATES(4)*(STATES(2)+STATES(3)) - CONSTS(8)*STATES(4) RETURN END SUBROUTINE computeVariables(VOI, CONSTS, RATES, STATES, ALGBRC) REAL VOI, CONSTS(*), RATES(*), STATES(*), ALGBRC(*) RETURN END