Synaptic integration in a model of granule cells (Gabbiani et al 1994)

 Download zip file 
Help downloading and running models
Accession:19591
We have developed a compartmental model of a turtle cerebellar granule cell consisting of 13 compartments that represent the soma and 4 dendrites. We used this model to investigate the synaptic integration of mossy fiber inputs in granule cells. See reference or abstract at PubMed link below for more information.
Reference:
1 . Gabbiani F, Midtgaard J, Knöpfel T (1994) Synaptic integration in a model of cerebellar granule cells. J Neurophysiol 72:999-1009 [PubMed]
Model Information (Click on a link to find other models with that property)
Model Type: Neuron or other electrically excitable cell;
Brain Region(s)/Organism:
Cell Type(s): Cerebellum interneuron granule GLU cell;
Channel(s): I Na,t; I L high threshold; I K; I h; I K,Ca;
Gap Junctions:
Receptor(s): GabaA; AMPA; NMDA;
Gene(s):
Transmitter(s):
Simulation Environment: NEURON;
Model Concept(s): Action Potential Initiation; Coincidence Detection; Detailed Neuronal Models; Action Potentials; Calcium dynamics;
Implementer(s): Gabbiani, F;
Search NeuronDB for information about:  Cerebellum interneuron granule GLU cell; GabaA; AMPA; NMDA; I Na,t; I L high threshold; I K; I h; I K,Ca;
TITLE h_chan.mod   squid sodium, potassium, and leak channels
 
COMMENT
%W%                            %G%
ENDCOMMENT
 
UNITS {
        (mA) = (milliamp)
        (mV) = (millivolt)
}
 
NEURON {
        SUFFIX h_chan
        RANGE gbar, i
        NONSPECIFIC_CURRENT i
        GLOBAL ena, ek, minf, 
               am, bm, cm, dm, taum_min
}
 
INDEPENDENT {t FROM 0 TO 1 WITH 1 (ms)}
 
PARAMETER {
        v (mV)
        dt (ms)
        gbar = 1.648e-4 (mho/cm2)
        ena = 55 (mV)
        ek = -90 (mV)

        am = 0.001
        bm = -0.1818
        cm = 0.5
        dm = -75
        taum_min = 1e-3

}
 
STATE {
        m
}
 
ASSIGNED {
        i (mA/cm2)
        minf
}
 
LOCAL mexp
 
BREAKPOINT {
        SOLVE states
        i = gbar*m*(v - ek)*2/3 +  gbar*m*(v - ena)/3
}
 
UNITSOFF
 
INITIAL {
	rates(v)
	m = minf
}

PROCEDURE states() {  :Computes state variables m, h, and n 
        rates(v)      :             at the current v and dt.
        m = m + mexp*(minf-m)
        VERBATIM
        return 0;
        ENDVERBATIM
}
 
PROCEDURE rates(v) {  :Computes rate and other constants at current v.
                      :Call once from HOC to initialize inf at resting v.
        LOCAL  tau,alpha,beta
        TABLE minf, mexp DEPEND dt FROM -100 TO 100 WITH 2000

                :"m" h current activation system
        alpha = am*exp(bm*cm*(v-dm))
        beta = am*exp(-bm*(1-cm)*(v-dm))
        tau = 1/(alpha + beta)
        minf = alpha*tau
        if (tau<taum_min) { tau = taum_min }
        mexp = 1 - exp(-dt/tau)

}
 
 
UNITSON


Loading data, please wait...