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

Medial vestibular neuron models (Quadroni and Knopfel 1994)

 Download zip file 
Help downloading and running models
Accession:53876
The structure and the parameters of the model cells were chosen to reproduce the responses of type A and type B MVNns as described in electrophysiological recordings. The emergence of oscillatory firing under these two specific experimental conditions is consistent with electrophysiological recordings not used during construction of the model. We, therefore, suggest that these models have a high predictive value.
Reference:
1 . Quadroni R, Knöpfel T (1994) Compartmental models of type A and type B guinea pig medial vestibular neurons. J Neurophysiol 72:1911-24 [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): Vestibular neuron;
Channel(s): I Na,p; I Na,t; I L high threshold; I T low threshold; I A; I K; I h;
Gap Junctions:
Receptor(s): NMDA;
Gene(s):
Transmitter(s):
Simulation Environment: NEURON;
Model Concept(s): Oscillations; Action Potentials; Calcium dynamics;
Implementer(s): Morse, Tom [Tom.Morse at Yale.edu];
Search NeuronDB for information about:  NMDA; I Na,p; I Na,t; I L high threshold; I T low threshold; I A; I K; I h;
// fig2a1b1.hoc

// make sure the nmda receptors are turned off for fig 2
// for cell types A and B

if ( (dendA[3].gbar_nmda(0.5)>0) || (dendB[3].gbar_nmda(0.5) > 0 )) {
	nmda_off()	// can only turn off once otherwise forgets prev value
}

// record voltages, time

objref somaA_V, somaB_V, tvec

tstop = 750

somaA_V = new Vector(tstop/dt +1)
somaB_V = somaA_V.c
tvec = somaA_V.c

somaA_V.record(&somaA.v(0.5))
somaB_V.record(&somaB.v(0.5))

tvec.record(&t)

init()
run()

objref g2a1,g2b1, hbox2a1b1

hbox2a1b1 = new HBox()
hbox2a1b1.intercept(1)

	g2a1=new Graph()

	somaA_V.line(g2a1,dt, 1, 1)
	g2a1.exec_menu("Keep Lines")
	g2a1.exec_menu("View = plot")
	g2a1.label(.2,.925,"FIG 2 A1")
	g2b1=new Graph()

	somaB_V.line(g2b1, dt, 1, 1)
	g2b1.exec_menu("Keep Lines")
	g2b1.exec_menu("View = plot")
	g2b1.label(.2,.925,"FIG 2 B1")

hbox2a1b1.intercept(0)
hbox2a1b1.map()

Loading data, please wait...