The membrane of a neuron (or, for that matter, any cell) is mostly impermeable to most substances, including single ions such as sodium (Na+), calcium (Ca++), and potassium (K+). However, the membrane contains tiny pores or channels which allow ions to pass through. These channels are formed by proteins which have evolved to allow only certain ions to pass through, and to exclude others.
When charged ions flow through a channel, it results in a current in the direction of the positive charge. Ions will flow due to diffusion (from a region of high density to a region of lower density), and due to electrostatic force (positive ions will flow towards a region with a more negative electrical potential). In a neuron, these two forces are frequently in opposition; which one dominates depends on the concentration of ions inside and outside the cell (which is relatively constant), and on the membrane potential -- that is, the difference in electric charge between the inside and outside of the cell (which is highly variable). At some membrane potential, diffusion and electrostatic pressure exactly balance each other, resulting in zero net flow of ions. This point is called the reversal potential or equilibrium potential of the channel.
The equilibrium potential (E) of a channel depends on the exact mix of ions which it allows to pass. Rather than keeping track of ion concentrations, CONICAL simply allows you to set the equilibrium potential of a channel (or any other current) directly, via SetE() method. In addition, a set of ion channels has a particular conductance (G), which describes how quickly ions can flow through. This depends both on the individual channel conductance, and the number of channels in a particular compartment. Any set of passive channels (see below) can be described completely as a current with a certain E and G.
It's fairly easy to understand how voltage-gated ion channels work. They are composed of proteins which are imbedded in the membrane, forming a tunnel through it. Sticking into the tunnel are a variety of knobs and protrusions with various electrical charges; these give the channel its selectivity to certain ions. When the membrane potential changes, it exerts a force on the proteins, which can cause some parts to rotate or bend in (or out) of the tunnel, changing its conductivity.
In CONICAL, all active channels are derived from Channel, which is a Current with a Step() method. This method adjusts the current's conductance (G) at each time step, as some fraction of parameter MaxG. To maximize the flexibility and extensibility of the library, we use a rather long chain of subclasses, each adding functionality and providing a point to derive your own functionality. Most users will jump directly to the ChanStd class, which implements a standard voltage-gated ion channel using equations of a form originally used by Hodgkin & Huxley in their pioneering work on the squid giant axon.
Back to Table of Contents |
---|