I have constructed the neuron (and network-we had a discussion about this if you remember) based on Gillies-Sterratt tutorial.
I tried to give my model a more subthalamic behaviour by adding more channels guided by Andrew's citation in modelDB about:STh nucleus projection neuron.
My problem is that the only way my neuron achieves rhythmic firing is if I "insert hh" properties in my model along with Gillies' Na and KDR mechanisms.
Code: Select all
// channels
insert Na
insert NaL
insert KDR
insert Kv31
[b] insert hh[/b]
..........................
ena = 71.5
ek = -89.1
gnabar_hh=0.25
gl_hh = .0001666
el_hh = -60.0
If I remove hh I get a straight line response unlike Gillies' RS.
Andrew's model achieves rhythmic firing in rs with its own Na,NaL,KDR...... mechanisms and without 'insert hh' as I can from his hoc code in sthprotocell.hoc
Why this happens?
I don't want to pester you with the codes,just your view.
I don't think I can replace Gillies' Na and KDR mechanisms with standard hh mechanism due to their different formulation.
My model performs the desired behaviour with two different Na and K mechanisms Andrew's and hh.
Is it reasonable?
and something else:
Is there a "cset" statement in NEURON or Andrew named it like ,What its function and syntax form?
In sample.hoc he uses this to load the levels of conductances he has into a seperate folder.
Code: Select all
// linear conductances (loaded from files)...
printf("loading linear+uniform conductances\n")
// KDR
cset(0,"gk_KDR","")
// Kv3.1
cset(0,"gk_Kv31","")
// Ih
cset(0,"gk_Ih","")
// sKCa
cset(0,"gk_sKCa","")
// CaT
cset(0,"gcaT_CaT","")
// CaN
cset(0,"gcaN_HVA","")
// CaL
cset(0,"gcaL_HVA","")
Code: Select all
// set the ion styles
forall ion_style("na_ion",1,2,1,0,1)
forall ion_style("k_ion",1,2,1,0,1)
forall ion_style("ca_ion",3,2,1,1,1)