Olfactory bulb network model of gamma oscillations (Bathellier et al. 2006; Lagier et al. 2007)

 Download zip file 
Help downloading and running models
Accession:91387
This model implements a network of 100 mitral cells connected with asynchronous inhibitory "synapses" that is meant to reproduce the GABAergic transmission of ensembles of connected granule cells. For appropriate parameters of this special synapse the model generates gamma oscillations with properties very similar to what is observed in olfactory bulb slices (See Bathellier et al. 2006, Lagier et al. 2007). Mitral cells are modeled as single compartment neurons with a small number of different voltage gated channels. Parameters were tuned to reproduce the fast subthreshold oscillation of the membrane potential observed experimentally (see Desmaisons et al. 1999).
Reference:
1 . Bathellier B, Lagier S, Faure P, Lledo PM (2006) Circuit properties generating gamma oscillations in a network model of the olfactory bulb. J Neurophysiol 95:2678-91 [PubMed]
2 . Lagier S, Panzanelli P, Russo RE, Nissant A, Bathellier B, Sassoè-Pognetto M, Fritschy JM, Lledo PM (2007) GABAergic inhibition at dendrodendritic synapses tunes gamma oscillations in the olfactory bulb. Proc Natl Acad Sci U S A 104:7259-64 [PubMed]
3 . Bathellier B, Lagier S, Faure P, Lledo PM (2006) Corrigendum for Bathellier et al., J Neurophysiol 95 (4) 2678-2691. J Neurophysiol 95:3961-3962
Citations  Citation Browser
Model Information (Click on a link to find other models with that property)
Model Type: Realistic Network;
Brain Region(s)/Organism: Olfactory bulb;
Cell Type(s): Olfactory bulb main mitral GLU cell;
Channel(s): I Na,p; I Na,t; I A; I K;
Gap Junctions:
Receptor(s): GabaA;
Gene(s):
Transmitter(s):
Simulation Environment: C or C++ program;
Model Concept(s): Oscillations; Delay; Olfaction;
Implementer(s):
Search NeuronDB for information about:  Olfactory bulb main mitral GLU cell; GabaA; I Na,p; I Na,t; I A; I K;
/**************************************************************************

	CurrentRk4.h													JJS 8/26/95
	
		modified from CONICAL, the Computational Neuroscience Class Library
	
	A Current is any object which attaches to a VSink and which provides
	a source of current for that VSink.

	Requires:
		VSink.h			-- header file for the VSink class
		
**************************************************************************/

#ifndef CURRENT_H
#define CURRENT_H

#include "VSink.h"

#ifndef real
#define real double
#endif

class Current
{
  public:
  
	Current( VSink *pTo, real pG=0, real pE=0, real pGk1=0, real pGk2=0, real pGk3=0, real pGk4=0 )				// constructor
	: itsTo(pTo), G(pG), E(pE), Gk1(pGk1), Gk2(pGk2), Gk3(pGk3), Gk4(pGk4), Pr(0) { pTo->AddCurrent(this); }
	
	virtual ~Current( void ) { itsTo->RemoveCurrent(this); }	// destructor
	
	virtual void SetE( real pE ) { E = pE; }			// setter
	
	virtual real GetE(void) const { return E; }			// inspectors
	virtual real GetEG(void) const { return G*E; }
	
			
	virtual real GetEGk1(void) const { return Gk1*E; }      // inspectors Runge Kutta
	virtual real GetEGk2(void) const { return Gk2*E; }
	virtual real GetEGk3(void) const { return Gk3*E; }
	virtual real GetPr(void) const { return Pr; }
	
	
	virtual VSink *GetTo(void) const { return itsTo; }

	// public variables:
	
	real G;
	real Gk1, Gk2, Gk3, Gk4;
	real Pr;
	
  protected:	
	VSink *itsTo;
	real E;
};

#endif