## Made by Erica Griffith -- 2 compartment thalamic nucleus interneuron w/ oscillatory bursting
from neuron import h
class sTI_cell:
def __init__ (self,x=0,y=0,z=0,ID=0,ty=0):
self.x=x
self.y=y
self.z=z
self.ID=ID
self.ty=ty
self.soma = soma = h.Section(name='soma',cell=self)
self.dend = dend = h.Section(name='dend',cell=self)
self.dend.connect(self.soma,0,0) # connect dend(0), soma(0)
for sec in [self.soma,self.dend]:
sec.Ra=120
self.initsoma()
self.initdend()
def initsoma (self):
soma = self.soma
soma.nseg = 1
soma.diam = 10
soma.L = 16
soma.cm = 1
## Passive current
soma.insert('Pass') #ntleak.mod
soma.g_Pass = 13e-06
soma.erev_Pass = -74
## Fast sodium
soma.insert('naf2')
soma.gmax_naf2 = 0.1
soma.mvhalf_naf2 = -40
soma.mvalence_naf2 = 5
soma.hvhalf_naf2 = -43
soma.hvalence_naf2 = -6
## DELAYED RECTIFIER POTASSIUM
soma.insert('kdr2orig')
soma.ek = -95
soma.gmax_kdr2orig = 0.1
soma.mvhalf_kdr2orig = -31
soma.mvalence_kdr2orig = 3.8
## H CURRENT
soma.insert('iar')
soma.ghbar_iar = 0.7e-04
soma.shift_iar = -0.0
## ICAN current
soma.insert('icanINT')
soma.gbar_icanINT = 0.0001
h.beta_icanINT = 0.003
h.cac_icanINT = 1.1e-04
soma.ratc_icanINT = 0.8 # proportion coming from low-thresh pool (IT)
soma.ratC_icanINT = 0.1 # proportion coming from high-thresh pool (IL)
h.x_icanINT = 8 # correct re: jun.pdf, if x_ican == "n"
## IAHP current
soma.insert('iahp')
soma.gkbar_iahp = 0.45
h.beta_iahp = 0.02 # correct re: jun.pdf
h.cac_iahp = 8e-04
soma.ratc_iahp = 0.2
soma.ratC_iahp = 1
soma.ek2 = -95
## IT current (low-thresh calcium pool)
soma.insert('it2INT')
soma.gcabar_it2INT = 0.4e-04
soma.shift1_it2INT = 7 # correct re: jun.pdf
h.shift2_it2INT = 0 # correct re: jun.pdf # h used bc GLOBAL var in ntt.mod
h.mx_it2INT = 3.0 # correct re: jun.pdf # h used bc GLOBAL var in ntt.mod
h.hx_it2INT = 1.5 # correct re: jun.pdf # h used bc GLOBAL var in ntt.mod
h.sm_it2INT = 4.8 # correct re: jun.pdf # h used bc GLOBAL var in ntt.mod
h.sh_it2INT = 4.6 # correct re: jun.pdf # h used bc GLOBAL var in ntt.mod
## low-thresh calcium pool pump
soma.insert('cad_int')
soma.taur_cad_int = 150 # ORIG: 150
soma.taur2_cad_int = 80 # ORIG: 80
soma.cainf_cad_int = 1e-8 # ORIG: 1e-8
soma.cainf2_cad_int = 5.3e-5 # ORIG: 5.2e-5
soma.kt_cad_int = 0 # ORIG: 0e-6 # <-- should be 0 from thesis
soma.kt2_cad_int = 0 # ORIG: 0e-7 # <-- should be 0 from thesis
soma.k_cad_int = 7.5e-3
soma.kd_cad_int = 9e-4 # doesn't matter if kt is 0
h.kd2_cad_int = 9e-4 # doesn't matter if kt2 is 0
## IL current (high-thresh calcium pool)
soma.insert('icalINT')
soma.pcabar_icalINT = 0.00009
h.sh1_icalINT = -10
h.sh2_icalINT = 0
## High-thresh calcium pool pump
soma.insert('Cad_int')
soma.taur_Cad_int = 150
soma.taur2_Cad_int = 80
soma.Cainf_Cad_int = 1e-8
soma.Cainf2_Cad_int = 5.2e-5
soma.kt_Cad_int = 0
soma.kt2_Cad_int = 0
soma.k_Cad_int = 5e-3
soma.kd_Cad_int = 9e-4
h.kd2_Cad_int = 9e-4
h.Cai0_Ca_ion = 5e-5
h.Cao0_Ca_ion = 2
def initdend (self):
dend = self.dend
dend.nseg = 1
dend.diam = 3.25
dend.L = 240
dend.cm = 1
## Passive current
dend.insert('Pass')
dend.g_Pass = 13e-06
dend.erev_Pass = -74