Factors contribution to GDP-induced [Cl-]i transients (Lombardi et al 2019)

 Download zip file   Auto-launch 
Help downloading and running models
Accession:253369
This models are used to evaluate which factors influence the GDP (giant depolarizing potential) induced [Cl-]I transients based on a initial model of P. Jedlicka
Reference:
1 . Lombardi A, Jedlicka P, Luhmann HJ, Kilb W (2019) Interactions Between Membrane Resistance, GABA-A Receptor Properties, Bicarbonate Dynamics and Cl-Transport Shape Activity-Dependent Changes of Intracellular Cl- Concentration Int J of Mol Sci [PubMed]
Citations  Citation Browser
Model Information (Click on a link to find other models with that property)
Model Type: Neuron or other electrically excitable cell; Dendrite; Synapse;
Brain Region(s)/Organism: Mouse; Hippocampus;
Cell Type(s): Hippocampus CA3 pyramidal GLU cell;
Channel(s):
Gap Junctions:
Receptor(s): GabaA;
Gene(s):
Transmitter(s): Gaba;
Simulation Environment: NEURON;
Model Concept(s): Synaptic Plasticity;
Implementer(s):
Search NeuronDB for information about:  Hippocampus CA3 pyramidal GLU cell; GabaA; Gaba;
/
LombardiEtAl2019
Isolated_Dendrite_tauNKCC1__Fig9
cldif_CA3_NKCC1_HCO3.mod *
gabaA_Cl_HCO3.mod *
VDpas.mod *
vecevent.mod *
cell_isolated_dendrite.hoc *
cell_soma_dendrite.hoc *
cell_soma_dendrite_1000um.hoc
cell_soma_dendrite_fine.hoc
Freq_PSC.ses
gabaA_Cl_HCO3.o
GABA-Stim_1xPSC_isolated_dendrite_GUI.hoc
GABA-Stim_2xPSC_Spatial_Sum_isolated_dendrite.hoc
GABA-Stim_2xPSC_Spatial_Sum_isolated_dendrite_enlarged_tauNKCC1.hoc
GABA-Stim_3xPSC_isolated_dendrite_GUI.hoc
GABA-Stim_5xPSC_Freq_isolated_dendrite.hoc
GABA-Stim_5xPSC_Freq_isolated_dendrite_back.hoc
GABA-Stim_5xPSC_Freq_isolated_dendrite_enlarged_tauNKCC1.hoc
GABA-Stim_5xPSC_Spatial_isolated_dendrite-Draft.hoc
init_Cldif_isolated_dendrite.hoc
Isolated_Dendrite.ses *
Isolated_Dendrite_Diff_Flux_1xGABA.ses
Isolated_Dendrite_Diff_Flux_3xGABA.ses
Isolated_Dendrite_Diff_Flux_Laptop.ses
start_GABA-Stim_2xPSC_Spatial_Sum_isolated_dendrite.hoc
start_GABA-Stim_2xPSC_Spatial_Sum_isolated_dendrite_enlarged_tauNKCC1.hoc
start_GABA-Stim_5xPSC_Freq_isolated_dendrite.hoc
start_GABA-Stim_5xPSC_Freq_isolated_dendrite_enlarged_tauNKCC1.hoc
start_procedure.hoc
                            
proc celldef() {
  topol()
  subsets()
  geom()
  biophys()
}

create soma, dend, axon

proc topol() { local i
  // connect dend(0), soma(1)
  basic_shape()
}
proc basic_shape() {
  soma {pt3dclear() pt3dadd(0, 0, 0, 1) pt3dadd(15, 0, 0, 1)}
  dend {pt3dclear() pt3dadd(15, 0, 0, 1) pt3dadd(515, 0, 0, 1)}

}

objref all
proc subsets() {
  all = new SectionList()
    soma all.append()
    dend all.append()
}

proc geom() {
  forsec all {  }
  soma {  L = 20  diam = 20  nseg = 1}
  dend {  L = 200  diam = 1  nseg = 103}
}

proc biophys() {
  forsec all {
    cm = 1
    Ra = 35.4
  }

  dend {
    insert pas
      g_pas = 0.001
      e_pas = -60
    }
}

access soma

celldef()