Search found 6382 matches
- Thu Jan 30, 2025 12:41 pm
- Forum: Suggestions and Feedback
- Topic: Example projects and guidance?
- Replies: 1
- Views: 28400
Re: Example projects and guidance?
General comments: NEURON is a great tool, but should the project's emphasis be on the tool or on some scientific question? Examples of the former would focus on topics related to applied math (e.g. efficient methods for solving large sets of differential equations) or computer science (dealing with ...
- Wed Jan 29, 2025 12:34 pm
- Forum: Modeling networks
- Topic: Adding extracellular stimulus to network of neurons
- Replies: 9
- Views: 41225
Re: Adding extracellular stimulus to network of neurons
The difference between what you expected to happen, and what actually happened, has nothing to do with software, let alone software bugs. You have rediscovered a consequence of Maxwell's equations and Gauss's law. Suggested reading in this Forum: https://www.neuron.yale.edu/phpBB/viewtopic.php?p=107...
- Wed Jan 22, 2025 2:58 pm
- Forum: OS X
- Topic: NEURON 8.2 install / OS X 15.2 Sequoia / Python 3.12.7 Anaconda installation difficulties
- Replies: 3
- Views: 34236
Re: NEURON 8.2 install / OS X 15.2 Sequoia / Python 3.12.7 Anaconda installation difficulties
Hmm, old links at the old web site. Time to migrate any useful content from www.neuron.yale.edu to someplace else, and then shut down the old site (which is way too heavy on style and customization, and a big pain to maintain). Always go to nrn.readthedocs.io for the most recent standard distributio...
- Mon Jan 06, 2025 7:57 pm
- Forum: NEURON Announcements
- Topic: 2025 NEURON Spring Course description
- Replies: 0
- Views: 29914
2025 NEURON Spring Course description
Location and dates The 2025 NEURON Spring Course will be held at Arizona State University in Tempe, AZ from Sunday, March 9, through Friday, March 14, 2025. Application and registration Space is limited, and applications will be considered in the order received. The deadline for application and pay...
- Mon Jan 06, 2025 7:53 pm
- Forum: NEURON Announcements
- Topic: The 2025 NEURON Spring Course
- Replies: 0
- Views: 19262
The 2025 NEURON Spring Course
The 2025 NEURON Spring Course Location: Arizona State University, Tempe, AZ Dates: Sunday, March 9, through Friday, March 14, 2025 Faculty: Ted Carnevale, Robert McDougal, and guest speakers TBA Application deadline: Friday, February 28, 2025 The NEURON Spring Course is identical to the NEURON Summ...
- Tue Dec 03, 2024 12:40 pm
- Forum: The GUI
- Topic: voltage propagation in the whole cell
- Replies: 5
- Views: 56593
Re: voltage propagation in the whole cell
Well, you're on the right track, but this can be done without explicit, formal use of callbacks. And the resulting code could be easily understood by all, even those who are new to Python. Some of the following discussion is for the benefit of others who may read this thread but have less experience...
- Thu Nov 14, 2024 11:19 am
- Forum: Adding new mechanisms and functions to NEURON
- Topic: How to call my ionic current variable implemented in NMODL in HOC
- Replies: 12
- Views: 32637
Re: How to call my ionic current variable implemented in NMODL in HOC
Here is the primary consideration: reusing code that is known to have serious problems is inadvisable for many reasons. It wastes the time and effort of whoever reuses it, because it jeopardizes publication of results, not to mention support of current or future work. And it's not good for computati...
- Wed Nov 13, 2024 2:37 pm
- Forum: Adding new mechanisms and functions to NEURON
- Topic: How to call my ionic current variable implemented in NMODL in HOC
- Replies: 12
- Views: 32637
Re: How to call my ionic current variable implemented in NMODL in HOC
Well, maybe not so quickly, allowing for intrusions like a grant application. Here at last are properly written implementations of AMPAergic and NMDAergic synaptic transmission https://www.neuron.yale.edu/ftp/ted/neuron/ampanmda.zip along with demonstration programs that illustrate usage via hoc and...
- Mon Nov 11, 2024 12:43 pm
- Forum: Getting started
- Topic: h.run vs h.continuerun(h.tstop)
- Replies: 6
- Views: 38981
Re: h.run vs h.continuerun(h.tstop)
Assuming that the time course of seg's extracellular potential is specified by the vector pair gvec and stim_t_vec, then the correct syntax for Vector.play is gvec.play(seg._ref_e_extracellular, stim_t_vec) This should force seg.e_extracellular to follow the time course specified by the vector pair ...
- Thu Oct 31, 2024 6:17 pm
- Forum: Adding new mechanisms and functions to NEURON
- Topic: How to call my ionic current variable implemented in NMODL in HOC
- Replies: 12
- Views: 32637
Re: How to call my ionic current variable implemented in NMODL in HOC
< revised from initial post > The chief problem with the models of NMDAergic and AMPAergic synaptic transmission used and published by Basak and Narayanan (2018) is they are implemented as point processes but their parameters and variables have units that are appropriate not for point processes but ...
- Tue Oct 22, 2024 1:37 pm
- Forum: Adding new mechanisms and functions to NEURON
- Topic: How to call my ionic current variable implemented in NMODL in HOC
- Replies: 12
- Views: 32637
Re: How to call my ionic current variable implemented in NMODL in HOC
Before digging into implementational details, it is a good idea to verify that what we know, or think we know, makes sense. This is especially important when it comes to mathematical formulas and units. A synapse generates a current that is specified in "absolute units" (e.g. nA in NEURON)...
- Mon Oct 21, 2024 11:33 am
- Forum: Adding new mechanisms and functions to NEURON
- Topic: How to call my ionic current variable implemented in NMODL in HOC
- Replies: 12
- Views: 32637
Re: How to call my ionic current variable implemented in NMODL in HOC
I modified the two synaptic NMODL files by declaring USEION na WRITE inas USEION k WRITE iks In a USEION statement, the variable name declared in the USEION clause dictates the form of the names declared in the READ and WRITE clauses. Also, NEURON only "knows" about na, k, and ca, so any ...
- Thu Oct 17, 2024 2:28 pm
- Forum: Adding new mechanisms and functions to NEURON
- Topic: How to call my ionic current variable implemented in NMODL in HOC
- Replies: 12
- Views: 32637
Re: How to call my ionic current variable implemented in NMODL in HOC
There may be some ways to reduce complexity, but I'll have to ask some questions. Here's a big suggestion (I don't know why Lavzin et al. didn't do this): The mod files for several mechanisms generate nonspecific currents. Presumably you want to attribute those currents to corresponding ion fluxes, ...
- Thu Oct 10, 2024 1:12 pm
- Forum: Other questions
- Topic: Multicompartment Soma
- Replies: 2
- Views: 20575
Re: Multicompartment Soma
Interesting questions. I was wondering if it makes any sense in some cases (such as mine) to model a multicompartment soma. Depends on the temporal and spatial scales that are relevant to the phenomena you are studying. For structures roughly the size of somas in vertebrates, there is no need to use...
- Mon Oct 07, 2024 4:44 pm
- Forum: Getting started
- Topic: h.run vs h.continuerun(h.tstop)
- Replies: 6
- Views: 38981
Re: h.run vs h.continuerun(h.tstop)
when I run the cell more than once in the same kernel, I get an error That's strange. What do you mean "run more than once in the same kernel"? just call h.run() again, and then execute the "plot results" code? That should work if you did it in plain python, without using Jupyte...