Client-Server Architecture for a Neural Simulation Tool

Size: px
Start display at page:

Download "Client-Server Architecture for a Neural Simulation Tool"

Transcription

1 Client-Server Architecture for a Neural Simulation Tool Olga Kroupina and Raúl Rojas Institute of Computer Science Free University of Berlin Takustr. 9, D Berlin Germany ABSTRACT NeuroSim is a simulator of biological neural networks based on a client-server architecture. The program is platform-independent and provides a comfortable graphical user interface (GUI) for all aspects of model definition and control of simulation results. The client is designed for entering a model description and connections to a server which solves the differential equations arising in the modelling. The client has been developed in Java and can be started on any microcomputer; it accesses a powerful server available through the network. The results of numerical integration of differential equations are uploaded to the user s computer for visual presentation and evaluation of the simulation. The system has been coupled with the Genesis simulator, used as a server on the remote computer. The numerical integration can be also performed with our own server implemented in C++. KEY-WORDS Neuronal Simulator, Hodgkin-Huxley equations, compartmental modelling. 1 Introduction Recently, there has been a dramatic increase in the number of neurobiologists using computational methods as an aid to their empirical studies. As more experimental data is accumulated, it becomes clear that detailed physiological data alone is not enough to infer how neural circuits work. A quantitative modelling approach helps to understand the functional consequences of particular neural elements. Therefore, computer simulations are an important tool for neuroscience research. Biologically detailed simulations of single neurons and neural networks are typically based on the approach of compartmental modelling; that is, each cell is divided into many isopotential compartments, joined by conductances, and activated via simulated ion channels and current stimuli. Each compartment is then modelled with equations describing electrical currents []. The advantage of this approach is that it places no restrictions on the membrane properties. The influence of the diversity of activated channels can be taken into account by including additional equations describing the channel dynamics. The mathematical result of this approach is a system of ordinary differential equations, one for either a compartment or for an ionic channel. For modelling this on the computer, one needs to solve the equations arising from model elements in parallel. In case of a model with a huge number of neurons, or with a complicated structure of activated channels, large computational power is required. 2 Important features of neural simulation systems Modelling has become important in neuroscience research and neurobiologists are using simulation programs as any other peace of lab equipment. In this case easiness of use can be quite essential. This includes simple installation, platform-independence, no extensive computer knowledge required, an easy to use interface, etc. Some well-known simulation systems, such as Genesis [7] and Neuron [4], are Unix-based. They have their own interpreted scripting language, in which users define components and running parameters for their simulation. In the hands of experienced users with access to a compatible computer system, these modelling packages are powerful research tools. However, they do suffer several drawbacks for novice users. Firstly, it is difficult and time consuming to learn the formal structure of the scripting language. Secondly, they do not provide a graphical user interface (GUI) or do it only for common model experiments. The difficulty of constructing a GUI for each model has an explanation from the origin of these packages. They were developed as an attempt to create a general simulation system, that is, with the capability of solving problems at many levels of detail (i.e, from parts of neurons to large neural systems). However, the large spectrum of application requires flexible modes of specifying selections of single elements for editing and display.

2 3 Client-Server Architecture Detailed simulations of single neurons and neural networks are made applying compartmental modelling. Large computational power can be necessary for solving the system of the differential equations which mathematically describe the spread and interaction of electrical and chemical signals in neuronal networks. A client-server architecture of the application software is an alternative for performing intensive calculation on a high-power compute server, while control and visual results presentation are left to a personal computer (see Fig. 1). This was the motiva- Java Client Model Description Java Client 4 NeuroSim User Interface 4.1 Model definition and modelling elements The user interface for the modeler is a thin client that can be started either as an application on the user s computer with any operating system, or as a Java applet from the internet. The client GUI is simple to learn. New elements for a model can be added to the simulation just with a mouse click. The corresponding kind of model and mode of operation are chosen from the main menu. The parameters of elements (neurons, compartments, ionic and synaptic channels, neuron connections, etc.) can be viewed and edited in the separate windows (see Fig. 2). Thus, no extra programming code is needed to be written for model definition. Integration Results Own C++ Server Genesis Java Client Figure 1: The Client-Server architecture. tion behind our development of a new simulation system, NeuroSim. It was realized in Java; thus, it can run on virtually any computer and with most operating systems. The connection mechanism between a client and server is made with a Java tool Remote Method Invocation (RMI), which supports distributing run-time objects across multiple computers. After definition of an experimental model on the client side, the data with model description are transferring to a server, accessible through a network. The Genesis simulator is used as server on the remote computer for solving the corresponding differential equations. Numerical integration can be performed also with our own server implemented on C++. The model properties necessary for numerical integration are sent to the server in the XML format. They are transformed to a Genesis format or to a format of C++ server input file with available Java techniques for parsing XML documents the Extensible Style Sheet Language for Transformations (XSLT). The data from a server are sent for the client in the standard output stream and can be played back. A client makes it possible to view the curves of simulated parameters. One can also start an animation of the transfer of pulses through the networks connections and of the neurons activations. Figure 2: Example of the network structure and neuron parameters in the main window. Drag-and-drop operations allows one to change the positions of neurons and establish the connections between them. The neurons with the same physiological and anatomical parameters can be copied, and this simplifies their definition. The structure of neuronal networks is presented in the main panel, so that all elements of model as neurons, channels and inserting mechanisms are marked with a single symbol. The program can be used to simulate the flow of current in multi-compartmental models of a cell. The electrical properties of individual neurons are described with Hodgkin-Huxley type voltage-dependent ionic channels [5]. The connections among neurons can be made by a chemical synapse. The standard inserting mechanisms as spike generator and synaptic-activated channel can be bound into the model. Electrical excitation can be implemented with different type of cell stimulus: pulsed stimuli, randomized stimuli, or constant injection.

3 4.2 Client-Server connection The client program automatically creates the files with the model description necessary for the server for solving the differential equations. The data is sent to the server in the standard XML format. The connection to the server can be established from menu Simulation after setting up method and step size of numerical integration (see Fig. 3). Moreover, an animation of the network activations can be started. It shows the transfer of pulses through the network connection and the neurons excitations. It was implemented as a thread with two modes asynchronous and synchronous. The asynchronous mode allows to execute a task from an action event handler into a background thread, so that GUI remains responsible. The synchronous mode allows one to schedule the periodic actions with just one thread. Both of these modes was developed with Java utility classes SwingWorker and the Timer classes [6]. The files of models description as well as the results of simulation can be saved on the disk for use in the next working session. They are specified in the standard XML model description format for extensibility. Also, the elements of simulation with their states can be saved as a serializable objects provided by Java serialization facility. 5 Simulation Examples In this section we show with examples how NeuroSim works. Figure 3: Setting up the step size and numerical method for simulation. The available numerical methods range from the crude explicit forward Euler method until highly stable implicit methods [8], [3]. The user can interactively define step size and interval of simulation depending on the speed and accuracy of the simulation. 4.3 Results of the Simulation The results of a simulation are uploaded on the user s computer automatically. The graphic output of membrane voltage and channel conductances can be represented visually. The graphs can be observed in the windows with scrolling panels and list of optional variables for visualization (see Fig. 4). Figure 4: The model structure and the potential curves resulting from the simulation. 5.1 The simulation of a neural network with Hodgkin-Huxley channels First we review the simulation principles of neural network with Hodgkin-Huxley voltage-activated channels. Hodgkin and Huxley estimated activation and inactivation functions for the sodium and potassium current, using the voltage clamp technique. This allowed them to devise the mathematical model which describes an action potential resembling experiments. This model remains the formalism of choice for most neuroscientists. When Hodgkin-Huxley channels are present, the ionic current is the sum of the sodium (Na) and potassium (K) channel currents: I i = I Na + I K (1) The sodium current is the product of a maximal conductance ḡ Na, the activation variable m, the inactivation variable h, and a driving force (V m V Na ): I Na = ḡ Na m 3 h (V m V Na ) (2) The potassium current is the product of a maximal conductance ḡ K, the activation variable n and a driving force (V m V K ): I K = ḡ K n (V m V K ) (3) The variables m, n, and h are called gating variables. They evolve according to the differential equations dm dn dh = α m (V m )(1 m) β m (V m )m (4) = α n (V m )(1 n) β n (V m )n = α h (V m )(1 m) β h (V m )h

4 The functions α and β are empirical functions of V m that were adjusted by Hodgkin and Huxley to fit the data of the giant axon of the squid: α m (V m ) = 0.1( 35 V m ) exp ( 35 V m) 1 β m (V m ) = 4 exp ( V m 60) 18 α h (V m ) = 0.07 exp ( V m 60) 18 1 β h (V m ) = exp ( 30 V m) + 1 α n (V m ) = 0.01( 50 V m) exp ( 50 V m) 1 β n (V m ) = exp ( V m 60) 80 We illustrate the simulation of two realistic neurons in a feedback configuration. Each cell is composed of two compartments corresponding to a soma and dendrite. A soma in each compartment is composed of two variable conductance ionic channels for sodium (Na), and potassium (K), described with Hodgkin-Huxley dynamics. The dendritic channels are synaptically activated and responsible for the cell connections. The output of each cell is a spike event, which reach its destinations after a specific delay. After that the synaptic channels is activated. The conductance change the synaptic channels activation described with alpha function form for τ 1 τ 2 : G(t) = G max weight t (exp ( t/τ 1 ) exp ( t/τ 2 )), (6) where the G max weight is the peak value of the voltage change. The change of the membrane potential of a single compartment is described with equation (7), a consequence from the compartmental modelling. C m dv m = E m V m R m (5) + V m V m + I R i + I inject (7) a In (7 C m is the membrane capacitance, R m is the membrane resistance and the E m is the membrane rest potential. V m presents the membrane potentials of the adjacent compartment and R a is the axial resistance between the simulated and adjacent compartments. I i is the ionic current and I inject is an injected current. In Fig. 5 we see the model structure, where the modeler, after setting the model elements, can observe the neuron structure. One can see the compartments, voltage- and synaptically-activated channels as well the neurons connections. In this figure, it is also shown the properties of a connection that can be edited. The injection current into the soma of the first cell will activate the Hodgkin- Huxley channels, that corresponds to spike initiation in the first cell. The spike event activates the excitative synaptical channel in the dendrite of the second cell. It gives the stimulus to activation of the Hodgkin-Huxley channels in the Dendrite and soma HH channels(rot polygon) Connections Synapses Figure 5: The structure of two-cell model with Hodgkin- Huxley channels. soma of the second cell, which accordingly activate the inhibitory synaptically channel in the dendrite of the second cell. After starting the server, there is a possibility to see an animation of the simulation results. The spike events in the main window with the structure of model can be observed together with the graphs of voltage spread and synaptic channels conductance change (see Fig. 6). Neuron activation Spike spread Figure 6: The animation of simulation results of two-cell model with Hodgkin-Huxley channels. 5.2 Example of spike initiation in the sensory neuron of Aplysia The second example will illustrate the simulation process of B21 cell in Aplysia. This model was taken to learn the mechanism of spike regulation. The neuron for neurobiological study, B21, is a bipolar mechanoafferent that innervates a muscle, the subradula tissue (SRT). This muscle is used to move food into the buccal cavity of Aplysia (see Fig. 7). One concentrates in the study on one of the output connection of B21, its excitatory connections with a radula-closer motor neuron (B8) [1] [2]. Experiments has shown, that when B21 is peripherally activated at its resting membrane potential, postsynaptic potentials (PSPs) are not observed in B8. In contrast,

5 if B21 is centrally depolarized and then peripherally activated, PSPs are observed in B8 [11]. Subradula tissue B21 To B8 The important feature of B21 sensory neuron for neurobiologists is that it is easily reidentifiable, because its soma is centrally rather than peripherally located. The model for the simulation based on this form of cell structure can be suggested. It was assumed that the peripheral part of dendritic tree contains ten passive compartments, that are longitudinally connected with the soma. The soma is connected with the lateral dendrites that are inhomogeneous with Hodgkin-Huxley type ionic channels. The neuron was modelled with the compartmental approach. We obtained the parameters of cell morphology from neurobiological studies. It was assumed that the compartments in the peripheral part have cm radius, cm length. The soma is modelled as a cylindrical compartment with radius cm and length 0.02 cm. The lateral dendritic compartments have radius cm and length cm. The specific membrane resistance of the cell RM = 00 Ωcm 2, specific axial resistance RA = 0 Ωcm, specific membrane capacitance CM = 1 µf/cm 2. The resting membrane potential of the cell is E rest = 65 mv. As a first experiment, the peripheral activation of the cell was simulated. Because the peripheral part of dendrites serve as a passive dendritic tree, one-dimensional cable theory can be used to understanding the voltage spread with the space. The compartmental approach is derived from cable theory, which describes current flow in a continuous passive dendritic tree using partial differential equations. The analytical solution for current inputs of cable equations has a form of voltage spread depending both from time and space position. One can calculate the constants influencing the form of the cable equation solution. The length constant λ = 0.09 provides the information about the capability of the dendritic tree to integrate inputs in space. In our case, the peripheral part of dendrite has the electronic length X = L = 0.1, where X was calculated at the end of the dendrite. Thus, the change of the voltage in peripheral dendrite has a form of of decrease through the cable. It can be observed from the graphs of voltage. The pulsed current was injected in the first peripheral segment. The voltage in the first compartment after current activation gets the value that could be enough for action potential initiation (above threshold). But in the compartments closer to the soma the voltage decreases and in the soma its value is under threshold for the spike initiation (see Fig. 8). So, the ionic channels in the lateral part of the cell could be opened and no action potential is observed. Medial dendrites Lateral dendrites Figure 7: The B21 cell, schematically represented. Voltage Vm0 Vm1 Vm2 Vm3 Vm4 Vm5 Vm6 Vm7 Vm8 Vm9 VmSoma time Figure 8: The graphs of the voltage spread in the peripheral dendrite and soma of the B21 cell. V mi is the voltage of i-th compartment. The second experiment performs additionally a soma depolarization. A constant current was injected into the soma. The increase in soma voltage influences on the voltage in the segments of the lateral dendritic tree. So, in this case the ionic channels are opened and the action potentials are observed (see Fig. 9). One can conclude that than B8 neuron can be synaptically activated and the PSPs are observed. The results of this simulation showed the cause of the PSPs initiation in the B8 motor neuron just by the depolarization in soma and peripheral activation of B21 cell. 6 Discussion NeuroSim, our system for simulation of real networks has an effective client-server architecture. In the first phase of the project, the Genesis simulator was used as a server on the remote computer. It solves the differential equations describing spread of electrical currents in the neural networks. In the second phase of the project, we have been developing our own server for numerical integration. The model of B21 cell in Aplysia was considered as the simulation example. The simulation showns no action potential in lateral dendrites of the B21 cell when it is peripherally activated. In contrast, if the B21 cell is centrally depolarized and peripherally activated, the spike initiation in the lateral dendrites is observed. It could explain why

6 Voltage time Vmlat0 Vmlat1 Vmlat2 Vmlat3 Vmlat4 Vmlat5 Vmlat6 Vmlat7 Vmlat8 Vmlat9 [4] M. Hines. A program for simulation of nerve equations with branching geometries. International Journal of Biomedical Computing, 24:33 68, [5] A. Hodgkin and A. Huxley. The components of membrane conductance in the giant axon of Loligo. J. Physiol., 116: , [6] C. S. Horstmann and G. Cornell. Core Java 2. Sun Microsystems Press, [7] M. A. Wilson, U. S. Bhalla, J. D. Uhley and J. M. Bower. GENESIS: A system for simulating neural networks. In Advances in Neural Information Processing Systems, pages Morgan Kaufman, San Mateo, Figure 9: The spike initiation in the lateral part of the B21 cell. V mlati refers to the i-th lateral compartment. the PSPs in excitatory connected with B21 cell B8 neuron are observed just in the second case, as the neurobiological experiments have shown. In the current phase of the project, we are integrating NeuroSim with the electronic chalkboard, E-Chalk, our E- Learning system [9]. The GUI has been adapted that it is possible to draw free-hand a model of neurons and connections, after that the simulation is started. It can be effectively used in the lectures for the educational purposes. NeuroSim has been designed as the tool for research modelling experiments as well as the powerful education software. [8] M. Mascagni. Numerical methods for neuronal modelling. In C. Koch and I. Segev, editors, Methods in Neuronal Modeling. MIT Press, Cambridge, Mass, [9] R. Rojas and G. Friedland and L. Knipping and W. L. Raffel. Elektronische Kreide: Eine Java-Multimedia- Tafel für den Präsenz- und Fernunterricht. Technical Report B-00-17, FU Berlin, Institut für Informatik, October [] W. Rall. Branching dendritic trees and motoneuron membrane resistivity. Exp. Neurol., 1: , [11] S. C. Rosen, M. W. Miller, C. G. Evans, E. C. Cropper, I. Kupfermann. Diverse synaptic connections between peptidergic radula mechanoafferent neurons and neurons in the feeding system of Aplysia. J. Neurophysiol, 83: , Acknowledgments Olga Kroupina thanks the Graduiertenkolleg GRK 120 Signal cascades in living systems, Deutsche Forschungsgemeinschaft, for its support during her Ph.D. studies. References [1] C. G. Evans, S. C. Rosen, E. C. Cropper. Regulation of spike initiation and propagation in an Aplysia sensory neuron. J. Neuroscience, 23(7): , April [2] E. C. Cropper, C. G. Evans, S. C. Rosen. Multiple mechanisms for peripheral activation of the peptidecontaining radula mechanoafferent neurons B21 and B22 of Aplysia. J. Neurophysiol, 76: , [3] M. Hines. Effecient computation of branched nerve equations. J. Biomed. Comp., 15:69 76, 1984.

80% of all excitatory synapses - at the dendritic spines.

80% of all excitatory synapses - at the dendritic spines. Dendritic Modelling Dendrites (from Greek dendron, tree ) are the branched projections of a neuron that act to conduct the electrical stimulation received from other cells to and from the cell body, or

More information

Biological Modeling of Neural Networks

Biological Modeling of Neural Networks Week 4 part 2: More Detail compartmental models Biological Modeling of Neural Networks Week 4 Reducing detail - Adding detail 4.2. Adding detail - apse -cable equat Wulfram Gerstner EPFL, Lausanne, Switzerland

More information

Νευροφυσιολογία και Αισθήσεις

Νευροφυσιολογία και Αισθήσεις Biomedical Imaging & Applied Optics University of Cyprus Νευροφυσιολογία και Αισθήσεις Διάλεξη 5 Μοντέλο Hodgkin-Huxley (Hodgkin-Huxley Model) Response to Current Injection 2 Hodgin & Huxley Sir Alan Lloyd

More information

Voltage-clamp and Hodgkin-Huxley models

Voltage-clamp and Hodgkin-Huxley models Voltage-clamp and Hodgkin-Huxley models Read: Hille, Chapters 2-5 (best Koch, Chapters 6, 8, 9 See also Hodgkin and Huxley, J. Physiol. 117:500-544 (1952. (the source Clay, J. Neurophysiol. 80:903-913

More information

Electrophysiology of the neuron

Electrophysiology of the neuron School of Mathematical Sciences G4TNS Theoretical Neuroscience Electrophysiology of the neuron Electrophysiology is the study of ionic currents and electrical activity in cells and tissues. The work of

More information

Lecture 10 : Neuronal Dynamics. Eileen Nugent

Lecture 10 : Neuronal Dynamics. Eileen Nugent Lecture 10 : Neuronal Dynamics Eileen Nugent Origin of the Cells Resting Membrane Potential: Nernst Equation, Donnan Equilbrium Action Potentials in the Nervous System Equivalent Electrical Circuits and

More information

Compartmental Modelling

Compartmental Modelling Modelling Neurons Computing and the Brain Compartmental Modelling Spring 2010 2 1 Equivalent Electrical Circuit A patch of membrane is equivalent to an electrical circuit This circuit can be described

More information

Voltage-clamp and Hodgkin-Huxley models

Voltage-clamp and Hodgkin-Huxley models Voltage-clamp and Hodgkin-Huxley models Read: Hille, Chapters 2-5 (best) Koch, Chapters 6, 8, 9 See also Clay, J. Neurophysiol. 80:903-913 (1998) (for a recent version of the HH squid axon model) Rothman

More information

9 Generation of Action Potential Hodgkin-Huxley Model

9 Generation of Action Potential Hodgkin-Huxley Model 9 Generation of Action Potential Hodgkin-Huxley Model (based on chapter 12, W.W. Lytton, Hodgkin-Huxley Model) 9.1 Passive and active membrane models In the previous lecture we have considered a passive

More information

Introduction and the Hodgkin-Huxley Model

Introduction and the Hodgkin-Huxley Model 1 Introduction and the Hodgkin-Huxley Model Richard Bertram Department of Mathematics and Programs in Neuroscience and Molecular Biophysics Florida State University Tallahassee, Florida 32306 Reference:

More information

BIOELECTRIC PHENOMENA

BIOELECTRIC PHENOMENA Chapter 11 BIOELECTRIC PHENOMENA 11.3 NEURONS 11.3.1 Membrane Potentials Resting Potential by separation of charge due to the selective permeability of the membrane to ions From C v= Q, where v=60mv and

More information

Mathematical Foundations of Neuroscience - Lecture 3. Electrophysiology of neurons - continued

Mathematical Foundations of Neuroscience - Lecture 3. Electrophysiology of neurons - continued Mathematical Foundations of Neuroscience - Lecture 3. Electrophysiology of neurons - continued Filip Piękniewski Faculty of Mathematics and Computer Science, Nicolaus Copernicus University, Toruń, Poland

More information

Single-Compartment Neural Models

Single-Compartment Neural Models Single-Compartment Neural Models BENG/BGGN 260 Neurodynamics University of California, San Diego Week 2 BENG/BGGN 260 Neurodynamics (UCSD) Single-Compartment Neural Models Week 2 1 / 18 Reading Materials

More information

Contents Why use NEURON ( 5-10 mins) Basics of NEURON (20-25 mins) Exercises (45 mins) Wrap Up (10 mins)

Contents Why use NEURON ( 5-10 mins) Basics of NEURON (20-25 mins) Exercises (45 mins) Wrap Up (10 mins) Contents Why use NEURON ( 5-10 mins) 3 Basics of NEURON (20-25 mins) 8 Exercises (45 mins) 27 Wrap Up (10 mins) 28 (Many thanks to David Sterratt (Uni of Edinburgh) for allowing the use of his tutorials

More information

Electrodiffusion Model of Electrical Conduction in Neuronal Processes

Electrodiffusion Model of Electrical Conduction in Neuronal Processes i. ISMS OF CONDlTlONlff PLASTICITY ditecl by Charks B. Woody, Daniel L. Alk~n, and James b. McGauyh (Plenum Publishing Corporation, 19 23 Electrodiffusion Model of Electrical Conduction in Neuronal Processes

More information

MATH 3104: THE HODGKIN-HUXLEY EQUATIONS

MATH 3104: THE HODGKIN-HUXLEY EQUATIONS MATH 3104: THE HODGKIN-HUXLEY EQUATIONS Parallel conductance model A/Prof Geoffrey Goodhill, Semester 1, 2009 So far we have modelled neuronal membranes by just one resistance (conductance) variable. We

More information

Math 345 Intro to Math Biology Lecture 20: Mathematical model of Neuron conduction

Math 345 Intro to Math Biology Lecture 20: Mathematical model of Neuron conduction Math 345 Intro to Math Biology Lecture 20: Mathematical model of Neuron conduction Junping Shi College of William and Mary November 8, 2018 Neuron Neurons Neurons are cells in the brain and other subsystems

More information

Propagation& Integration: Passive electrical properties

Propagation& Integration: Passive electrical properties Fundamentals of Neuroscience (NSCS 730, Spring 2010) Instructor: Art Riegel; email: Riegel@musc.edu; Room EL 113; time: 9 11 am Office: 416C BSB (792.5444) Propagation& Integration: Passive electrical

More information

Basic elements of neuroelectronics -- membranes -- ion channels -- wiring

Basic elements of neuroelectronics -- membranes -- ion channels -- wiring Computing in carbon Basic elements of neuroelectronics -- membranes -- ion channels -- wiring Elementary neuron models -- conductance based -- modelers alternatives Wires -- signal propagation -- processing

More information

Quantitative Electrophysiology

Quantitative Electrophysiology ECE 795: Quantitative Electrophysiology Notes for Lecture #4 Wednesday, October 4, 2006 7. CHEMICAL SYNAPSES AND GAP JUNCTIONS We will look at: Chemical synapses in the nervous system Gap junctions in

More information

Lecture 11 : Simple Neuron Models. Dr Eileen Nugent

Lecture 11 : Simple Neuron Models. Dr Eileen Nugent Lecture 11 : Simple Neuron Models Dr Eileen Nugent Reading List Nelson, Biological Physics, Chapter 12 Phillips, PBoC, Chapter 17 Gerstner, Neuronal Dynamics: from single neurons to networks and models

More information

All-or-None Principle and Weakness of Hodgkin-Huxley Mathematical Model

All-or-None Principle and Weakness of Hodgkin-Huxley Mathematical Model All-or-None Principle and Weakness of Hodgkin-Huxley Mathematical Model S. A. Sadegh Zadeh, C. Kambhampati International Science Index, Mathematical and Computational Sciences waset.org/publication/10008281

More information

Computational Neuroscience. Lubica Benuskova Lecture 1

Computational Neuroscience. Lubica Benuskova Lecture 1 Computational Neuroscience Lubica Benuskova Lecture 1 1 Outline Brief history of Computational Neuroscience, i.e. computational modelling of biological neurons Blue Brain project Basic concepts of computational

More information

NEURON - tutorial D of Gillies & Sterratt (part 1) http://www.anc.ed.ac.uk/school/neuron/ Lubica Benuskova Lecture 10 How to program ion channels with NMODL 1 Introduction: our current goal So far our

More information

A methodology for simulating biological systems using Microsoft Excel

A methodology for simulating biological systems using Microsoft Excel Computer Methods and Programs in Biomedicine 58 (1999) 181 190 A methodology for simulating biological systems using Microsoft Excel Angus M. Brown * Department of Neurology, Box 356465, Uni ersity of

More information

Topics in Neurophysics

Topics in Neurophysics Topics in Neurophysics Alex Loebel, Martin Stemmler and Anderas Herz Exercise 2 Solution (1) The Hodgkin Huxley Model The goal of this exercise is to simulate the action potential according to the model

More information

BME 5742 Biosystems Modeling and Control

BME 5742 Biosystems Modeling and Control BME 5742 Biosystems Modeling and Control Hodgkin-Huxley Model for Nerve Cell Action Potential Part 1 Dr. Zvi Roth (FAU) 1 References Hoppensteadt-Peskin Ch. 3 for all the mathematics. Cooper s The Cell

More information

Conductance-Based Integrate-and-Fire Models

Conductance-Based Integrate-and-Fire Models NOTE Communicated by Michael Hines Conductance-Based Integrate-and-Fire Models Alain Destexhe Department of Physiology, Laval University School of Medicine, Québec, G1K 7P4, Canada A conductance-based

More information

Modeling of Retinal Ganglion Cell Responses to Electrical Stimulation with Multiple Electrodes L.A. Hruby Salk Institute for Biological Studies

Modeling of Retinal Ganglion Cell Responses to Electrical Stimulation with Multiple Electrodes L.A. Hruby Salk Institute for Biological Studies Modeling of Retinal Ganglion Cell Responses to Electrical Stimulation with Multiple Electrodes L.A. Hruby Salk Institute for Biological Studies Introduction Since work on epiretinal electrical stimulation

More information

Limitations of the Hodgkin-Huxley Formalism: Effects of Single Channel Kinetics on Transmembrane Voltage Dynamics

Limitations of the Hodgkin-Huxley Formalism: Effects of Single Channel Kinetics on Transmembrane Voltage Dynamics ARTICLE Communicated by Idan Segev Limitations of the Hodgkin-Huxley Formalism: Effects of Single Channel Kinetics on Transmembrane Voltage Dynamics Adam F. Strassberg Computation and Neural Systems Program,

More information

Neurons, Synapses, and Signaling

Neurons, Synapses, and Signaling Chapter 48 Neurons, Synapses, and Signaling PowerPoint Lecture Presentations for Biology Eighth Edition Neil Campbell and Jane Reece Lectures by Chris Romero, updated by Erin Barley with contributions

More information

Introduction to Neural Networks U. Minn. Psy 5038 Spring, 1999 Daniel Kersten. Lecture 2a. The Neuron - overview of structure. From Anderson (1995)

Introduction to Neural Networks U. Minn. Psy 5038 Spring, 1999 Daniel Kersten. Lecture 2a. The Neuron - overview of structure. From Anderson (1995) Introduction to Neural Networks U. Minn. Psy 5038 Spring, 1999 Daniel Kersten Lecture 2a The Neuron - overview of structure From Anderson (1995) 2 Lect_2a_Mathematica.nb Basic Structure Information flow:

More information

Ch. 5. Membrane Potentials and Action Potentials

Ch. 5. Membrane Potentials and Action Potentials Ch. 5. Membrane Potentials and Action Potentials Basic Physics of Membrane Potentials Nerve and muscle cells: Excitable Capable of generating rapidly changing electrochemical impulses at their membranes

More information

STUDENT PAPER. Santiago Santana University of Illinois, Urbana-Champaign Blue Waters Education Program 736 S. Lombard Oak Park IL, 60304

STUDENT PAPER. Santiago Santana University of Illinois, Urbana-Champaign Blue Waters Education Program 736 S. Lombard Oak Park IL, 60304 STUDENT PAPER Differences between Stochastic and Deterministic Modeling in Real World Systems using the Action Potential of Nerves. Santiago Santana University of Illinois, Urbana-Champaign Blue Waters

More information

FRTF01 L8 Electrophysiology

FRTF01 L8 Electrophysiology FRTF01 L8 Electrophysiology Lecture Electrophysiology in general Recap: Linear Time Invariant systems (LTI) Examples of 1 and 2-dimensional systems Stability analysis The need for non-linear descriptions

More information

Simulation of Cardiac Action Potentials Background Information

Simulation of Cardiac Action Potentials Background Information Simulation of Cardiac Action Potentials Background Information Rob MacLeod and Quan Ni February 7, 2 Introduction The goal of assignments related to this document is to experiment with a numerical simulation

More information

Integration of synaptic inputs in dendritic trees

Integration of synaptic inputs in dendritic trees Integration of synaptic inputs in dendritic trees Theoretical Neuroscience Fabrizio Gabbiani Division of Neuroscience Baylor College of Medicine One Baylor Plaza Houston, TX 77030 e-mail:gabbiani@bcm.tmc.edu

More information

3.3 Simulating action potentials

3.3 Simulating action potentials 6 THE HODGKIN HUXLEY MODEL OF THE ACTION POTENTIAL Fig. 3.1 Voltage dependence of rate coefficients and limiting values and time constants for the Hodgkin Huxley gating variables. (a) Graphs of forward

More information

A FINITE STATE AUTOMATON MODEL FOR MULTI-NEURON SIMULATIONS

A FINITE STATE AUTOMATON MODEL FOR MULTI-NEURON SIMULATIONS A FINITE STATE AUTOMATON MODEL FOR MULTI-NEURON SIMULATIONS Maria Schilstra, Alistair Rust, Rod Adams and Hamid Bolouri Science and Technology Research Centre, University of Hertfordshire, UK Department

More information

Annales UMCS Informatica AI 1 (2003) UMCS. Liquid state machine built of Hodgkin-Huxley neurons pattern recognition and informational entropy

Annales UMCS Informatica AI 1 (2003) UMCS. Liquid state machine built of Hodgkin-Huxley neurons pattern recognition and informational entropy Annales UMC Informatica AI 1 (2003) 107-113 Annales UMC Informatica Lublin-Polonia ectio AI http://www.annales.umcs.lublin.pl/ Liquid state machine built of Hodgkin-Huxley neurons pattern recognition and

More information

Supratim Ray

Supratim Ray Supratim Ray sray@cns.iisc.ernet.in Biophysics of Action Potentials Passive Properties neuron as an electrical circuit Passive Signaling cable theory Active properties generation of action potential Techniques

More information

Structure and Measurement of the brain lecture notes

Structure and Measurement of the brain lecture notes Structure and Measurement of the brain lecture notes Marty Sereno 2009/2010!"#$%&'(&#)*%$#&+,'-&.)"/*"&.*)*-'(0&1223 Neurons and Models Lecture 1 Topics Membrane (Nernst) Potential Action potential/voltage-gated

More information

Overview Organization: Central Nervous System (CNS) Peripheral Nervous System (PNS) innervate Divisions: a. Afferent

Overview Organization: Central Nervous System (CNS) Peripheral Nervous System (PNS) innervate Divisions: a. Afferent Overview Organization: Central Nervous System (CNS) Brain and spinal cord receives and processes information. Peripheral Nervous System (PNS) Nerve cells that link CNS with organs throughout the body.

More information

Deconstructing Actual Neurons

Deconstructing Actual Neurons 1 Deconstructing Actual Neurons Richard Bertram Department of Mathematics and Programs in Neuroscience and Molecular Biophysics Florida State University Tallahassee, Florida 32306 Reference: The many ionic

More information

Signal processing in nervous system - Hodgkin-Huxley model

Signal processing in nervous system - Hodgkin-Huxley model Signal processing in nervous system - Hodgkin-Huxley model Ulrike Haase 19.06.2007 Seminar "Gute Ideen in der theoretischen Biologie / Systembiologie" Signal processing in nervous system Nerve cell and

More information

Effects of Betaxolol on Hodgkin-Huxley Model of Tiger Salamander Retinal Ganglion Cell

Effects of Betaxolol on Hodgkin-Huxley Model of Tiger Salamander Retinal Ganglion Cell Effects of Betaxolol on Hodgkin-Huxley Model of Tiger Salamander Retinal Ganglion Cell 1. Abstract Matthew Dunlevie Clement Lee Indrani Mikkilineni mdunlevi@ucsd.edu cll008@ucsd.edu imikkili@ucsd.edu Isolated

More information

Dendritic computation

Dendritic computation Dendritic computation Dendrites as computational elements: Passive contributions to computation Active contributions to computation Examples Geometry matters: the isopotential cell Injecting current I

More information

1. Neurons & Action Potentials

1. Neurons & Action Potentials Lecture 6, 30 Jan 2008 Vertebrate Physiology ECOL 437 (MCB/VetSci 437) Univ. of Arizona, spring 2008 Kevin Bonine & Kevin Oh 1. Intro Nervous System Fxn (slides 32-60 from Mon 28 Jan; Ch10) 2. Neurons

More information

Lecture Notes 8C120 Inleiding Meten en Modelleren. Cellular electrophysiology: modeling and simulation. Nico Kuijpers

Lecture Notes 8C120 Inleiding Meten en Modelleren. Cellular electrophysiology: modeling and simulation. Nico Kuijpers Lecture Notes 8C2 Inleiding Meten en Modelleren Cellular electrophysiology: modeling and simulation Nico Kuijpers nico.kuijpers@bf.unimaas.nl February 9, 2 2 8C2 Inleiding Meten en Modelleren Extracellular

More information

9 Generation of Action Potential Hodgkin-Huxley Model

9 Generation of Action Potential Hodgkin-Huxley Model 9 Generation of Action Potential Hodgkin-Huxley Model (based on chapter 2, W.W. Lytton, Hodgkin-Huxley Model) 9. Passive and active membrane models In the previous lecture we have considered a passive

More information

Executable Symbolic Modeling of Neural Processes

Executable Symbolic Modeling of Neural Processes Executable Symbolic Modeling of Neural Processes M Sriram Iyengar 1, Carolyn Talcott 2, Riccardo Mozzachiodi 3, Douglas Baxter 3 1 School of Health Information Sciences, Univ. of Texas Health Science Center

More information

Single-Cell and Mean Field Neural Models

Single-Cell and Mean Field Neural Models 1 Single-Cell and Mean Field Neural Models Richard Bertram Department of Mathematics and Programs in Neuroscience and Molecular Biophysics Florida State University Tallahassee, Florida 32306 The neuron

More information

Biomedical Instrumentation

Biomedical Instrumentation ELEC ENG 4BD4: Biomedical Instrumentation Lecture 5 Bioelectricity 1. INTRODUCTION TO BIOELECTRICITY AND EXCITABLE CELLS Historical perspective: Bioelectricity first discovered by Luigi Galvani in 1780s

More information

SUPPLEMENTARY INFORMATION

SUPPLEMENTARY INFORMATION SUPPLEMENTARY INFORMATION Supplementary Figure S1. Pulses >3mJ reduce membrane resistance in HEK cells. Reversal potentials in a representative cell for IR-induced currents with laser pulses of 0.74 to

More information

Action Potentials and Synaptic Transmission Physics 171/271

Action Potentials and Synaptic Transmission Physics 171/271 Action Potentials and Synaptic Transmission Physics 171/271 Flavio Fröhlich (flavio@salk.edu) September 27, 2006 In this section, we consider two important aspects concerning the communication between

More information

An Efficient Method for Computing Synaptic Conductances Based on a Kinetic Model of Receptor Binding

An Efficient Method for Computing Synaptic Conductances Based on a Kinetic Model of Receptor Binding NOTE Communicated by Michael Hines An Efficient Method for Computing Synaptic Conductances Based on a Kinetic Model of Receptor Binding A. Destexhe Z. F. Mainen T. J. Sejnowski The Howard Hughes Medical

More information

Single neuron models. L. Pezard Aix-Marseille University

Single neuron models. L. Pezard Aix-Marseille University Single neuron models L. Pezard Aix-Marseille University Biophysics Biological neuron Biophysics Ionic currents Passive properties Active properties Typology of models Compartmental models Differential

More information

Virtual Cell Membrane Potential Tutorial IV

Virtual Cell Membrane Potential Tutorial IV Virtual Cell Membrane Potential Tutorial IV Creating the BioModel Creating the Application!" Application I -Studying voltage changes in a compartmental model!" Application II - Studying voltage, sodium,

More information

Ionic basis of the resting membrane potential. Foundations in Neuroscience I, Oct

Ionic basis of the resting membrane potential. Foundations in Neuroscience I, Oct Ionic basis of the resting membrane potential Foundations in Neuroscience I, Oct 3 2017 The next 4 lectures... - The resting membrane potential (today) - The action potential - The neural mechanisms behind

More information

Membrane Potentials, Action Potentials, and Synaptic Transmission. Membrane Potential

Membrane Potentials, Action Potentials, and Synaptic Transmission. Membrane Potential Cl Cl - - + K + K+ K + K Cl - 2/2/15 Membrane Potentials, Action Potentials, and Synaptic Transmission Core Curriculum II Spring 2015 Membrane Potential Example 1: K +, Cl - equally permeant no charge

More information

Bo Deng University of Nebraska-Lincoln UNL Math Biology Seminar

Bo Deng University of Nebraska-Lincoln UNL Math Biology Seminar Mathematical Model of Neuron Bo Deng University of Nebraska-Lincoln UNL Math Biology Seminar 09-10-2015 Review -- One Basic Circuit By Kirchhoff's Current Law 0 = I C + I R + I L I ext By Kirchhoff s Voltage

More information

Control and Integration. Nervous System Organization: Bilateral Symmetric Animals. Nervous System Organization: Radial Symmetric Animals

Control and Integration. Nervous System Organization: Bilateral Symmetric Animals. Nervous System Organization: Radial Symmetric Animals Control and Integration Neurophysiology Chapters 10-12 Nervous system composed of nervous tissue cells designed to conduct electrical impulses rapid communication to specific cells or groups of cells Endocrine

More information

ACTION POTENTIAL. Dr. Ayisha Qureshi Professor MBBS, MPhil

ACTION POTENTIAL. Dr. Ayisha Qureshi Professor MBBS, MPhil ACTION POTENTIAL Dr. Ayisha Qureshi Professor MBBS, MPhil DEFINITIONS: Stimulus: A stimulus is an external force or event which when applied to an excitable tissue produces a characteristic response. Subthreshold

More information

Chapter 9. Nerve Signals and Homeostasis

Chapter 9. Nerve Signals and Homeostasis Chapter 9 Nerve Signals and Homeostasis A neuron is a specialized nerve cell that is the functional unit of the nervous system. Neural signaling communication by neurons is the process by which an animal

More information

Action Potential Propagation

Action Potential Propagation Action Potential Propagation 2 Action Potential is a transient alteration of transmembrane voltage (or membrane potential) across an excitable membrane generated by the activity of voltage-gated ion channels.

More information

Dendrites - receives information from other neuron cells - input receivers.

Dendrites - receives information from other neuron cells - input receivers. The Nerve Tissue Neuron - the nerve cell Dendrites - receives information from other neuron cells - input receivers. Cell body - includes usual parts of the organelles of a cell (nucleus, mitochondria)

More information

NEURONS, SENSE ORGANS, AND NERVOUS SYSTEMS CHAPTER 34

NEURONS, SENSE ORGANS, AND NERVOUS SYSTEMS CHAPTER 34 NEURONS, SENSE ORGANS, AND NERVOUS SYSTEMS CHAPTER 34 KEY CONCEPTS 34.1 Nervous Systems Are Composed of Neurons and Glial Cells 34.2 Neurons Generate Electric Signals by Controlling Ion Distributions 34.3

More information

Equivalent Circuit Model of the Neuron

Equivalent Circuit Model of the Neuron Generator Potentials, Synaptic Potentials and Action Potentials All Can Be Described by the Equivalent Circuit Model of the Membrane Equivalent Circuit Model of the Neuron PNS, Fig 211 The Nerve (or Muscle)

More information

Channel Noise in Excitable Neuronal Membranes

Channel Noise in Excitable Neuronal Membranes Channel Noise in Excitable Neuronal Membranes Amit Manwani, Peter N. Steinmetz and Christof Koch Computation and Neural Systems Program, M-S 9-74 California Institute of Technology Pasadena, CA 95 fquixote,peter,kochg@klab.caltech.edu

More information

Virtual Cell Version 4.0 Membrane Potential

Virtual Cell Version 4.0 Membrane Potential Virtual Cell Version 4.0 Membrane Potential Creating the BioModel Creating the Application Application I -Studying voltage changes in a compartmental model Application II - Studying voltage, sodium, and

More information

Resting Distribution of Ions in Mammalian Neurons. Outside Inside (mm) E ion Permab. K Na Cl

Resting Distribution of Ions in Mammalian Neurons. Outside Inside (mm) E ion Permab. K Na Cl Resting Distribution of Ions in Mammalian Neurons Outside Inside (mm) E ion Permab. K + 5 100-81 1.0 150 15 +62 0.04 Cl - 100 10-62 0.045 V m = -60 mv V m approaches the Equilibrium Potential of the most

More information

Neurophysiology. Danil Hammoudi.MD

Neurophysiology. Danil Hammoudi.MD Neurophysiology Danil Hammoudi.MD ACTION POTENTIAL An action potential is a wave of electrical discharge that travels along the membrane of a cell. Action potentials are an essential feature of animal

More information

Alteration of resting membrane potential

Alteration of resting membrane potential Observation electric current easuring electrodes Alteration of resting ebrane potential ebrán extracellular spece intracellular space 1. passive electric properties of the ebrane Inward current Depolarization

More information

Chapter 48 Neurons, Synapses, and Signaling

Chapter 48 Neurons, Synapses, and Signaling Chapter 48 Neurons, Synapses, and Signaling Concept 48.1 Neuron organization and structure reflect function in information transfer Neurons are nerve cells that transfer information within the body Neurons

More information

CSE/NB 528 Final Lecture: All Good Things Must. CSE/NB 528: Final Lecture

CSE/NB 528 Final Lecture: All Good Things Must. CSE/NB 528: Final Lecture CSE/NB 528 Final Lecture: All Good Things Must 1 Course Summary Where have we been? Course Highlights Where do we go from here? Challenges and Open Problems Further Reading 2 What is the neural code? What

More information

Electrophysiological Models

Electrophysiological Models Electrophysiological Models Mark E. Nelson, Ph.D. CONTENTS 17.1 Introduction 286 17.2 Background 286 17.2.1 Glossary 286 17.3 Technical Details and Methodology 287 17.3.1 Hodgkin Huxley Models 287 17.3.2

More information

Neurons, Synapses, and Signaling

Neurons, Synapses, and Signaling LECTURE PRESENTATIONS For CAMPBELL BIOLOGY, NINTH EDITION Jane B. Reece, Lisa A. Urry, Michael L. Cain, Steven A. Wasserman, Peter V. Minorsky, Robert B. Jackson Chapter 48 Neurons, Synapses, and Signaling

More information

Introduction Principles of Signaling and Organization p. 3 Signaling in Simple Neuronal Circuits p. 4 Organization of the Retina p.

Introduction Principles of Signaling and Organization p. 3 Signaling in Simple Neuronal Circuits p. 4 Organization of the Retina p. Introduction Principles of Signaling and Organization p. 3 Signaling in Simple Neuronal Circuits p. 4 Organization of the Retina p. 5 Signaling in Nerve Cells p. 9 Cellular and Molecular Biology of Neurons

More information

Neuron Structure. Why? Model 1 Parts of a Neuron. What are the essential structures that make up a neuron?

Neuron Structure. Why? Model 1 Parts of a Neuron. What are the essential structures that make up a neuron? Why? Neuron Structure What are the essential structures that make up a neuron? Cells are specialized for different functions in multicellular organisms. In animals, one unique kind of cell helps organisms

More information

Hines, Michael (1993). NEURON - A program for simulation of nerve equations. In: Neural Systems: Analysis and Modeling. pp.127{136. F.

Hines, Michael (1993). NEURON - A program for simulation of nerve equations. In: Neural Systems: Analysis and Modeling. pp.127{136. F. Hines, Michael (1993). NEURON - A program for simulation of nerve equations. In: Neural Systems: Analysis and Modeling. pp.127{136. F. Eeckman (ed), Kluwer Academic Publishers. NEURON { A Program for Simulation

More information

Neurons and Nervous Systems

Neurons and Nervous Systems 34 Neurons and Nervous Systems Concept 34.1 Nervous Systems Consist of Neurons and Glia Nervous systems have two categories of cells: Neurons, or nerve cells, are excitable they generate and transmit electrical

More information

System Identification for the Hodgkin-Huxley Model using Artificial Neural Networks

System Identification for the Hodgkin-Huxley Model using Artificial Neural Networks Proceedings of International Joint Conference on Neural Networks, Orlando, Florida, USA, August 12-17, 2007 System Identification for the Hodgkin-Huxley Model using Artificial Neural Networks Manish Saggar,

More information

From neuronal oscillations to complexity

From neuronal oscillations to complexity 1/39 The Fourth International Workshop on Advanced Computation for Engineering Applications (ACEA 2008) MACIS 2 Al-Balqa Applied University, Salt, Jordan Corson Nathalie, Aziz Alaoui M.A. University of

More information

Model Neurons II: Conductances and Morphology

Model Neurons II: Conductances and Morphology Chapter 6 Model Neurons II: Conductances and Morphology 6.1 Levels of Neuron Modeling In modeling neurons, we must deal with two types of complexity; the intricate interplay of active conductances that

More information

Nerve Signal Conduction. Resting Potential Action Potential Conduction of Action Potentials

Nerve Signal Conduction. Resting Potential Action Potential Conduction of Action Potentials Nerve Signal Conduction Resting Potential Action Potential Conduction of Action Potentials Resting Potential Resting neurons are always prepared to send a nerve signal. Neuron possesses potential energy

More information

Nonlinear Observer Design and Synchronization Analysis for Classical Models of Neural Oscillators

Nonlinear Observer Design and Synchronization Analysis for Classical Models of Neural Oscillators Nonlinear Observer Design and Synchronization Analysis for Classical Models of Neural Oscillators Ranjeetha Bharath and Jean-Jacques Slotine Massachusetts Institute of Technology ABSTRACT This work explores

More information

Linearization of F-I Curves by Adaptation

Linearization of F-I Curves by Adaptation LETTER Communicated by Laurence Abbott Linearization of F-I Curves by Adaptation Bard Ermentrout Department of Mathematics, University of Pittsburgh, Pittsburgh, PA 15260, U.S.A. We show that negative

More information

6.3.4 Action potential

6.3.4 Action potential I ion C m C m dφ dt Figure 6.8: Electrical circuit model of the cell membrane. Normally, cells are net negative inside the cell which results in a non-zero resting membrane potential. The membrane potential

More information

Housekeeping, 26 January 2009

Housekeeping, 26 January 2009 5 th & 6 th Lectures Mon 26 & Wed 28 Jan 2009 Vertebrate Physiology ECOL 437 (MCB/VetSci 437) Univ. of Arizona, spring 2009 Neurons Chapter 11 Kevin Bonine & Kevin Oh 1. Finish Solutes + Water 2. Neurons

More information

Neurons. 5 th & 6 th Lectures Mon 26 & Wed 28 Jan Finish Solutes + Water. 2. Neurons. Chapter 11

Neurons. 5 th & 6 th Lectures Mon 26 & Wed 28 Jan Finish Solutes + Water. 2. Neurons. Chapter 11 5 th & 6 th Lectures Mon 26 & Wed 28 Jan 2009 Vertebrate Physiology ECOL 437 (MCB/VetSci 437) Univ. of Arizona, spring 2009 Neurons Chapter 11 Kevin Bonine & Kevin Oh 1. Finish Solutes + Water 2. Neurons

More information

Dynamic Systems: Ordinary Differential Equations. Ordinary Differential Equations

Dynamic Systems: Ordinary Differential Equations. Ordinary Differential Equations Dynamic Systems: Ordinary Differential Equations Adapted From: Numerical Methods in Biomedical Engineering Stanley M. Dunn, Alkis Constantinides, Prabhas V. Moghe Chapter 7 Kim Ferlin and John Fisher Ordinary

More information

BIOLOGY 11/10/2016. Neurons, Synapses, and Signaling. Concept 48.1: Neuron organization and structure reflect function in information transfer

BIOLOGY 11/10/2016. Neurons, Synapses, and Signaling. Concept 48.1: Neuron organization and structure reflect function in information transfer 48 Neurons, Synapses, and Signaling CAMPBELL BIOLOGY TENTH EDITION Reece Urry Cain Wasserman Minorsky Jackson Lecture Presentation by Nicole Tunbridge and Kathleen Fitzpatrick Concept 48.1: Neuron organization

More information

Physiology Unit 2. MEMBRANE POTENTIALS and SYNAPSES

Physiology Unit 2. MEMBRANE POTENTIALS and SYNAPSES Physiology Unit 2 MEMBRANE POTENTIALS and SYNAPSES Neuron Communication Neurons are stimulated by receptors on dendrites and cell bodies (soma) Ligand gated ion channels GPCR s Neurons stimulate cells

More information

Hopfield Neural Network and Associative Memory. Typical Myelinated Vertebrate Motoneuron (Wikipedia) Topic 3 Polymers and Neurons Lecture 5

Hopfield Neural Network and Associative Memory. Typical Myelinated Vertebrate Motoneuron (Wikipedia) Topic 3 Polymers and Neurons Lecture 5 Hopfield Neural Network and Associative Memory Typical Myelinated Vertebrate Motoneuron (Wikipedia) PHY 411-506 Computational Physics 2 1 Wednesday, March 5 1906 Nobel Prize in Physiology or Medicine.

More information

Decoding. How well can we learn what the stimulus is by looking at the neural responses?

Decoding. How well can we learn what the stimulus is by looking at the neural responses? Decoding How well can we learn what the stimulus is by looking at the neural responses? Two approaches: devise explicit algorithms for extracting a stimulus estimate directly quantify the relationship

More information

An Introductory Course in Computational Neuroscience

An Introductory Course in Computational Neuroscience An Introductory Course in Computational Neuroscience Contents Series Foreword Acknowledgments Preface 1 Preliminary Material 1.1. Introduction 1.1.1 The Cell, the Circuit, and the Brain 1.1.2 Physics of

More information

Neural Modeling and Computational Neuroscience. Claudio Gallicchio

Neural Modeling and Computational Neuroscience. Claudio Gallicchio Neural Modeling and Computational Neuroscience Claudio Gallicchio 1 Neuroscience modeling 2 Introduction to basic aspects of brain computation Introduction to neurophysiology Neural modeling: Elements

More information

Neurons. The Molecular Basis of their Electrical Excitability

Neurons. The Molecular Basis of their Electrical Excitability Neurons The Molecular Basis of their Electrical Excitability Viva La Complexity! Consider, The human brain contains >10 11 neurons! Each neuron makes 10 3 (average) synaptic contacts on up to 10 3 other

More information

Introduction to Neural Networks. Daniel Kersten. Lecture 2. Getting started with Mathematica. Review this section in Lecture 1

Introduction to Neural Networks. Daniel Kersten. Lecture 2. Getting started with Mathematica. Review this section in Lecture 1 Introduction to Neural Networks Daniel Kersten Lecture 2 Getting started with Mathematica Review this section in Lecture 1 2 Lect_2_TheNeuron.nb The Neuron - overview of structure From Anderson (1995)

More information

The Nervous System. Nervous System Organization. Nerve Tissue. Two parts to the nervous system 11/27/2016

The Nervous System. Nervous System Organization. Nerve Tissue. Two parts to the nervous system 11/27/2016 The Nervous System Nervous System Organization Animals must be able to respond to environmental stimuli. Three functions of the nervous system: Sensory input conduction of signals from sensory receptors.

More information