Do anyone know if my gap junction model is OK?
Posted: Tue Feb 07, 2006 2:49 am
In hoc file I create two hh cells with length 1000um, diameter 10um, and
coonect them by gap junction
objref gap_l, gap_r
gap_r = new Gap()
gap_l = new Gap()
RLG.axon2 gap_r.loc(0.999)
LLG.axon2 gap_l.loc(0.999)
setpointer gap_r.vnb , LLG.axon2.v(0.999)
setpointer gap_l.vnb , RLG.axon2.v(0.999)
and Gap junction model
NEURON {
POINT_PROCESS Gap
POINTER vnb
RANGE r, i
NONSPECIFIC_CURRENT i
}
PARAMETER { r = 1e10 (megohm) }
ASSIGNED {
v (millivolt)
vnb (millivolt)
i (nanoamp)
}
BREAKPOINT { i = (v - vnb)/r }
when I set the resistance of gap junction approach to zero like 0.0001
I found action potential can not propagate during these two cells.
If I just create one hh cell with length 1000um , diameter 10um, action potential can propagate from one edge to other edge.
Can anyone know if my model is correct ?
coonect them by gap junction
objref gap_l, gap_r
gap_r = new Gap()
gap_l = new Gap()
RLG.axon2 gap_r.loc(0.999)
LLG.axon2 gap_l.loc(0.999)
setpointer gap_r.vnb , LLG.axon2.v(0.999)
setpointer gap_l.vnb , RLG.axon2.v(0.999)
and Gap junction model
NEURON {
POINT_PROCESS Gap
POINTER vnb
RANGE r, i
NONSPECIFIC_CURRENT i
}
PARAMETER { r = 1e10 (megohm) }
ASSIGNED {
v (millivolt)
vnb (millivolt)
i (nanoamp)
}
BREAKPOINT { i = (v - vnb)/r }
when I set the resistance of gap junction approach to zero like 0.0001
I found action potential can not propagate during these two cells.
If I just create one hh cell with length 1000um , diameter 10um, action potential can propagate from one edge to other edge.
Can anyone know if my model is correct ?