Help measuring/plotting the cytoplasmic Ca flux (nM/s) as function of Ca concentration
Posted: Mon Oct 12, 2020 3:47 am
Dear everyone,
I am a new user of the rxd module and I am trying to plot the cytoplasmic calcium flux (nM/s) produced by a calcium pump located on the plasma membrane. I would like to plot the calcium flux as function of calcium concentration during a quick influx and a successive recovery.
I have used rxd.Region() to define all the regions of interest, rxd.Species for the species and rxd.MultiCompartmentReaction to describe the interactions.
I am lost when it comes to record variables which are not the "classical" time, voltage, current and concentrations. In this case I simply use
How do I measure the membrane_flux? I thought of using _get_memb_flux(state_vec), but how? Or more generally how do I measure/record all the quantities I have access to because of rxd.MultiCompartmentReaction? And where do I find a list of those?
Is there any documentation on "how to use" the Properties and Methods listed here?
The code for the pump mechanism I used is the following:
I have done some tutorials but maybe I am missing something.
Best regards,
Ilaria
I am a new user of the rxd module and I am trying to plot the cytoplasmic calcium flux (nM/s) produced by a calcium pump located on the plasma membrane. I would like to plot the calcium flux as function of calcium concentration during a quick influx and a successive recovery.
I have used rxd.Region() to define all the regions of interest, rxd.Species for the species and rxd.MultiCompartmentReaction to describe the interactions.
I am lost when it comes to record variables which are not the "classical" time, voltage, current and concentrations. In this case I simply use
Code: Select all
t_vec = h.Vector().record(h._ref_t)
v_vec = h.Vector().record(soma(0.5)._ref_v)
ca_cur = h.Vector().record(soma(0.5)._ref_ica)
ca_con = h.Vector().record(soma(0.5)._ref_cai)
Is there any documentation on "how to use" the Properties and Methods listed here?

The code for the pump mechanism I used is the following:
Code: Select all
pmp_thr = rxd.MultiCompartmentReaction(ca[cyt] + pump[mem], pump_ca[mem],
k1_pmp, k2_pmp,
membrane_flux=True,
membrane=mem)
pmp_out =rxd.MultiCompartmentReaction(pump_ca[mem], caecs[ecs] + pump[mem],
k3_pmp, k4_pmp,
membrane_flux=False,
membrane=mem)
Best regards,
Ilaria