suny-downstate-medical-center / netpyne

A Python package to facilitate the development, parallel simulation, optimization and analysis of multiscale biological neuronal networks in NEURON.
http://www.netpyne.org
MIT License
144 stars 135 forks source link

What are the available keys in the dictionary of ions? #626

Closed lungsi closed 3 years ago

lungsi commented 3 years ago

The documentation says

ions: Dictionary of ions. The key contains the name of the ion (e.g. ‘na’ or ‘k’) The value contains a dictionary with the properties of the ion (e.g. {'e': -70}).

But, what are all the possible parameters (apart from "e") one can use in the dictionary of ions?

joewgraham commented 3 years ago

Hi @lungsi , thanks for the question. I have updated the documentation to include the parameters available for 'ions' in a 'sec'. Note that setting ion properties in a section only affects the ion properties in that section.

ions: Dictionary of ions. The key contains the name of the ion (e.g. ‘na’ or ‘k’) The value contains a dictionary with the properties of the ion for the particular section (e.g. {'e': -70}). Properties available are 'e': reversal potential, 'i': internal concentration of the ion at that section, and 'o': the extracellular concentration of the ion at that section.