+ All Categories
Home > Documents > Simulation of an action potential using the Hodgkin-Huxley Model in Python Nathan Law Medical...

Simulation of an action potential using the Hodgkin-Huxley Model in Python Nathan Law Medical...

Date post: 15-Dec-2015
Category:
Upload: maurice-cullin
View: 229 times
Download: 0 times
Share this document with a friend
Popular Tags:
22
Simulation of an action potential using the Hodgkin- Huxley Model in Python Nathan Law Medical Biophysics 3970 Western University 03/24/13 Supervised by Dr. Andrea Soddu Medical Physicist The Department of Physics and Astronomy COMA Science Group
Transcript
Page 1: Simulation of an action potential using the Hodgkin-Huxley Model in Python Nathan Law Medical Biophysics 3970 Western University 03/24/13 Supervised by.

Simulation of an action potential using the Hodgkin-Huxley Model in PythonNathan LawMedical Biophysics 3970Western University03/24/13

Supervised by Dr. Andrea SodduMedical PhysicistThe Department of Physics and AstronomyCOMA Science Group

Page 2: Simulation of an action potential using the Hodgkin-Huxley Model in Python Nathan Law Medical Biophysics 3970 Western University 03/24/13 Supervised by.

Department of Medical Biophysics

Source: Neil Fraser: http://vv.carleton.ca/~neil/neural/neuron-a.html

Background

Page 3: Simulation of an action potential using the Hodgkin-Huxley Model in Python Nathan Law Medical Biophysics 3970 Western University 03/24/13 Supervised by.

Department of Medical Biophysics

Source: Breedlove, et al., Biological Psychology, Fourth Edition, Sinauer Associates© 2008 Sinauer Associates and Sumanas, Inc.

Page 4: Simulation of an action potential using the Hodgkin-Huxley Model in Python Nathan Law Medical Biophysics 3970 Western University 03/24/13 Supervised by.

The Action Potential (AP)• rapid reversal of the resting membrane potential (RMP) depolarization

• permeability of membrane to ions changes with membrane potential (MP)

Department of Medical Biophysics

Source [1]: Neil Fraser: http://vv.carleton.ca/~neil/neural/neuron-a.htmlSource [2]: Hodgkin-Huxley (1952): http://www.ncbi.nlm.nih.gov/pmc/articles/PMC1392413/pdf/jphysiol01442-0106.pdf

Page 5: Simulation of an action potential using the Hodgkin-Huxley Model in Python Nathan Law Medical Biophysics 3970 Western University 03/24/13 Supervised by.

Source: Candace Thompson: http://www.studyblue.com/notes/note/n/action-potentials/deck/1448117

Page 6: Simulation of an action potential using the Hodgkin-Huxley Model in Python Nathan Law Medical Biophysics 3970 Western University 03/24/13 Supervised by.

Motivation• Why model an action potential?

• estimate parameters

• determine/prove correlation between variables

• test new and hypothetical situations

• make quantitative and qualitative predictions

Department of Medical Biophysics

Page 7: Simulation of an action potential using the Hodgkin-Huxley Model in Python Nathan Law Medical Biophysics 3970 Western University 03/24/13 Supervised by.

Objectives1) Develop a simulation for an action potential using Python based on the Hodgkin-Huxley model.

2) Compare and contrast the Hodgkin-Huxley model with empirical data based on the giant squid axon.

Department of Medical Biophysics

Page 9: Simulation of an action potential using the Hodgkin-Huxley Model in Python Nathan Law Medical Biophysics 3970 Western University 03/24/13 Supervised by.

iRV Ohm’s Law

yyym RiVV )(

y

ymy

R

VVi

)(

R

1 g e,conductanc

)( ymyy VVgi

Department of Medical Biophysics

Derivation of Equations

Page 10: Simulation of an action potential using the Hodgkin-Huxley Model in Python Nathan Law Medical Biophysics 3970 Western University 03/24/13 Supervised by.

The Hodgkin-Huxley Model• A mathematical model that describes action potential initiation and propagation based on the giant squid axon

• model is based on four first-order ordinary differential equations

Department of Medical Biophysics

)()()( 34llNaNaKKM VVgVVhmgVVng

dt

dVCI

nndt

dnnn )1(

mmdt

dmmm )1(

hhdt

dhhh )1(

(2)

(1)

(4)

(3)

Page 11: Simulation of an action potential using the Hodgkin-Huxley Model in Python Nathan Law Medical Biophysics 3970 Western University 03/24/13 Supervised by.

Department of Medical Biophysics

Methods• differential equations from: A Quantitative Description of Membrane Current And It’s Application To Conduction And Excitation In Nerve: A. Hodgkin & A. Huxley (1952)

• all parameters based on paper

• Python (programming language)

• Spyder (scientific Python development environment)

Page 12: Simulation of an action potential using the Hodgkin-Huxley Model in Python Nathan Law Medical Biophysics 3970 Western University 03/24/13 Supervised by.

Define Variables based on empirical data

Define a time scale and an array of membrane

potentials

Input equations based on Hodgkin-Huxley

model

Plot

Methods•Code development:

Page 13: Simulation of an action potential using the Hodgkin-Huxley Model in Python Nathan Law Medical Biophysics 3970 Western University 03/24/13 Supervised by.

Department of Medical Biophysics

Methods• Define variables:

Variable Value

vrest 0 #mV

EK -12 #mV

ENa 115 #mV

El 10.613 #mV

gKbar 36 #mS/cm^2

gNabar 120 #mS/cm^2

glbar 0.3 #mS/cm^2

cm 1 #uF/cm^2

ts 100ms

dt 0.025

v (-100,250) #mV

Page 14: Simulation of an action potential using the Hodgkin-Huxley Model in Python Nathan Law Medical Biophysics 3970 Western University 03/24/13 Supervised by.

Department of Medical Biophysics

Results

Page 15: Simulation of an action potential using the Hodgkin-Huxley Model in Python Nathan Law Medical Biophysics 3970 Western University 03/24/13 Supervised by.

Department of Medical Biophysics

Results

Page 16: Simulation of an action potential using the Hodgkin-Huxley Model in Python Nathan Law Medical Biophysics 3970 Western University 03/24/13 Supervised by.

Discussion• Qualitative Analysis

• there is a hump during the depolarization phase in the calculated model

• the peak in the calculated model is sharper

• during repolarization, the calculated model is not smooth

• slope of the repolarization phase may be too steep

Department of Medical Biophysics

Page 17: Simulation of an action potential using the Hodgkin-Huxley Model in Python Nathan Law Medical Biophysics 3970 Western University 03/24/13 Supervised by.

Discussion

Above: Change in Membrane Potential with Respect to Time (Hodgkin Huxley Model)

Above: Original tracing of membrane action potential recorded at 9.1°C (Empirical Model)

Page 18: Simulation of an action potential using the Hodgkin-Huxley Model in Python Nathan Law Medical Biophysics 3970 Western University 03/24/13 Supervised by.

Conclusion• equations closely replicate the behaviour of a measured action potential

• good approximation of electrical characteristics of excitable cells

• not perfect

Page 19: Simulation of an action potential using the Hodgkin-Huxley Model in Python Nathan Law Medical Biophysics 3970 Western University 03/24/13 Supervised by.

Future Research & Implications• Simplification of the model

• Model groups of neurons, a bundle of axons, such as in a nerve

Page 20: Simulation of an action potential using the Hodgkin-Huxley Model in Python Nathan Law Medical Biophysics 3970 Western University 03/24/13 Supervised by.

Acknowledgements• Dr. Andrea Soddu PhD

Page 21: Simulation of an action potential using the Hodgkin-Huxley Model in Python Nathan Law Medical Biophysics 3970 Western University 03/24/13 Supervised by.

References• Breedlove, et al., Biological Psychology, Fourth Edition, Sinauer Associates © 2008 Sinauer Associates and Sumanas, Inc.

• Thompson, C. (2013). Action Potentials. Medicine 2015 at Howard University College of Medicine. Retrieved March 8th, 2013. http://classconnection.s3.amazonaws.com/117/flashcards/693117/jpg/picture1321109256503.jpg

• Fraser, N. (1998). The Biological Neuron. Schematic of Biological Neuron. Retrieved March 5th, 2013. http://vv.carleton.ca/~neil/neural/neuron-a.html

• Hodgkin, A. L.; Huxley, A. F. (1952). "A quantitative description of membrane current and its application to conduction and excitation in nerve". The Journal of physiology 117 (4): 500–544.PMC 1392413. PMID 12991237

Page 22: Simulation of an action potential using the Hodgkin-Huxley Model in Python Nathan Law Medical Biophysics 3970 Western University 03/24/13 Supervised by.

Questions? Comments?


Recommended