Next: Building a cell the easy way Previous: A Basic Tutorial on GENESIS Up: Table of Contents

Making realistic neural compartments

The soma compartment that was simulated in the tutorial1.g script corresponds to the "generic neural compartment" diagram but without the variable ionic conductances Gk that we will add later. As it is a single isolated compartment, we didn't make use of the axial resistance Ra. The diagram reveals that the current Iinject flows through Rm to create a potential difference that is in series with Em. The simulation results show that initially, Vm will equal Em, and the steady state will be reached after a time given roughly by the time constant for charging the membrane capacitance, RmCm. With the values used, the time constant was 20.

A lot of the simplicity of the script stems from the fact that the numbers used in the simulation worked well with the default values of the graph axis scales and the default integration step size used by GENESIS to integrate the equation for the compartment Vm. In order to make a realistic soma compartment that we can then link to dendrite compartments and populate with ion channels, we will need to pick appropriate values for the passive cell parameters Rm, Ra, Cm, and the membrane resting potential Em.

So far, we haven't said much about the units used to express the quantities Rm, Ra, Cm, Vm, etc. that appear in the neural compartment diagram and the differential equation for Vm.

Physicists and engineers like to use SI (MKS) units of ohms, farads, volts, and meters for describing resistance, capacitance, voltage, and length. Neurophysiologists are more likely to prefer kilohms, microfarads, millivolts, and either centimeters or micrometers. One can use any consistent set of units with GENESIS, but it is most common to use SI units.

The problem with using any of these units for resistance and capacitance is that Rm, Cm, and Ra will depend on the dimensions of the section of dendrite that is represented by the neural compartment. In order to specify parameters that are independent of the cell dimensions, specific units are used. For a cylindrical compartment, the membrane resistance is inversely proportional to the area of the cylinder, so we define a specific membrane resistance RM, which has units of ohms·m². The membrane capacitance is proportional to the area, so it is expressed in terms of a specific membrane capacitance CM, with units of farads/. Compartments are connected to each other through their axial resistances Ra. The axial resistance of a cylindrical compartment is proportional to its length and inversely proportional to its cross-sectional area. Therefore, we define the specific axial resistance RA to have units of ohms·m.

For a piece of dendrite or a compartment of length l and diameter d we then have

\begin{displaymath}R_{m} = \frac{R_M}{\pi l d},\; C_{m} = \pi l d C_M,\;
R_{a}= \frac{4 l R_A}{\pi d^{2}}.
\end{displaymath}

Note the membrane time constant Rm·Cm is also equal to RM·CM, so that it is independent of the dimensions of the membrane.

WARNING: Many treatments of the passive properties of neural tissue use the symbols Rm, Ra, and Cm for the specific resistances and capacitance, instead of this notation with RM, RA, and CM. Also, many textbooks and journal papers define the resistance and capacitance in terms of that for a unit length of cable having a specified diameter, where

Rm = rm/l, Cm = cml, Ra = ral.

Although this notation is convenient and widely used, it obscures the fact that rm and ra depend on the dendrite diameter. In your reading, you should be aware of the units that are being used.

You can read more about passive properties of dendrites in the Digression on Cable Theory from the Introduction to Computational Neuroscience lectures.

Our goal is to build a cylindrical soma compartment that has the same physiological properties as those of the squid giant axon studied by Hodgkin and Huxley, and simulated in the GENESIS "squid" tutorial in genesis/Scripts/squid. So, we will use these values (in SI units) for the compartment parameters. However, we will make our soma smaller, with both the length and diameter equal to 30 micrometers.

We will also need to choose an appropriate time step for the numerical solution of the equation for Vm. With the values of R and CM that we will use (RM = 0.33333 and CM = 0.01), the membrane time constant will be 0.003333 seconds. We would then expect our integration time step to be a small fraction of this. In practice, it turns out that 50 microseconds (0.00005 sec) will be a good value.

You can (and should, at some point) read the section in the GENESIS Reference Manual on Clocks for further suggestions on choosing a time step. The documentation for the commands setclock and useclock gives the details of setting the time step.

Chapter 13 of the BoG leads the reader through the process of developing the script tutorial2.g. If you like, you can run this this script from the genesis/Scripts/tutorials directory. You should now examine tutorial2.g.

There are several features of the GENESIS script language that are introduced here:


Next: Building a cell the easy way Previous: A Basic Tutorial on GENESIS Up: Table of Contents