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

ACh modulation in olfactory bulb and piriform cortex (de Almeida et al. 2013;Devore S, et al. 2014)

 Download zip file 
Help downloading and running models
Accession:146813
This matlab code was used in the papers de Almeida, Idiart and Linster, (2013), Devore S, de Almeida L, Linster C (2014) . This work uses a computational model of the OB and PC and their common cholinergic inputs to investigate how bulbar cholinergic modulation affects cortical odor processing.
References:
1 . de Almeida L, Idiart M, Linster C (2013) A model of cholinergic modulation in olfactory bulb and piriform cortex. J Neurophysiol 109:1360-77 [PubMed]
2 . Devore S, de Almeida L, Linster C (2014) Distinct roles of bulbar muscarinic and nicotinic receptors in olfactory discrimination learning. J Neurosci 34:11244-60 [PubMed]
Model Information (Click on a link to find other models with that property)
Model Type: Realistic Network;
Brain Region(s)/Organism:
Cell Type(s): Olfactory bulb main mitral GLU cell; Piriform cortex anterior pyramidal layer II GLU cell; Olfactory bulb main interneuron periglomerular GABA cell; Olfactory bulb main interneuron granule MC GABA cell; Piriform cortex anterior interneuron superficial GABA cell; Piriform cortex anterior interneuron deep layer GABA cell;
Channel(s):
Gap Junctions:
Receptor(s): Nicotinic; Muscarinic; Cholinergic Receptors; Olfactory Receptors;
Gene(s):
Transmitter(s): Acetylcholine;
Simulation Environment: MATLAB;
Model Concept(s): Oscillations; Synchronization; Synaptic Plasticity; Noise Sensitivity; Olfaction;
Implementer(s): de Almeida, Licurgo [lbd38 at cornell.edu];
Search NeuronDB for information about:  Olfactory bulb main mitral GLU cell; Piriform cortex anterior pyramidal layer II GLU cell; Olfactory bulb main interneuron periglomerular GABA cell; Olfactory bulb main interneuron granule MC GABA cell; Piriform cortex anterior interneuron superficial GABA cell; Piriform cortex anterior interneuron deep layer GABA cell; Nicotinic; Muscarinic; Cholinergic Receptors; Olfactory Receptors; Acetylcholine;
Files displayed below are from the implementation
function [OSN,Pg,M1,M2,Gr] = SetBulbParam(OSN,Pg,M1,M2,Gr,Mod)
% [OSN,Pg,M1,M2,Gr] = SetBulbParam(OSN,Pg,M1,M2,Gr,AChMod)
% This function set bulb parameters for the noradrenaline project, where:
% OSN,Pg,M1,M2,Gr are objects;
% Mod is either between 1 (for Mod fully ON), 0 (for Mod fully OFF) or -1 
% (for Mod dynamic)

% OSN
OSN.AMPAFf.G = 200e-3;
OSN.ModValue = Mod;
OSN.Tmax = [1e-3,1e-3];
OSN.Tmin = [0e-3,0e-3];
OSN.Cmax = 5;

%Pg cells
Pg.AMPAFf.G = 166e-3;
Pg.Tmax = [4e-3,4e-3];
Pg.Tmin = [0e-3,0e-3];
Pg.ModValue = Mod;
Pg.Cmax = 5;

% M1 (Mitral apical)
M1.AMPAFf.G = 160e-3;
M1.GABAFf.G = 380e-3;
M1.tau = 4;
M1.Rsom = 1;
M1.Tmax = [8e-3,8e-3];
M1.Cmax = 5;

% M2 (Mitral soma)
M2.Tmax = [9e-3,1e-3]; % the order here is [Mod OFF, Mod ON]
M2.Tmin = [-1.4e-3,-1.4e-3]; % the order here is [Mod OFF, Mod ON]
M2.ModValue = Mod;
M2.Beta = 2;
M2.K = 2;
M2.Cmax = 5; %Max neuromodulator concentration
M2.GABAFb.G = 180e-3;

% Gr cells
Gr.AMPAFf.G = 20e-3;
Gr.Tmax = [6e-3,6e-3];
Gr.Tmin = [-1e-3,-2.4e-3];
Gr.b = 1.5;
Gr.K = 3;
Gr.Cmax = 5;
Gr.ModValue = Mod;
Gr.Beta = 3;
Gr.Tminne = [0e-3,1e-3];
Gr.bne = 1;
Gr.Kne = 1;
Gr.Cmaxne = 5;

Loading data, please wait...