Search found 6342 matches

by ted
Fri Sep 20, 2024 11:44 am
Forum: Employment and educational opportunities
Topic: NSF-Simons NITMB Fellows Program
Replies: 0
Views: 17

NSF-Simons NITMB Fellows Program

NSF-Simons NITMB Fellows Program Applications due October 15, 2024 NITMB is seeking early-career researchers who have interest in transforming biological research and inspiring new mathematical discoveries. This opportunity is open to researchers who want to develop mathematical, theoretical, and c...
by ted
Wed Sep 18, 2024 6:38 pm
Forum: Anatomically detailed models
Topic: Importing SWC files and best practices
Replies: 5
Views: 264

Re: Importing SWC files and best practices

The Python tutorials illustrate a lot of useful things that can be done with code, and a particular approach to writing code that scales well as program complexity increases. But the KISS principle has its own advantages. Writing less code automatically means writing fewer typos and user-created bug...
by ted
Mon Sep 16, 2024 4:35 pm
Forum: Adding new mechanisms and functions to NEURON
Topic: Conditionally Using Ions for Ion Pool Regulation
Replies: 3
Views: 148

Re: Conditionally Using Ions for Ion Pool Regulation

Calcium is a key signal in many phenomena, some of which involve calcium diffusion from the site of ca entry (or site of release from organelles) to the site of ca action. Calcium accumulation mechanisms for such cases add even more overhead because more ODEs (or more complex kinetic schemes) are in...
by ted
Fri Sep 13, 2024 2:34 pm
Forum: Adding new mechanisms and functions to NEURON
Topic: Conditionally Using Ions for Ion Pool Regulation
Replies: 3
Views: 148

Re: Conditionally Using Ions for Ion Pool Regulation

Relax. Numerical integration is computationally expensive. Merely "READing" cai costs nothing by comparison. You could insert hundreds of mechanisms that READ cai into every section of a model cell, with no noticeable effect on run time--unless at least one of those mechanisms involved an ...
by ted
Sun Sep 08, 2024 1:21 pm
Forum: Anatomically detailed models
Topic: Importing SWC files and best practices
Replies: 5
Views: 264

Re: Importing SWC files and best practices

Start with a clear concept of what you're trying to do. For your purpose, is it sufficient to represent neurites as right cylinders, or is it important that a neurite's diameter may vary, and its centroid diverge from a straight line, from one end to the other? This decision should be strictly on a ...
by ted
Fri Sep 06, 2024 2:51 pm
Forum: Anatomically detailed models
Topic: Importing SWC files and best practices
Replies: 5
Views: 264

Re: Importing SWC files and best practices

I'm working on converting some NML files created in Webknossos into a format that I can import into NEURON. I did not find any ready-made solutions that seemed to give me what I need Have you considered https://github.com/nathantspencer/webknossos_toolkit ? Hard to know the quality and actual utili...
by ted
Wed Sep 04, 2024 2:03 pm
Forum: Parallel NEURON
Topic: Assigning GIDs to netcon without cell object
Replies: 5
Views: 273

Re: Assigning GIDs to netcon without cell object

I guess I wasn't sufficiently explicit. By "simple test" I meant dirt simple--no dependence on anything (other than e.g. MPI and your operating system) that that isn't built into NEURON. That means no ion channels other than pas and HH. And no reference to 3rd party modules e.g. "sett...
by ted
Mon Sep 02, 2024 3:47 pm
Forum: Parallel NEURON
Topic: Assigning GIDs to netcon without cell object
Replies: 5
Views: 273

Re: Assigning GIDs to netcon without cell object

Documentation says "The cell or artificial cell object is returned that is associated with the global id." Says "cell or artificial cell object", not "(top level) section" (that is, it doesn't say "a section that is not encapsulated in an object"). Is this the...
by ted
Sun Sep 01, 2024 3:42 pm
Forum: Other questions
Topic: Re: Extracellular stimulation and recording
Replies: 4
Views: 18110

Re: Extracellular stimulation and recording

The electric field at any location p with coordinates (x,y,z) is the gradient of electric potential v at that location. You need to discover the locations of the internal nodes (segment centers) of all sections in your model cell, and then use that information to get COMSOL to tell you what the fiel...
by ted
Wed Aug 28, 2024 11:35 am
Forum: Parallel NEURON
Topic: Assigning GIDs to netcon without cell object
Replies: 5
Views: 273

Re: Assigning GIDs to netcon without cell object

the cell I create is composed of h.SectionList() and not a neuron cell() object First, a bit of terminological clarity. NEURON has no such thing as a "neuron cell() object". It's up to the user to decide what types of cells are to be represented in a network model, then for each of those ...
by ted
Mon Aug 26, 2024 12:22 pm
Forum: Other questions
Topic: Extracellular mech and theory vs gradient of potential
Replies: 7
Views: 449

Re: Extracellular mech and theory vs gradient of potential

Wrapping up the example from my post of Thu Aug 22, 2024--during the stimulus, the membrane potentials for compartments A and C approach 0.5 mV and -0.5 mV, respectively. Immediately after the end of the stimulus, the membrane potentials reverse polarity and then decay toward 0 as time advances. The...
by ted
Fri Aug 23, 2024 12:42 pm
Forum: Other questions
Topic: Extracellular mech and theory vs gradient of potential
Replies: 7
Views: 449

Re: Extracellular mech and theory vs gradient of potential

The limitations are such as . . . only if the electrotonic length is small enough to neglect longitudinal currents Not so. The mathematical derivation and discussion that are presented in justification of the activating function approach make the tacit assumption that the axon / nerve fiber / neuri...
by ted
Thu Aug 22, 2024 12:56 pm
Forum: Other questions
Topic: Extracellular mech and theory vs gradient of potential
Replies: 7
Views: 449

Re: Extracellular mech and theory vs gradient of potential

if anybody reads this post, I suggest the following for discussion about this topic and other interesting ones: 10.1016/j.jphysparis.2011.10.003 An excellent suggestion. For those who don't immediately recognize the DOI, the citation is Joucla S, Yvert B. Modeling extracellular electrical neural st...
by ted
Wed Aug 21, 2024 3:41 pm
Forum: Other questions
Topic: Extracellular mech and theory vs gradient of potential
Replies: 7
Views: 449

Re: Extracellular mech and theory vs gradient of potential

Why? Because you don't understand the limitations of the "activating function" approach. Frank Rattay was quite explicit about those limitations in at least one of his many articles, but he didn't reiterate them in all. Your task, if you are willing to accept it, is to track down those lim...
by ted
Sun Aug 18, 2024 4:42 pm
Forum: NEURON + Python
Topic: h.frecord_init() and Python Multiprocessing
Replies: 7
Views: 1583

Re: h.frecord_init() and Python Multiprocessing

Yes, that's the imprecision of fixed precision floating point arithmetic. Then I remember that few parameters of any biological system are known to more than two significant figures and shudder after looking at the documentation again I ran the following test and see that I can just supply a time h....