ModelDB is moving. Check out our new site at https://modeldb.science. The corresponding page is https://modeldb.science/147578.

Chirp stimulus responses in a morphologically realistic model (Narayanan and Johnston, 2007)

 Download zip file 
Help downloading and running models
Accession:147578
...we built a multicompartmental model with a morphologically realistic three-dimensional reconstruction of a CA1 pyramidal neuron. The only active conductance we added to the model was the h conductance. ... We conclude that experimentally observed gradient in density of h channels could theoretically account for experimentally observed gradient in resonance properties (Narayanan and Johnston, 2007).
Reference:
1 . Narayanan R, Johnston D (2007) Long-term potentiation in rat hippocampal neurons is accompanied by spatially widespread changes in intrinsic oscillatory dynamics and excitability. Neuron 56:1061-75 [PubMed]
Model Information (Click on a link to find other models with that property)
Model Type: Neuron or other electrically excitable cell; Dendrite;
Brain Region(s)/Organism: Hippocampus;
Cell Type(s): Hippocampus CA1 pyramidal GLU cell;
Channel(s): I h;
Gap Junctions:
Receptor(s):
Gene(s):
Transmitter(s):
Simulation Environment: NEURON;
Model Concept(s): Ion Channel Kinetics; Active Dendrites; Detailed Neuronal Models;
Implementer(s): Narayanan, Rishikesh [rishi at iisc.ac.in];
Search NeuronDB for information about:  Hippocampus CA1 pyramidal GLU cell; I h;
/
MultiChirp
Output
README.txt
h.mod *
ChirpI.txt *
Fig8C.hoc
mosinit.hoc
n123.hoc *
ObliquePath.hoc *
oblique-paths.hoc *
Trunk_RN.txt
Trunk_Z.txt
                            
// This template creates the Basal Path lists, starting from the
// section attached to the trunk and ending with the basal tip section 
// written by Terrence Brannon, modified by Yiota Poirazi, July 2001, poirazi@LNC.usc.edu

begintemplate ObliquePath

public dtrunk_to_tip, trunk_section, root_oblique

strdef sexec

objref trunk_section
strdef trunk_section_name

objref root_oblique
strdef root_oblique_name

objref tip_section
strdef tip_section_name

objref oblique_path

proc init () {
  sec_count=0

  forsec $o1 {

    if (sec_count==1) {
       root_oblique    = new SectionRef()
       root_oblique_name=secname()
    }
      
    if (!sec_count) {
       distance(0,1)
       trunk_section  = new SectionRef()
       trunk_section_name=secname()
      }
    sec_count=sec_count+1

    tip_section    = new SectionRef()
    tip_section_name=secname()
  }

  access root_oblique.sec
  distance(0,0)
  access tip_section.sec
  dtrunk_to_tip=distance(1,1)

//  printf("ObliquePath trunk_section: %s root_oblique: %s tip_section: %s distance between root_oblique and tip_section: %g\n", trunk_section_name, root_oblique_name, tip_section_name, dtrunk_to_tip)
}

endtemplate ObliquePath

Loading data, please wait...