Search found 6135 matches
- Wed Mar 29, 2023 1:30 am
- Forum: NEURON + Python
- Topic: Null pointer error when trying to access the pointer through python
- Replies: 3
- Views: 46
Re: Null pointer error when trying to access the pointer through python
Excellent tips, Robert. Probably will be helpful for many other readers of this thread. Now an important design decision for ipv1313: The values of ecl, ehco3, Pr (the fraction of synaptic conductance that is attributable to hco3), and Erev are not independent of each other, because Erev = Pr * ehco...
- Tue Mar 28, 2023 11:03 am
- Forum: Adding new mechanisms and functions to NEURON
- Topic: Using NMODL integration of ODEs: sparse
- Replies: 3
- Views: 35
Re: Using NMODL integration of ODEs: sparse
No need to apologize. Everybody makes stupid mistakes. Never use euler--it is not suitable for the equations that describe models with the anatomical and biophysical complexities of real neurons, which are stiff and often require a very small dt for stability. cnexp is the NMODL name for NEURON's im...
- Mon Mar 27, 2023 10:58 am
- Forum: Adding new mechanisms and functions to NEURON
- Topic: Using NMODL integration of ODEs: sparse
- Replies: 3
- Views: 35
Re: Using NMODL integration of ODEs: sparse
I want to change the NMODL integration of ODEs from cnexp to sparse Note for others who might read this thread: this change won't do anything useful. Anyone can help about this? The error message points to the line that contains the error. Compare that line with the corresponding line in hh.mod. A ...
- Mon Mar 27, 2023 1:15 am
- Forum: NEURON + Python
- Topic: Null pointer error when trying to access the pointer through python
- Replies: 3
- Views: 46
Re: Null pointer error when trying to access the pointer through python
Use of pointers to communicate the fact that "a presynaptic spike has occurred" to a synaptic mechanism attached to a postsynaptic cell was state of the art 27 years ago. Since about 20 years ago, the best practice for implementing spike-triggered synaptic transmission has been to use even...
- Sat Mar 25, 2023 4:54 pm
- Forum: Other questions
- Topic: pyramidal spine-neck EPSPs
- Replies: 55
- Views: 2396
Re: pyramidal spine-neck EPSPs
I did not find any parameters or mechanisms to add or change. That's why you need to see the actual source code that those authors used in their simulations. Where did the first figure in your most recent Forum post come from? A simulation on your PC or Mac? If yes, then what you're looking at show...
- Thu Mar 23, 2023 11:35 am
- Forum: Other questions
- Topic: pyramidal spine-neck EPSPs
- Replies: 55
- Views: 2396
Re: pyramidal spine-neck EPSPs
Aha--Araya's lab just published another article that combines experimentation with modeling that involved the same model cell, so it is quite likely that they will be able to find the source code. Mitchell DE, Miranda-Rottmann S, Blanchard M, Araya R. Altered integration of excitatory inputs onto th...
- Thu Mar 23, 2023 11:23 am
- Forum: Other questions
- Topic: pyramidal spine-neck EPSPs
- Replies: 55
- Views: 2396
Re: pyramidal spine-neck EPSPs
The first author is not necessarily the "corresponding author" i.e. the one who takes primary responsibility for communications. Depending on the journal, the corresponding author's identity is usually indicated at the beginning of the paper e.g. near the author list or Abstract, or at the...
- Mon Mar 20, 2023 8:43 pm
- Forum: Adding new mechanisms and functions to NEURON
- Topic: Current NMODL Best Practices
- Replies: 3
- Views: 53
Re: Current NMODL Best Practices
For clear guidance on what integration method to specify in NMODL code, see Integration methods for SOLVE statements in the NEURON Forum's Hot tips area.Avoid Euler
- Mon Mar 20, 2023 8:38 pm
- Forum: Anatomically detailed models
- Topic: Segmentation violation error in swc
- Replies: 4
- Views: 77
Re: Segmentation violation error in swc
Do what you like, but if your time and effort are worth anything, think hard before using this anatomical data in your models. Especially since so much morphometric data is available from NeuroMorpho.org that is not affected by these artifacts. And if you use flawed anatomical data, when it comes ti...
- Mon Mar 20, 2023 4:17 pm
- Forum: Adding new mechanisms and functions to NEURON
- Topic: Current NMODL Best Practices
- Replies: 3
- Views: 53
Re: Current NMODL Best Practices
Most of the information appears not to have been updated in years. That's because most of what needed to be documented hasn't changed in decades. Many changes are expected in NEURON version 9, especially metadata features that will be particularly useful for code introspection; this will doubtless ...
- Mon Mar 20, 2023 3:23 pm
- Forum: NEURON + Python
- Topic: Unbounded Membrane Voltage Increase
- Replies: 5
- Views: 234
Re: Unbounded Membrane Voltage Increase
That paper would correspond to ModelDB entry 2488 (modeldb.yale.edu/2488, modeldb.science/2488). The associated source code does not include any swc files. The "Overview" page of the ModelDB entry mentions http://www.cnl.salk.edu/~zach/methods.html and http://www.cnl.salk.edu/~zach/ , but ...
- Sun Mar 19, 2023 5:29 pm
- Forum: Anatomically detailed models
- Topic: Segmentation violation error in swc
- Replies: 4
- Views: 77
Re: Segmentation violation error in swc
Tell your experimental collaborators the following: 1. There are large (in some cases, huge) discontinuities in the z direction. You can see this yourself--just look at the values in the fifth field of each data line. That alone would make these data not useful for computational modeling. 2. All dia...
- Thu Mar 16, 2023 1:29 pm
- Forum: NEURON + Python
- Topic: Unbounded Membrane Voltage Increase
- Replies: 5
- Views: 234
Re: Unbounded Membrane Voltage Increase
Thanks for the quick followup on that. If that particular swc file is available on line, could you please point me to it? I thought that problems with "one point somas" had been resolved a while ago, but apparently not.
- Thu Mar 16, 2023 12:02 am
- Forum: NEURON + Python
- Topic: Using external file to set parameter value in MOD file
- Replies: 3
- Views: 124
Re: Using external file to set parameter value in MOD file
we would like to save the last timepoint values of our parameters for a previous simulation and then use those values to initialize a future simulation. For that you will want to use the SaveState class. This is documented in the programmers' reference--see https://nrn.readthedocs.io/en/8.2.2/pytho...
- Wed Mar 15, 2023 11:38 pm
- Forum: NEURON + Python
- Topic: Unbounded Membrane Voltage Increase
- Replies: 5
- Views: 234
Re: Unbounded Membrane Voltage Increase
Well, "insert" isn't something that hapens to a segment--it happens to a section. Example: if soma is a section, this statement soma.insert('pas') would insert the pas mechanism into soma. If you try to insert a mechanism into a segment under Python, you should get an error message similar...