Search found 6396 matches
- Mon Mar 16, 2026 1:50 pm
- Forum: NEURON Announcements
- Topic: 2026 NEURON Summer Course description
- Replies: 0
- Views: 945
2026 NEURON Summer Course description
Location and dates The 2026 NEURON Summer Course will be held at Duke University in Durham, NC from Wednesday, June 10, through Monday, June 15, 2026. Application and registration Space is limited, and applications will be considered in the order received. The deadline for application and payment o...
- Mon Mar 16, 2026 1:48 pm
- Forum: NEURON Announcements
- Topic: 2026 NEURON Summer Course
- Replies: 0
- Views: 387
2026 NEURON Summer Course
The 2026 NEURON Summer Course Location: Duke University, Durham, NC Dates: Wednesday, June 10, through Monday, June 15, 2026 Faculty: Ted Carnevale, Robert McDougal, and guest speakers TBA Application deadline: Monday, June 1, 2026 This intensive multi-day course is designed for those who are plann...
- Sun Mar 15, 2026 6:55 pm
- Forum: NEURON Announcements
- Topic: NEURON Forum is back online!
- Replies: 0
- Views: 446
NEURON Forum is back online!
After a hiatus due to various hardware and software issues, the NEURON Forum is back online! Watch for new announcements in the near future!
- Tue Jul 01, 2025 1:07 pm
- Forum: Getting started
- Topic: Help for adding multiple neurons and connecting them.
- Replies: 8
- Views: 18251
Re: Help for adding multiple neurons and connecting them.
NEURON's GUI tools provide a "no code" way to not only create cell classes from morphometric data files but also to verify the integrity and appropriateness of such data. The workflow involves using the Import3d and CellBuilder tools. Online documentation is available, but it would take ve...
- Wed Jun 25, 2025 5:46 pm
- Forum: Getting started
- Topic: Help for adding multiple neurons and connecting them.
- Replies: 8
- Views: 18251
Re: Help for adding multiple neurons and connecting them.
The general workflow for developing network models starts by defining the cell classes that will be used. One useful way to organize network model code is to factor the code into several files. For example, for each cell class there would be a file that defines the anatomical and biophysical propert...
- Tue Jun 24, 2025 1:02 pm
- Forum: Getting started
- Topic: Help for adding multiple neurons and connecting them.
- Replies: 8
- Views: 18251
Re: Help for adding multiple neurons and connecting them.
Final comments: have you verified that your morphology files are suitable for computational modeling with NEURON? Are there orphaned branches, bottlenecks or other oddities affecting neurite diameters (e.g. minimum diameter larger than 1 um, "favorite numbers")? Is there evidence of z axis...
- Tue Jun 24, 2025 12:56 pm
- Forum: Getting started
- Topic: Help for adding multiple neurons and connecting them.
- Replies: 8
- Views: 18251
Re: Help for adding multiple neurons and connecting them.
More code than I like to paste as a single lump in one of these threads. Example of Python code that creates a cell class with morphology read from an SWC file. This was developed by Robert McDougal as one possible answer to one of the in-class hands-on exercises. It uses matplotlib to display simul...
- Tue Jun 24, 2025 12:47 pm
- Forum: Getting started
- Topic: Help for adding multiple neurons and connecting them.
- Replies: 8
- Views: 18251
Re: Help for adding multiple neurons and connecting them.
Nice clean code. Looks like somebody has experience with C or Matlab. General suggestions when developing network models: First define and test each cell class all by itself. Then try creating and connecting just two cells. Cell classes are important for several reasons. First is avoiding collisions...
- Tue Jun 03, 2025 11:43 am
- Forum: Modeling networks
- Topic: Simulation fails when adding 3D location to cell
- Replies: 3
- Views: 18983
Re: Simulation fails when adding 3D location to cell
You might find a solution to your problem by reading about specification of geometry with Python https://nrn.readthedocs.io/en/latest/python/modelspec/programmatic/topology/ geometry.html#geometry-geometry or hoc https://nrn.readthedocs.io/en/latest/hoc/modelspec/programmatic/topology/geometry.html#...
- Fri May 23, 2025 5:36 pm
- Forum: Other questions
- Topic: tACS
- Replies: 1
- Views: 16584
Re: tACS
I will assume that you are using the code in https://www.neuron.yale.edu/ftp/ted/neuron/extracellular_stim_and_rec.zip . The amplitude and time course of the extracellular stimulus is calculated by the procedure stim_waveform() in the file stim.hoc. The functionality of that procedure is very limite...
- Fri May 23, 2025 1:50 pm
- Forum: NEURON hacks
- Topic: AlphaSynapse dynamics
- Replies: 1
- Views: 16223
Re: AlphaSynapse dynamics
Hello NEURON community: This post talks about the underlying equation of AlphaSynapse. https://www.sas.upenn.edu/LabManuals/BBB251/NIA/NEUROLAB/HELP/alphasyn.htm I am wondering if the "v", postsynaptic voltage, is constant (and set as resting voltage) or should change during current injec...
- Tue May 13, 2025 11:49 am
- Forum: Modeling networks
- Topic: Simulation fails when adding 3D location to cell
- Replies: 3
- Views: 18983
Re: Simulation fails when adding 3D location to cell
I seem to have misplaced my scrying stone, and without that it is difficult to diagnose the unseen. Perhaps you could share what you mean by "add the 3D location" e.g. by providing code examples of what you did that worked, and what you did that didn't work.
- Mon May 12, 2025 1:30 pm
- Forum: NEURON + Python
- Topic: Changing parameters in NMODL files from within a Python script?
- Replies: 3
- Views: 58389
Re: Changing parameters in NMODL files from within a Python script?
Good Python suggestion, urid. Here are some NEURON-specific comments: First, just to make sure that everyone who reads this thread knows what we're writing about-- 1. NMODL's global variables. An NMODL-specified mechanism's PARAMETERs are global by default (have the same value in all segments in whi...
- Sun Apr 27, 2025 3:01 pm
- Forum: UNIX/Linux
- Topic: Windows 7.2 NEURON on Linux?
- Replies: 3
- Views: 32602
Re: Windows 7.2 NEURON on Linux?
You're quite welcome, Shaina. Glad to help!
- Tue Mar 25, 2025 7:35 pm
- Forum: Modeling networks
- Topic: Adding extracellular stimulus to network of neurons
- Replies: 9
- Views: 66862
Re: Adding extracellular stimulus to network of neurons
I've never seen this msg signify a discontinuity. It's usually caused by NMODL code with rate constants that involve exponential functions. Typically the exp is in a denominator where limiting the value returned by exp(x) to exp(700) will do no harm. Nothing will blow up numerically, and your simula...