Hi
I am curious to know how does the 'connect' function in neuron work ? How does it account for changes if there are two different mechanisms inserted at either end of the junction between the two sections ( or when there are different parameters assigned eg, gKmax, temperature etc)
Thanks,
Mohit
'connect' function in NEURON
-
- Site Admin
- Posts: 6384
- Joined: Wed May 18, 2005 4:50 pm
- Location: Yale University School of Medicine
- Contact:
Re: 'connect' function in NEURON
connect affects the electrical boundary conditions of the two sections that are connected, at the point at which they are connected.
celsius is "global" in the sense that all sections will have the same value of celsius; there is no variable called "temperature." If you need to represent spatially inhomogeneous temperature in your model, the NMODL code for each temperature-sensitive mechanism must have its own range variable for temperature that you can call whatever you like, as long as it's not a reserved name. To be perfectly consistent, each mechanism should also use that temperature parameter to compute its own ionic equilibrium potentials--and that also applies to any mechanism that involves a NONSPECIFIC_CURRENT.
Any parameter that is a RANGE variable can be spatially inhomogeneous.
celsius is "global" in the sense that all sections will have the same value of celsius; there is no variable called "temperature." If you need to represent spatially inhomogeneous temperature in your model, the NMODL code for each temperature-sensitive mechanism must have its own range variable for temperature that you can call whatever you like, as long as it's not a reserved name. To be perfectly consistent, each mechanism should also use that temperature parameter to compute its own ionic equilibrium potentials--and that also applies to any mechanism that involves a NONSPECIFIC_CURRENT.
Any parameter that is a RANGE variable can be spatially inhomogeneous.
Re: 'connect' function in NEURON
Hi,
I was recently thinking about it again. In what way does the connect affects the electrical boundary between the two sections ?
Mohit
I was recently thinking about it again. In what way does the connect affects the electrical boundary between the two sections ?
Mohit
-
- Site Admin
- Posts: 6384
- Joined: Wed May 18, 2005 4:50 pm
- Location: Yale University School of Medicine
- Contact:
Re: 'connect' function in NEURON
1. Conservation of charge (sum all axial currents at the point of attachment is 0).
2. At the point of attachment, the potential at the parent node is equal to the potential at the child node.
2. At the point of attachment, the potential at the parent node is equal to the potential at the child node.