# Size of variable arrays: sizeAlgebraic = 13 sizeStates = 5 sizeConstants = 41 from math import * from numpy import * def createLegends(): legend_states = [""] * sizeStates legend_rates = [""] * sizeStates legend_algebraic = [""] * sizeAlgebraic legend_voi = "" legend_constants = [""] * sizeConstants legend_constants[0] = "t_ss in component Vstim_para (second)" legend_constants[1] = "V_actHolding in component Vstim_para (mV)" legend_constants[2] = "t_act in component Vstim_para (second)" legend_constants[3] = "V_actTest in component Vstim_para (mV)" legend_constants[4] = "t_intp in component Vstim_para (second)" legend_constants[5] = "np in component Vstim_para (dimensionless)" legend_constants[6] = "Nai in component control_para (mM)" legend_constants[7] = "Cai_init in component control_para (mM)" legend_constants[8] = "inhPump in component control_para (dimensionless)" legend_voi = "time in component time_s (second)" legend_algebraic[4] = "V in component mPulse_protocol_s (mV)" legend_states[0] = "Cai in component Cai (mM)" legend_algebraic[12] = "J_VOCC in component J_VOCC (mM_per_s)" legend_algebraic[7] = "J_CaPump in component J_CaPump (mM_per_s)" legend_algebraic[10] = "J_NaCa in component J_NaCa (mM_per_s)" legend_algebraic[0] = "stress in component CB4HM (dimensionless)" legend_algebraic[1] = "phosphorylation in component CB4HM (dimensionless)" legend_constants[9] = "R in component constants (J_per_K_mol)" legend_constants[10] = "F in component constants (C_per_mmol)" legend_constants[11] = "T in component model_para (kelvin)" legend_constants[12] = "Nao in component model_para (mM)" legend_constants[13] = "Cao in component model_para (mM)" legend_constants[14] = "V_cell in component model_para (fm3)" legend_constants[15] = "V_Cahalf in component model_para (mV)" legend_constants[16] = "K_Cahalf in component model_para (mV)" legend_constants[17] = "g_mCa in component model_para (nS)" legend_constants[18] = "V_pmax in component model_para (mM_per_s)" legend_constants[19] = "n in component model_para (dimensionless)" legend_constants[20] = "K_ph in component model_para (mM)" legend_constants[21] = "K_NaCa in component model_para (mM)" legend_constants[22] = "G_NaCa in component model_para (mM_per_s_mV)" legend_constants[23] = "n_M in component model_para (dimensionless)" legend_constants[24] = "Ca_halfMLCK in component model_para (mM)" legend_constants[25] = "M_init in component initials (dimensionless)" legend_constants[26] = "Mp_init in component initials (dimensionless)" legend_constants[27] = "AM_init in component initials (dimensionless)" legend_constants[28] = "AMp_init in component initials (dimensionless)" legend_constants[29] = "K_7 in component model_para (per_s)" legend_constants[30] = "K_2 in component model_para (per_s)" legend_constants[31] = "K_3 in component model_para (per_s)" legend_constants[32] = "K_4 in component model_para (per_s)" legend_constants[33] = "K_5 in component model_para (per_s)" legend_algebraic[6] = "rho_vCa in component J_VOCC (dimensionless)" legend_constants[40] = "stimPeriod in component mPulse_protocol_s (second)" legend_algebraic[2] = "t in component mPulse_protocol_s (second)" legend_constants[34] = "Nai in component model_para (mM)" legend_constants[35] = "inhPump in component model_para (dimensionless)" legend_constants[36] = "Cai_init in component initials (mM)" legend_constants[37] = "z_Ca in component E_Ca (dimensionless)" legend_algebraic[8] = "E in component Nernst_potential (mV)" legend_constants[38] = "z_Na in component E_Na (dimensionless)" legend_constants[39] = "E in component Nernst_potential (mV)" legend_algebraic[11] = "I in component Ionic_currents (pA)" legend_algebraic[9] = "V_mNaCa in component J_NaCa (mV)" legend_algebraic[5] = "K_1 in component K_1 (per_s)" legend_algebraic[3] = "norm in component CB4HM (dimensionless)" legend_states[1] = "M in component CB4HM (dimensionless)" legend_states[2] = "Mp in component CB4HM (dimensionless)" legend_states[3] = "AM in component CB4HM (dimensionless)" legend_states[4] = "AMp in component CB4HM (dimensionless)" legend_rates[0] = "d/dt Cai in component Cai (mM)" legend_rates[1] = "d/dt M in component CB4HM (dimensionless)" legend_rates[2] = "d/dt Mp in component CB4HM (dimensionless)" legend_rates[3] = "d/dt AM in component CB4HM (dimensionless)" legend_rates[4] = "d/dt AMp in component CB4HM (dimensionless)" return (legend_states, legend_algebraic, legend_voi, legend_constants) def initConsts(): constants = [0.0] * sizeConstants; states = [0.0] * sizeStates; constants[0] = 0 constants[1] = -80 constants[2] = 0.1 constants[3] = 0 constants[4] = 0.33 constants[5] = 10 constants[6] = 16.55 constants[7] = 0.1e-3 constants[8] = 1 constants[9] = 8.314 constants[10] = 96.48534 constants[11] = 310 constants[12] = 140 constants[13] = 2 constants[14] = 21 constants[15] = -27 constants[16] = 11 constants[17] = 0.046842 constants[18] = 5.1449e-4 constants[19] = 1.9015 constants[20] = 0.6e-3 constants[21] = 7e-3 constants[22] = 5.7297e-5 constants[23] = 8.7613 constants[24] = 256.98e-6 constants[25] = 1 constants[26] = 0 constants[27] = 0 constants[28] = 0 constants[29] = 0.0378 constants[30] = 1.2387 constants[31] = 0.1419 constants[32] = 0.035475 constants[33] = 1.2387 constants[34] = 2.9836 constants[35] = 1 constants[36] = 0.1e-6 constants[37] = 2 constants[38] = 1 constants[39] = ((constants[9]*constants[11])/(constants[38]*constants[10]))*log(constants[12]/constants[6]) constants[40] = constants[2]+constants[4] states[0] = constants[7] states[1] = constants[25] states[2] = constants[26] states[3] = constants[27] states[4] = constants[28] return (states, constants) def computeRates(voi, states, constants): rates = [0.0] * sizeStates; algebraic = [0.0] * sizeAlgebraic algebraic[5] = ((power(states[0], constants[23]))/(power(constants[24], constants[23])+power(states[0], constants[23])))*1.00000 algebraic[3] = states[1]+states[2]+states[3]+states[4] rates[1] = (-algebraic[5]*states[1])/algebraic[3]+(constants[30]*states[2])/algebraic[3]+(constants[29]*states[3])/algebraic[3] rates[2] = ((constants[32]*states[4])/algebraic[3]+(algebraic[5]*states[1])/algebraic[3])-((constants[30]+constants[31])*states[2])/algebraic[3] rates[3] = (constants[33]*states[4])/algebraic[3]-((algebraic[5]+constants[29])*states[3])/algebraic[3] rates[4] = ((constants[31]*states[2])/algebraic[3]+(algebraic[5]*states[3])/algebraic[3])-((constants[32]+constants[33])*states[4])/algebraic[3] algebraic[2] = (voi-constants[0])-constants[40]*floor((voi-constants[0])/constants[40]) algebraic[4] = custom_piecewise([less_equal(voi , constants[0]), constants[1] , greater(voi , constants[0]) & less_equal(algebraic[2] , constants[2]) & less_equal(voi , constants[0]+constants[40]*constants[5]), constants[3] , True, constants[1]]) algebraic[6] = 1.00000/(1.00000+exp((constants[15]-algebraic[4])/constants[16])) algebraic[8] = ((constants[9]*constants[11])/(constants[37]*constants[10]))*log(constants[13]/states[0]) algebraic[11] = constants[17]*algebraic[6]*(algebraic[4]-algebraic[8]) algebraic[12] = -algebraic[11]/(2.00000*constants[14]*constants[10]) algebraic[7] = (-constants[18]*(power(states[0], constants[19])))/(power(constants[20], constants[19])+power(states[0], constants[19])) algebraic[9] = 3.00000*constants[39]-2.00000*algebraic[8] algebraic[10] = ((constants[22]*states[0])/(states[0]+constants[21]))*(algebraic[4]-algebraic[9]) rates[0] = algebraic[12]+constants[8]*algebraic[7]+algebraic[10] return(rates) def computeAlgebraic(constants, states, voi): algebraic = array([[0.0] * len(voi)] * sizeAlgebraic) states = array(states) voi = array(voi) algebraic[5] = ((power(states[0], constants[23]))/(power(constants[24], constants[23])+power(states[0], constants[23])))*1.00000 algebraic[3] = states[1]+states[2]+states[3]+states[4] algebraic[2] = (voi-constants[0])-constants[40]*floor((voi-constants[0])/constants[40]) algebraic[4] = custom_piecewise([less_equal(voi , constants[0]), constants[1] , greater(voi , constants[0]) & less_equal(algebraic[2] , constants[2]) & less_equal(voi , constants[0]+constants[40]*constants[5]), constants[3] , True, constants[1]]) algebraic[6] = 1.00000/(1.00000+exp((constants[15]-algebraic[4])/constants[16])) algebraic[8] = ((constants[9]*constants[11])/(constants[37]*constants[10]))*log(constants[13]/states[0]) algebraic[11] = constants[17]*algebraic[6]*(algebraic[4]-algebraic[8]) algebraic[12] = -algebraic[11]/(2.00000*constants[14]*constants[10]) algebraic[7] = (-constants[18]*(power(states[0], constants[19])))/(power(constants[20], constants[19])+power(states[0], constants[19])) algebraic[9] = 3.00000*constants[39]-2.00000*algebraic[8] algebraic[10] = ((constants[22]*states[0])/(states[0]+constants[21]))*(algebraic[4]-algebraic[9]) algebraic[0] = states[4]+states[3] algebraic[1] = states[4]+states[2] return algebraic def custom_piecewise(cases): """Compute result of a piecewise function""" return select(cases[0::2],cases[1::2]) def solve_model(): """Solve model with ODE solver""" from scipy.integrate import ode # Initialise constants and state variables (init_states, constants) = initConsts() # Set timespan to solve over voi = linspace(0, 10, 500) # Construct ODE object to solve r = ode(computeRates) r.set_integrator('vode', method='bdf', atol=1e-06, rtol=1e-06, max_step=1) r.set_initial_value(init_states, voi[0]) r.set_f_params(constants) # Solve model states = array([[0.0] * len(voi)] * sizeStates) states[:,0] = init_states for (i,t) in enumerate(voi[1:]): if r.successful(): r.integrate(t) states[:,i+1] = r.y else: break # Compute algebraic variables algebraic = computeAlgebraic(constants, states, voi) return (voi, states, algebraic) def plot_model(voi, states, algebraic): """Plot variables against variable of integration""" import pylab (legend_states, legend_algebraic, legend_voi, legend_constants) = createLegends() pylab.figure(1) pylab.plot(voi,vstack((states,algebraic)).T) pylab.xlabel(legend_voi) pylab.legend(legend_states + legend_algebraic, loc='best') pylab.show() if __name__ == "__main__": (voi, states, algebraic) = solve_model() plot_model(voi, states, algebraic)