Search found 5873 matches
- Tue Apr 13, 2021 11:45 am
- Forum: NEURON + Python
- Topic: Impulse Response for all locations
- Replies: 1
- Views: 9
Re: Impulse Response for all locations
I know I can find the transfer impedance for a pure frequency What constitutes an impure frequency? What to do depends on whether you prefer to operate in the frequency domain or in the time domain. If you want to operate in the frequency domain, then for any pair of locations of interest you'll ha...
- Tue Apr 13, 2021 1:08 am
- Forum: NEURON + Python
- Topic: Assigning values to a mechanism over all sections in anatomically detailed model
- Replies: 2
- Views: 22
Re: Assigning values to a mechanism over all sections in anatomically detailed model
Comments: 1. Iteration over all sections is required because ena is a range variable, not a global variable. 2. Iteration over all segments is not required because the syntax sectionname.rangevarname = somevalue assigns the value "somevalue" to the range variable in all segments of the ref...
- Mon Apr 12, 2021 2:49 pm
- Forum: NEURON + Python
- Topic: Assigning values to a mechanism over all sections in anatomically detailed model
- Replies: 2
- Views: 22
Re: Assigning values to a mechanism over all sections in anatomically detailed model
It's pretty straightforward in Python too. Try to think about the problem as being "how to iterate over all sections." This is easiest with the idiom for sec in h.allsec(): one_or_more_statements Example: suppose you have just created a bunch of sections and you need to insert hh into all ...
- Fri Apr 02, 2021 12:10 pm
- Forum: OS X
- Topic: Gui Freezing
- Replies: 5
- Views: 377
Re: Gui Freezing
Thanks for following up on that.
- Fri Mar 26, 2021 9:43 am
- Forum: NEURON + Python
- Topic: Myelin modeling
- Replies: 1
- Views: 56
Re: Myelin modeling
What "myelin double circuit model" are you referring to? With regard to models of spike propagation in myelinated axons, many authors have published such models. Most of them use very simple representations of the electrical effects of the myelin sheath. Whether one is better than another ...
- Wed Mar 24, 2021 10:26 am
- Forum: NEURON + Python
- Topic: initbatser.py
- Replies: 3
- Views: 46
Re: initbatser.py
Those files are from an exercise that was part of the 2018 NEURON Summer Course. Download and expand this file
https://neuron.yale.edu/ftp/neuron/2018emory/course.zip
and you'll find all the files for that particular exercise in course/bulletin_board_py
https://neuron.yale.edu/ftp/neuron/2018emory/course.zip
and you'll find all the files for that particular exercise in course/bulletin_board_py
- Tue Mar 23, 2021 6:53 pm
- Forum: NEURON + Python
- Topic: initbatser.py
- Replies: 3
- Views: 46
Re: initbatser.py
The programs initbatser.py and initplotfi.py both need to use a procedure called plotfi, but plotfi is not built into Python. Instead, it is a user-written procedure that is defined in plotfi.py, which is in the same directory as initbatser.py and initplotfi.py. The statement from plotfi import plot...
- Tue Mar 23, 2021 11:00 am
- Forum: Specific models
- Topic: Adding multiple synaptic connections to the two-compartment model (Ladenbauer 2019)
- Replies: 1
- Views: 47
Re: Adding multiple synaptic connections to the two-compartment model (Ladenbauer 2019)
There's a lot of "stuff" (code complexity) in that implementation of the Izhikevich model. It would be easier to incorporate simple representations of excitatory and inhibitory synaptic transmission, similar to ExpSyn and/or Exp2Syn, into your January 26 twocomps model. ExpSyn-like excitat...
- Mon Mar 22, 2021 9:11 am
- Forum: NEURON Announcements
- Topic: 8.0 release plan?
- Replies: 3
- Views: 60
Re: 8.0 release plan?
It will be released when it's ready.
- Thu Mar 18, 2021 12:12 pm
- Forum: Getting started
- Topic: The math behind extracellular mechanisms
- Replies: 23
- Views: 25921
Re: The math behind extracellular mechanisms
Sorry about that. The site's architecture has changed several times over the years, and some old URLs were not updated. The updated link is https://neuron.yale.edu/neuron/static/p ... p2.htm#3.2
- Thu Mar 18, 2021 12:06 pm
- Forum: NEURON + Python
- Topic: Kernel dies in Jupyter notebook when attempting to import NEURON
- Replies: 3
- Views: 84
Re: Kernel dies in Jupyter notebook when attempting to import NEURON
Thanks for that information.
I would also expect that nrnivmodl (or mknrndll) would generate an error message if it encountered duplicate SUFFIXes when compiling mod files.
I would also expect that nrnivmodl (or mknrndll) would generate an error message if it encountered duplicate SUFFIXes when compiling mod files.
- Tue Mar 16, 2021 12:17 am
- Forum: NEURON + Python
- Topic: Kernel dies in Jupyter notebook when attempting to import NEURON
- Replies: 3
- Views: 84
Re: Kernel dies in Jupyter notebook when attempting to import NEURON
Do you mean to say that the mod files had the same name? Or that their NEURON blocks contained identicalIn my case, the source of the error was a naming conflict between mod files, where they shared the same user defined name.
SUFFIX
or
POINT_PROCESS
or
ARTIFICIAL_CELL
statements?
- Sat Mar 13, 2021 12:14 pm
- Forum: Getting started
- Topic: Find all point processes
- Replies: 5
- Views: 86
Re: Find all point processes
Thanks, but I'm just standing on the shoulders of giants. More credit goes to those who are responsible for the hard work of software development (not to mention getting support for such development). The list at http://neuron.yale.edu/neuron/credits lags behind the growth of the development team.
- Thu Mar 11, 2021 1:10 pm
- Forum: Getting started
- Topic: Find all point processes
- Replies: 5
- Views: 86
Re: Find all point processes
It's always good to use meaningful names so a program automatically documents itself. One more hint: you can verify the existence or nonexistence of objects by using h.allobjects("classname") to discover the names of all instances of the named class (as well as the reference count for each...
- Tue Mar 09, 2021 4:14 pm
- Forum: Adding new mechanisms and functions to NEURON
- Topic: netstim and randomness
- Replies: 1
- Views: 53
Re: netstim and randomness
Very good question. The answer is yes, but "yes" doesn't tell you how to do it, or what complications might arise. For example, did you know that, by default, there is only a single pseudorandom number generator, and that everything that needs a "random" number will get its numbe...