Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Avoid declaring (ion) state variables as global, see neuronsimulator/nrn/pull/1723 #1

Merged
merged 2 commits into from
May 27, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 9 additions & 4 deletions Readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ neuromodulation in olfactory bulb. Journal of Neuroscience
33:3037-3058.

For questions, please email: [email protected]

The OB network model contains 25 mitral cells (MCs), 25 periglomerular
cells (PGs) and 100 granule cell (GCs)

The package contains five folders:

"celldata" folder to store data from single cell simulations
"data" folder to store data from network simulations
"data" folder to store data from network simulations
"SP" folder to store the timing of random background spikes to MCs
"Connection" folder to store the connectivity information between MCs
and GCs
Expand All @@ -48,7 +48,7 @@ NTCE = 1: Glomerular model without EPL (i.e., no granule cells)
NICOTIN = 0: nAChRs inactive
NICOTIN = 1: nAChRs activated
MUSCARIN = 0: mAChRs inactive
MUSCARIN = 1: mAChRs activated
MUSCARIN = 1: mAChRs activated

The default setting is the full model under the Control case (nAChRs
and mAChRs inactive)
Expand All @@ -61,3 +61,8 @@ PlotG.m: plot GABAa conductances
Raster.m: generate raster plots of spikes
LFP.m: frequency analysis of the sLFP
Phase.m: generate phase distribution plot and raster plot of spike phases

Changelog
---------
2022-05: Updated MOD files to compile with the latest neuron releases where
ion variables used as STATE can not be declared as GLOBAL.
2 changes: 1 addition & 1 deletion cadecay.mod
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ NEURON{
SUFFIX cad
USEION ca READ ica, cai WRITE cai
RANGE ica, channel_flow, depth, B
GLOBAL cai, tau, cainf
GLOBAL tau, cainf
}

UNITS {
Expand Down
2 changes: 1 addition & 1 deletion cadecay2.mod
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ NEURON{
SUFFIX cad2
USEION ca READ ica, cai WRITE cai
RANGE ica, channel_flow, depth, B
GLOBAL cai, tau, cainf
GLOBAL tau, cainf
}

UNITS {
Expand Down