APPM 2360 Project 3 Mathematical Investigation of Cardiac Dynamics

Size: px
Start display at page:

Download "APPM 2360 Project 3 Mathematical Investigation of Cardiac Dynamics"

Transcription

1 APPM 2360 Project 3 Mathematical Investigation of Cardiac Dynamics Due: Thursday, December 6, 2018 by 4:59 p.m. Submit as a PDF to Assignments on Canvas 1 Introduction Cardiac Arrhythmia, or irregular heart beat, is a name for a large family of cardiac behaviors that show abnormalities in the electrical behavior of the heart. For instance, a heartbeat that is too fast ( tachycardia ) or too slow ( bradycardia ) can cause irregular activity and even death. Some arrhythmias such as heart palpitations can exhibit little danger while others such as stroke or embolism can lead to sudden death. Cardiac dynamics are typically modeled with a set of nonlinear ordinary differential equations (ODEs). These systems can be very large and each equation can be very complicated. However, to capture certain behaviors of the system, we can often work with simpler models. In our case, we will use a two-variable system to study the behavior of the voltage flux across cardiac cell membranes. This model is based on the famous FitzHugh-Nagumo model of neural excitation and propagation that results from ion-flow. 1 An understanding of how the voltage flux works can give insight to how or why arrhythmias form. In general, the functions involved in these cardiac models even our simplified, two-variable model cannot be solved analytically. Therefore, numerical solvers are useful for studying these systems. 2 Background The sinoatrial node, the heart s natural pacemaker, is a small mass of specialized cells that produces spontaneous electrical impulses in the heart. These impulses spread to nearby cardiac cells and signal the cells to contract in a coordinated manner, producing a natural and regular heartbeat. Cells are polarized, meaning that there is an electrical voltage (charge difference) across the membrane. When a cardiac cell is at rest, the charge on the outside of the cell is more positive than on the inside of the cell (due to a large concentration of calcium and sodium ions outside the cell and a large concentration of potassium ions inside the cell). The electrical impulse generated by the pacemaker cells is the cardiac Figure 1: Voltage gated ion channels in pacemaker cells action potentials, a brief change in electric charge across the cell membrane. Small ion channels in the cell membrane open and allow ions to pass through the membrane to the other side of the cell. These ion 1 The FitzHugh-Nagumo (FHN) model is itself a 2D simplification of the famous Hodgkin-Huxley model for conductance-based action potentials in squid neurons. 1

2 channels are called voltage gated channels 2 because they open for some values of membrane potential and they close for other values. 3 As positive charge moves into the cell, the voltage flux depolarizes the cell (loses its charge difference, becoming more positive inside) and the cardiac cell contracts. The cell remains contracted until repolarization occurs (gains its charge difference, becoming more negative inside). In order for the pacemaker cells to stimulate other (contractile) cells in the heart, the electric impulse generated in the pacemaker cells must propagate to nearby cells. The pacemaker cells are connected to the contractile cells through small bridges between the cells. Once the pacemaker cells have undergone an action potential, the ions flow through these openings into the nearby cells and signal them to contract. These contractile cells will only depolarize if stimulated. 3 Mathematical Model 3.1 The Basic Model The model under consideration is a type of excitation/recovery model that has the form: dv = kv(v a)(v 1) vh + S(t) dt ( dh dt = ε 0 + µ ) 1h ( h kv(v a 1)) (1) v + µ 2 The excitation in this system comes from the variable v which represents the voltage across the cell membrane. Similarly, recovery of the system is controlled by the gating variable h. The gating variable takes on non-negative values and can be thought of as a physical gate blocking or allowing voltage to pass across the cell membrane. If h = 0, then the gate is open and voltage can pass freely if the cell is stimulated. Conversely, if h > 0 then the gate reduces the voltage passing into the cell. For a large enough value of h, the gate is closed and no voltage is allowed to pass through. The function S(t) is a stimulus parameter that represents the electrical impulse generated by the sinoatrial node. This stimulus is crucial for maintaining a regular heartbeat. The parameters a, k, ε 0, µ 1, µ 2 are positive, unitless constants. Several of these parameters, and specific terms in (1), have clear physical significance: - a represents the threshold excitation in the system - k controls the magnitude of the electric current across the cell membrane. - vh describes the repolarization current in the recovery process ( ) - ε 0 + µ 1h v+µ 2 sets the time-scale for the cell s recovery/ gives a relationship between the excitation and recovery time scales. 3.1 Questions All plots in the (v, h)-phase space should be plotted with v on the horizontal axis and h on the vertical axis. No points will be given for plots that switch the axes. 1. (a) Consider the system defined by (1) where the function S(t) = 0 and the other parameters are constant. Find the nullclines of the system analytically. (Do not use exact values for any of the parameters.) 2 See YouTube video linked on the APPM 2360 website for an animation of this. 3 Fact: the special channels that cause pacemaker cells to depolarize are known as funny channels. 2

3 (b) There is only one non-negative equilibrium solution (v 0, h 0 ) in this system. Find this equilibrium solution analytically. (Do not use exact values for any of the parameters. It might be helpful to try problem 2(a) first.) (c) Recall for a system of ordinary differential equations the Jacobian matrix 4 is defined as v = f(v, h) h = g(v, h) (2) J(v, h) = [ ] fv f h where the subscripts denote partial derivatives. Find the eigenvalues of the Jacobian evaluated at the non-negative equilibrium point (v 0, h 0 ). (Do not use exact values for any of the parameters.) (d) Use the eigenvalues of J(v 0, h 0 ) to classify the stability 5 of the non-negative equilibrium solution (v 0, h 0 ). Give a biological explanation of your result (a) Let a = 0.15, k = 8, ε 0 = 0.002, µ 1 = 0.2, and µ 2 = 0.3. Plot the nullclines of (1) together on the domain v = [ 0.05, 1.2], h = [ 0.05, 2.75], making the voltage nullclines blue and the gating nullclines red. On this same plot, mark the equilibrium solution you found in Question 1(b) in black. (Be sure to put v on the horizontal axis and h on the vertical axis and include a legend.) (b) Use arrows to indicate the direction of movement in each separate region of the plot from Question 2(a) (i.e. is the flow north-west, north-east, south-west, or south-east in each region?). You may draw these arrows by hand. 3. Assign the parameters in (1) the values a = 0.15, k = 8, ε 0 = 0.002, µ 1 = 0.2, µ 2 = 0.3, and S(t) = 0. Note: The following problems depend on a Matlab script called flow.m that generates the vector field for an EXAMPLE problem (this script has been added to the Files section of Canvas). Modify flow.m so that it finds the vector field for the given problem, (1). (a) Modify the script flow.m in Matlab and plot the vector field of (1) on the domain v = [ 0.05, 1.2], h = [ 0.05, 2.75]. Starting from (v 0, h 0 ) = (0.5, 0.2), use ode45 7 in Matlab to draw a sample solution curve in the vector field and mark the starting point (v 0, h 0 ). (b) Modify the script flow.m in Matlab and plot the vector field of (1) on the domain v = [ 0.05, 1.2], h = [ 0.05, 2.75]. Starting from (v 0, h 0 ) = (0.1, 0.2), use ode45 in Matlab to draw a sample solution curve in the vector field and mark the starting point (v 0, h 0 ). (c) Compare and contrast the sample solution curves in Questions 3(a) and 3(b). How does the solution s trajectory depend on the initial condition? Given the nullclines and the vector fields that you found earlier, do the solutions behave as you would expect? Why or why not? (d) The behavior of the solutions heavily depends on the relationship between the system s excitation threshold a and the initial value of the excitation variable v 0. For each of the vector fields and solution curves found in Questions 3(a) and 3(b), give a relationship between a and v 0 and describe how the relationship between these variables affects the behavior of the samples solution. Describe why this relationship might make sense physically. 4 See page 434 in the textbook for more information about the Jacobian matrix. 5 See page 434 in the textbook for more information about stability of equilibrium solutions. 6 Hint: Biologically, (v 0, h 0) corresponds to a resting state in which the cell is polarized and not contracted. 7 The APPM 2460 lecture notes may be helpful if you have not used ode45 before. See Canvas. g v g h (3) 3

4 3.2 Model Improvement: Periodic stimulation As noted in the introduction, cardiac cells need to be stimulated by the heart s pacemaker to function properly. To maintain a steady heart beat this stimulation must come periodically. The period of stimulation in our model will be denoted by the parameter T, where the value of T defines the number of time units that pass between each stimulation. For example, if the heart is stimulated once every 100 time units, then we should set T = 100. In order to simulate realistic cardiac behavior, we must incorporate the stimulation period. The following code snippet will incorporate this periodic stimulation into (1) by giving the system a push every T time units of the simulation. It does this by setting S(t) = 0.25 if 100 time units have elapsed since the last stimulation occurred and S(t) = 0 otherwise: if ( mod(t,t) >= 10.0) && ( mod(t,t) <= 13.0 ) S = 0.25; else S = 0.0; end For any time between stimulation times, the cell will not be stimulated. 3.2 Questions Assign the parameters in (1) the values a = 0.15, k = 8, ε 0 = 0.002, µ 1 = 0.2, µ 2 = 0.3, and S(t) = Suppose that the system is initially at (v 0, h 0 ) = (0, 0) and a large, positive stimulus β is added to the voltage. Based on the plots made in Section 3.1, what direction will the trajectory move initially? What is the maximum value that v will attain? 2. Plot the nullclines of (1) again on the domain v = [ 0.05, 1.2], h = [ 0.05, 2.75]. In this same plot, use ode45 in Matlab to simulate solutions to (1) starting at (v, h) = (0, 0) given an initial large, positive stimulus β = 0.25 of the voltage. ( ) Clarification: To obtain this sample solution curve, use ode45 8 to solve (1) over the time interval t = [0, 500]. Start from the initial point (v 0, h 0 ) = (0 + β, 0) = (0.25, 0). (This time interval will give the full solution curve in phase space and the initial condition will mimic what happens when the system, starting from rest, receives a single large, positive stimulus β.) Is the flow clockwise or counter-clockwise? If no more stimuli are given after the initial push where will the system go as t? Does this agree with your reasoning in Question 1 above? 3. (a) Using ode45 in Matlab, simulate solutions to (1) starting from the initial condition (v 0, h 0 ) = (β, 0) (where β = 0.25 is a positive, initial stimulus as in Problems 1 and 2 above) over the time interval t [0, 500] using a time-step of t = 0.2. (The solution curves for v(t) and h(t) should be plotted against t in the same figure. Include a legend.) (b) Using ode45 in Matlab, simulate solutions to (1) starting from the initial condition (v 0, h 0 ) = (0, 0) over the time interval t [0, 500] using a time-step of t = 0.2, a stimulation period T = 100, and stimulus of S(t) = (The solution curves for v(t) and h(t) should be plotted against t in the same figure. Include a legend.) (c) Compare and contrast the solutions to the system with and without constant stimulus. 8 The ode45 call should be set-up as follows: [t,x] = time interval, initial conditions ) 9 Include the exact code snippet from this section in your script 4

5 4 Studying the Cardiac Action Potential One quantity of great interest and importance in cardiac modeling is the Action Potential Duration (APD). Formally, the APD is the duration from the time a cell is stimulated (and depolarizes) to the time it repolarizes. Heuristically, this measures the time duration that a heart cell is contracted. Mathematically, we calculate the APD as the time difference Figure 2: One Action Potential Duration AP D beat = t down t up (4) where t up is the time at which the voltage v passes a constant critical voltage v c on the way up (as the cardiac cells depolarize) and t down is the time at which the voltage v passes v c on the way down (after the cardiac cells repolarize). 4.0 Questions 1. Let the critical voltage be v c = 0.1. (a) Calculating the APD for the last full beat of the v(t) solution curve to (1) corresponds to the steady state APD and is denoted APD 0. Using the initial condition (v 0, h 0 ) = (0, 0) over the time interval t [0, 1000] with a time-step of t = 0.2 and stimulus S(t) = 0.25, simulate solutions to (1) and find the APD 0 for T 1 = 100, T 2 = 90, T 3 = 80, T 4 = 70, T 5 = 60, and T 6 = 50. Plot APD 0 versus stimulation period T. (b) Referring to the plot in part (b), does APD 0 increase or decrease with T? Interpret this from a biological viewpoint. That is, what is happening in the heart cell as it is stimulated more frequently? One important feature of cardiac tissue is that the APD needs to be long enough, especially for large animals. Give a reason for why this might be. 2. (a) The minimum value of h between two beats is denoted h (this is a local minimum in the h versus t plot) and is essentially a measure of how much the heart cell has been allowed to relax before the next stimulation (smaller h = more relaxed). The value of the last h between the last two beats corresponds to the steady-state h. Using the same initial conditions, step size t, time interval t, and stimulus S(t) as in Question 1(a), find the steady-state h for T 1 = 100, T 2 = 90, T 3 = 80, T 4 = 70, T 5 = 60, and T 6 = 50. Plot the steady-state h versus stimulation period T. 5

6 (b) Does the steady-state h increase or decrease with T? Interpret this from a biological point of view. That is, what is happening in the heart cell as it is stimulated more frequently. 3. Plot steady-state APD versus steady-state h. Does steady-state APD increase or decrease with steadystate h? Use this to describe the role of the two variables and how they interact with each other. 5 References 1. Aliev R, Panfilov A. A simple two-variable model of cardiac excitation. Chaos, Solitons, and Fractals. 7(3), (1996). 2. Gani, MO. Stability of periodic traveling waves in the Aliev-Panfilov reaction-diffusion system. Communications in Nonlinear Science and Numerical Simulation (2015). 3. Izhikevich EM, FitzHugh R. FitzHugh-Nagumo model. Scholarpedia, 1(9):1349, (2006). 4. Williams GS, Smith GD, Sobie EA, Jafri MS. Models of cardiac excitation-contraction coupling in ventricular myocytes. Math Biosciences. 226(1), 1-15 (2010). Helpful media sources: 5. Alila Medical (Media). Cardiac Action Potential, Animation. YouTube, YouTube, 24 Jan Draw It to Know It (Media). 6 Report Guidelines Your group will submit your project write-up on Canvas to the appropriate Project Assignment (you can find these under the assignments tab in Canvas). Adhere to the following guidelines: Do not put off finding a group (you must works in groups of 2-3). You should have a group set-up within one week of the project assignment due date. Submit your project in a pdf format and submit ALL code used for your project (.nb files for Mathematica,.m files for Matlab,.py or ipynb for python). Code in Matlab, Mathematica, Maple, R, python or Julia is acceptable (Matlab is recommended). Code in Microsoft Word or Excel (or any other spreadsheet program) is not acceptable. All other languages need instructor permission (please ask as soon as possible). Code may be included in the appendix if you wish. DO NOT submit anything on Canvas as a.zip file. Contents of.zip files will not necessarily be graded. Have only ONE group member submit the project. Having multiple people in your group submit the project to Canvas will result in multiple grades, and we will take the LOWEST one. Include the names and recitation section numbers of all group members working on the project on the cover page of the report. 6

7 When you submit the report to Canvas, please include each group member s information (name, student number, and section number) in the comments. This allows us to quickly search for a student s report. Your report needs to accurately and consistently describe the steps you took to answer the posed questions. This report should have the look and feel of a technical paper. Presentation and clarity are very important. Here are some important items to remember: Remember: you are to submit a complete report for this project. Documents submitted with numbered responses will be severely penalized. Labs must be typed, including all equations (part of your learning experience is to learn how to use an equation editor). An exception can be made for lengthy calculations in the appendix, which may be hand written (as long as they are neat and clear), and minor labels on plots, arrows in the text, and a few subscripts. Write your report in an organized and logical fashion. Section headers such as Introduction, Background, Problem Statement, Calculations, Results, Conclusion,... are not mandatory but are highly recommended. They not only help you write your report, but help the reader navigate your paper. Start with an introduction that describes what you will discuss in the body of the report. A brief summary of important concepts used in your discussion could be helpful here as well. Always introduce relevant equations that will be used or discussed in the report. Always include units in your answers DO include and label any plot that supports your conclusions or gives you insight in your investigations (these should be found in the body of your report). However, DO NOT use screen-shots of your figures. DO NOT include printouts of computer software screens or code snippets. You simply need to state which software you used in each step and what it did for you. DO include the results of any calculations in the main body of your report. DO NOT include lengthy calculations in the main body of your paper (calculations should be included in a labeled appendix and should be referred to in the main body). Your report does not have to be long. You need quality, not quantity, of work. Do not omit any important piece of information, but do not feel obligated to add any extras. Summarize what you have accomplished in the conclusion. No new information or new results should appear in your conclusion. You should only review the highlights of what your wrote about in the body of the report. 7

APPM 2360 Project 1: Black Holes

APPM 2360 Project 1: Black Holes APPM 2360 Project 1: Black Holes Due: February 22, 2018 by 11:59 PM on D2L 1 Introduction Black holes are one of the stranger predictions of Einsteins beautiful theory of general relativity. When matter

More information

APPM 2360 Project 2: Exploring Stage-Structured Population Dynamics with Loggerhead Sea Turtles

APPM 2360 Project 2: Exploring Stage-Structured Population Dynamics with Loggerhead Sea Turtles APPM 2360 Project 2: Exploring Stage-Structured Population Dynamics with Loggerhead Sea Turtles Due: March 22, 2018 by 11:59 PM Submit to the Dropbox on D2L as a PDF 1 Introduction In this lab, you will

More information

APPM 2360 Lab 3: Zombies! Due April 27, 2017 by 11:59 pm

APPM 2360 Lab 3: Zombies! Due April 27, 2017 by 11:59 pm APPM 2360 Lab 3: Zombies! Due April 27, 2017 by 11:59 pm 1 Introduction As you already know, in the past month, zombies have overrun much of North America, including all major cities on both the East and

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

2013 NSF-CMACS Workshop on Atrial Fibrillation

2013 NSF-CMACS Workshop on Atrial Fibrillation 2013 NSF-CMACS Workshop on A Atrial Fibrillation Flavio H. Fenton School of Physics Georgia Institute of Technology, Atlanta, GA and Max Planck Institute for Dynamics and Self-organization, Goettingen,

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

Particles with opposite charges (positives and negatives) attract each other, while particles with the same charge repel each other.

Particles with opposite charges (positives and negatives) attract each other, while particles with the same charge repel each other. III. NEUROPHYSIOLOGY A) REVIEW - 3 basic ideas that the student must remember from chemistry and physics: (i) CONCENTRATION measure of relative amounts of solutes in a solution. * Measured in units called

More information

Final Project Descriptions Introduction to Mathematical Biology Professor: Paul J. Atzberger. Project I: Predator-Prey Equations

Final Project Descriptions Introduction to Mathematical Biology Professor: Paul J. Atzberger. Project I: Predator-Prey Equations Final Project Descriptions Introduction to Mathematical Biology Professor: Paul J. Atzberger Project I: Predator-Prey Equations The Lotka-Volterra Predator-Prey Model is given by: du dv = αu βuv = ρβuv

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

Sample HHSim Exercises

Sample HHSim Exercises I. Equilibrium Potential II. Membrane Potential III. The Action Potential IV. The Fast Sodium Channel V. The Delayed Rectifier VI. Voltage-Gated Channel Parameters Part I: Equilibrium Potential Sample

More information

Modeling Action Potentials in Cell Processes

Modeling Action Potentials in Cell Processes Modeling Action Potentials in Cell Processes Chelsi Pinkett, Jackie Chism, Kenneth Anderson, Paul Klockenkemper, Christopher Smith, Quarail Hale Tennessee State University Action Potential Models Chelsi

More information

Introduction to Physiology V - Coupling and Propagation

Introduction to Physiology V - Coupling and Propagation Introduction to Physiology V - Coupling and Propagation J. P. Keener Mathematics Department Coupling and Propagation p./33 Spatially Extended Excitable Media Neurons and axons Coupling and Propagation

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

Tactics Box 23.1 Using Kirchhoff's Loop Law

Tactics Box 23.1 Using Kirchhoff's Loop Law PH203 Chapter 23 solutions Tactics Box 231 Using Kirchhoff's Loop Law Description: Knight/Jones/Field Tactics Box 231 Using Kirchhoff s loop law is illustrated Learning Goal: To practice Tactics Box 231

More information

Chapter 24 BIFURCATIONS

Chapter 24 BIFURCATIONS Chapter 24 BIFURCATIONS Abstract Keywords: Phase Portrait Fixed Point Saddle-Node Bifurcation Diagram Codimension-1 Hysteresis Hopf Bifurcation SNIC Page 1 24.1 Introduction In linear systems, responses

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

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

Qualitative Analysis of Tumor-Immune ODE System

Qualitative Analysis of Tumor-Immune ODE System of Tumor-Immune ODE System LG de Pillis and AE Radunskaya August 15, 2002 This work was supported in part by a grant from the WM Keck Foundation 0-0 QUALITATIVE ANALYSIS Overview 1 Simplified System of

More information

By: Jarrett L. Lancaster, Edward H. Hellen and Esther M. Leise

By: Jarrett L. Lancaster, Edward H. Hellen and Esther M. Leise Modeling excitable systems: Reentrant Tachycardia. By: Jarrett L. Lancaster, Edward H. Hellen and Esther M. Leise Lancaster, J.L., Hellen, E.H. and Leise, E.M. (2010) Modeling excitable systems: Reentrant

More information

Computational simulation of the heart Edmund Altman 2010/2011

Computational simulation of the heart Edmund Altman 2010/2011 Computational simulation of the heart Edmund Altman 2010/2011 The candidate confirms that the work submitted is their own and the appropriate credit has been given where reference has been made to the

More information

Cellular Electrophysiology. Cardiac Electrophysiology

Cellular Electrophysiology. Cardiac Electrophysiology Part 1: Resting and Action Potentials Cardiac Electrophysiology Theory Simulation Experiment Scale The membrane: structure, channels and gates The cell: resting potential, whole cell currents, cardiac

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

Simulating Cardiac Electromechanics using Abaqus UEL

Simulating Cardiac Electromechanics using Abaqus UEL 1 Simulating Cardiac Electromechanics using Abaqus UEL Introduction From a finite elements point of view, modeling the complex beating of heart tissues involves solving strongly coupled electromechanical

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

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

Systems Biology: Theoretical Biology. Kirsten ten Tusscher, Theoretical Biology, UU

Systems Biology: Theoretical Biology. Kirsten ten Tusscher, Theoretical Biology, UU Systems Biology: Theoretical Biology Kirsten ten Tusscher, Theoretical Biology, UU 1 Chapter 9 Hodgkin-Huxley model 2 Introduction Hodgkin-Huxley model : detailed model for nerve action potential Perfect

More information

Naseem Demeri. Mohammad Alfarra. Mohammad Khatatbeh

Naseem Demeri. Mohammad Alfarra. Mohammad Khatatbeh 7 Naseem Demeri Mohammad Alfarra Mohammad Khatatbeh In the previous lectures, we have talked about how the difference in permeability for ions across the cell membrane can generate a potential. The potential

More information

3 Action Potentials - Brutal Approximations

3 Action Potentials - Brutal Approximations Physics 172/278 - David Kleinfeld - Fall 2004; Revised Winter 2015 3 Action Potentials - Brutal Approximations The Hodgkin-Huxley equations for the behavior of the action potential in squid, and similar

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

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

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

We observe the model neuron s response to constant input current, studying the dependence of:

We observe the model neuron s response to constant input current, studying the dependence of: BioE332A Lab 2, 21 1 Lab 2 December 23, 29 A Spiking Neuron Like biological neurons, the model neuron we characterize in this lab has a repertoire of (model) ion-channel populations. Here we focus on the

More information

Experiment 2. F r e e F a l l

Experiment 2. F r e e F a l l Suggested Reading for this Lab Experiment F r e e F a l l Taylor, Section.6, and standard deviation rule in Taylor handout. Review Chapters 3 & 4, Read Sections 8.1-8.6. You will also need some procedures

More information

Electrophysiological Modeling of Membranes and Cells

Electrophysiological Modeling of Membranes and Cells Bioeng 6460 Electrophysiology and Bioelectricity Electrophysiological Modeling of Membranes and Cells Frank B. Sachse fs@cvrti.utah.edu Overview Recapitulation Electrical Modeling of Membranes Cardiac

More information

Lab 6. Current Balance

Lab 6. Current Balance Lab 6. Current Balance Goals To explore and verify the right-hand rule governing the force on a current-carrying wire immersed in a magnetic field. To determine how the force on a current-carrying wire

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

A note on discontinuous rate functions for the gate variables in mathematical models of cardiac cells

A note on discontinuous rate functions for the gate variables in mathematical models of cardiac cells Procedia Computer Science (2) (22) 6 945 95 Procedia Computer Science www.elsevier.com/locate/procedia International Conference on Computational Science ICCS 2 A note on discontinuous rate functions for

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

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

Transport of ions across plasma membranes

Transport of ions across plasma membranes Transport of ions across plasma membranes Plasma Membranes of Excitable tissues Ref: Guyton, 13 th ed: pp: 61-71. 12 th ed: pp: 57-69. 11th ed: p57-71, Electrical properties of plasma membranes Part A:

More information

Nervous System: Part II How A Neuron Works

Nervous System: Part II How A Neuron Works Nervous System: Part II How A Neuron Works Essential Knowledge Statement 3.E.2 Continued Animals have nervous systems that detect external and internal signals, transmit and integrate information, and

More information

Membrane Potentials. Why are some cells electrically active? Model 1: The Sodium/Potassium pump. Critical Thinking Questions

Membrane Potentials. Why are some cells electrically active? Model 1: The Sodium/Potassium pump. Critical Thinking Questions Membrane Potentials Model 1: The Sodium/Potassium pump Why are some cells electrically active? 1. What ion is being moved out of the cell according to model 1? a. How many of these are being moved out?

More information

2401 : Anatomy/Physiology

2401 : Anatomy/Physiology Dr. Chris Doumen Week 6 2401 : Anatomy/Physiology Action Potentials NeuroPhysiology TextBook Readings Pages 400 through 408 Make use of the figures in your textbook ; a picture is worth a thousand words!

More information

2 One-dimensional motion with constant acceleration

2 One-dimensional motion with constant acceleration 2 One-dimensional motion with constant acceleration Experiment objectives: 1. Achieve a better understanding of how to solve position, velocity and acceleration problems in one-dimensional motion with

More information

Chemistry 883 Computational Quantum Chemistry

Chemistry 883 Computational Quantum Chemistry Chemistry 883 Computational Quantum Chemistry Instructor Contact Information Professor Benjamin G. Levine levine@chemistry.msu.edu 215 Chemistry Building 517-353-1113 Office Hours Tuesday 9:00-11:00 am

More information

The Significance of Reduced Conductance in the Sino-Atrial Node for Cardiac Rythmicity

The Significance of Reduced Conductance in the Sino-Atrial Node for Cardiac Rythmicity The Significance of Reduced Conductance in the Sino-Atrial Node for Cardiac Rythmicity Will Nesse May 14, 2005 Sino-Atrial Node (SA node): The Pacemaker of the Heart 1 The SA node and the Atria: How the

More information

The Physics of the Heart. Sima Setayeshgar

The Physics of the Heart. Sima Setayeshgar The Physics of the Heart Sima Setayeshgar Department of Physics Indiana University Indiana Unversity Physics REU Seminar, July 27 2005 1 Stripes, Spots and Scrolls Indiana Unversity Physics REU Seminar,

More information

Dynamical Systems for Biology - Excitability

Dynamical Systems for Biology - Excitability Dynamical Systems for Biology - Excitability J. P. Keener Mathematics Department Dynamical Systems for Biology p.1/25 Examples of Excitable Media B-Z reagent CICR (Calcium Induced Calcium Release) Nerve

More information

MATH 723 Mathematical Neuroscience Spring 2008 Instructor: Georgi Medvedev

MATH 723 Mathematical Neuroscience Spring 2008 Instructor: Georgi Medvedev MATH 723 Mathematical Neuroscience Spring 28 Instructor: Georgi Medvedev 2 Lecture 2. Approximate systems. 2. Reduction of the HH model to a 2D system. The original HH system consists of 4 differential

More information

Electric Potential. Electric field from plane of charge (Serway Example 24.5)

Electric Potential. Electric field from plane of charge (Serway Example 24.5) Physics Topics Electric Potential If necessary, review the following topics and relevant textbook sections from Serway / Jewett Physics for Scientists and Engineers, 9th Ed. Electric field from plane of

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

Purpose: Materials: WARNING! Section: Partner 2: Partner 1:

Purpose: Materials: WARNING! Section: Partner 2: Partner 1: Partner 1: Partner 2: Section: PLEASE NOTE: You will need this particular lab report later in the semester again for the homework of the Rolling Motion Experiment. When you get back this graded report,

More information

TAKING MATH TO THE HEART: Pulse Propagation in a Discrete Ring

TAKING MATH TO THE HEART: Pulse Propagation in a Discrete Ring TAKING MATH TO THE HEART: Pulse Propagation in a Discrete Ring HASSAN SEDAGHAT Department of Mathematics, Virginia Commonwealth University, Richmond, VA 23284-2014, USA The Discrete Ring or Loop A (discrete)

More information

Nonlinear Dynamics of Neural Firing

Nonlinear Dynamics of Neural Firing Nonlinear Dynamics of Neural Firing BENG/BGGN 260 Neurodynamics University of California, San Diego Week 3 BENG/BGGN 260 Neurodynamics (UCSD) Nonlinear Dynamics of Neural Firing Week 3 1 / 16 Reading Materials

More information

The Department of Electrical Engineering. nkrol Mentors: Dr. Mohammad Imtiaz, Dr. Jing Wang & Dr. In Soo Ahn

The Department of Electrical Engineering. nkrol Mentors: Dr. Mohammad Imtiaz, Dr. Jing Wang & Dr. In Soo Ahn Bradley University The Department of Electrical Engineering nkrol Mentors: Dr. Mohammad Imtiaz, Dr. Jing Wang & Dr. In Soo Ahn AN ELECTRICAL ENGINEERING PERSPECTIVE OF THE HUMAN HEART This research project

More information

LIMIT CYCLE OSCILLATORS

LIMIT CYCLE OSCILLATORS MCB 137 EXCITABLE & OSCILLATORY SYSTEMS WINTER 2008 LIMIT CYCLE OSCILLATORS The Fitzhugh-Nagumo Equations The best example of an excitable phenomenon is the firing of a nerve: according to the Hodgkin

More information

Parameters for Minimal Model of Cardiac Cell from Two Different Methods: Voltage-Clamp and MSE Method

Parameters for Minimal Model of Cardiac Cell from Two Different Methods: Voltage-Clamp and MSE Method Parameters for Minimal Model of Cardiac Cell from Two Different Methods: oltage-clamp and MSE Method Soheila Esmaeili 1, * and Bahareh beheshti 1 Department of Biomedical engineering, ran University of

More information

Transmission of Nerve Impulses (see Fig , p. 403)

Transmission of Nerve Impulses (see Fig , p. 403) How a nerve impulse works Transmission of Nerve Impulses (see Fig. 12.13, p. 403) 1. At Rest (Polarization) outside of neuron is positively charged compared to inside (sodium ions outside, chloride and

More information

لجنة الطب البشري رؤية تنير دروب تميزكم

لجنة الطب البشري رؤية تنير دروب تميزكم 1) Hyperpolarization phase of the action potential: a. is due to the opening of voltage-gated Cl channels. b. is due to prolonged opening of voltage-gated K + channels. c. is due to closure of the Na +

More information

CSD-TR R. Samade, B. Kogan

CSD-TR R. Samade, B. Kogan The properties of the cardiac cell mathematical model with a Markovian representation of potassium channel gating processes under high pacing rate (Computer simulation study) CSD-TR040007 R. Samade, B.

More information

Electric Potential. Electric field from plane of charge (Serway Example 24.5)

Electric Potential. Electric field from plane of charge (Serway Example 24.5) Physics Topics Electric Potential If necessary, review the following topics and relevant textbook sections from Serway / Jewett Physics for Scientists and Engineers, 9th Ed. Electric field from plane of

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

/639 Final Solutions, Part a) Equating the electrochemical potentials of H + and X on outside and inside: = RT ln H in

/639 Final Solutions, Part a) Equating the electrochemical potentials of H + and X on outside and inside: = RT ln H in 580.439/639 Final Solutions, 2014 Question 1 Part a) Equating the electrochemical potentials of H + and X on outside and inside: RT ln H out + zf 0 + RT ln X out = RT ln H in F 60 + RT ln X in 60 mv =

More information

Resting Membrane Potential

Resting Membrane Potential Resting Membrane Potential Fig. 12.09a,b Recording of Resting and It is recorded by cathode ray oscilloscope action potentials -70 0 mv + it is negative in polarized (resting, the membrane can be excited)

More information

LESSON 2.2 WORKBOOK How do our axons transmit electrical signals?

LESSON 2.2 WORKBOOK How do our axons transmit electrical signals? LESSON 2.2 WORKBOOK How do our axons transmit electrical signals? This lesson introduces you to the action potential, which is the process by which axons signal electrically. In this lesson you will learn

More information

MAE/MSE502 Partial Differential Equations in Engineering. Spring 2019 Mon/Wed 6:00-7:15 PM Classroom: CAVC 101

MAE/MSE502 Partial Differential Equations in Engineering. Spring 2019 Mon/Wed 6:00-7:15 PM Classroom: CAVC 101 MAE/MSE502 Partial Differential Equations in Engineering Spring 2019 Mon/Wed 6:00-7:15 PM Classroom: CAVC 101 Instructor: Huei-Ping Huang, hp.huang@asu.edu Office: ERC 359 Office hours: Monday 3-4 PM,

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

Qualitative Analysis of Tumor-Immune ODE System

Qualitative Analysis of Tumor-Immune ODE System of Tumor-Immune ODE System L.G. de Pillis and A.E. Radunskaya August 15, 2002 This work was supported in part by a grant from the W.M. Keck Foundation 0-0 QUALITATIVE ANALYSIS Overview 1. Simplified System

More information

arxiv: v1 [physics.bio-ph] 2 Jul 2008

arxiv: v1 [physics.bio-ph] 2 Jul 2008 Modeling Excitable Systems Jarrett L. Lancaster and Edward H. Hellen University of North Carolina Greensboro, Department of Physics and Astronomy, Greensboro, NC 27402 arxiv:0807.0451v1 [physics.bio-ph]

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

Simple Harmonic Motion

Simple Harmonic Motion Physics Topics Simple Harmonic Motion If necessary, review the following topics and relevant textbook sections from Serway / Jewett Physics for Scientists and Engineers, 9th Ed. Hooke s Law (Serway, Sec.

More information

Learning Cycle Linear Hybrid Automata for Excitable Cells

Learning Cycle Linear Hybrid Automata for Excitable Cells Learning Cycle Linear Hybrid Automata for Excitable Cells Sayan Mitra Joint work with Radu Grosu, Pei Ye, Emilia Entcheva, I V Ramakrishnan, and Scott Smolka HSCC 2007 Pisa, Italy Excitable Cells Outline

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

CS103 Handout 08 Spring 2012 April 20, 2012 Problem Set 3

CS103 Handout 08 Spring 2012 April 20, 2012 Problem Set 3 CS103 Handout 08 Spring 2012 April 20, 2012 Problem Set 3 This third problem set explores graphs, relations, functions, cardinalities, and the pigeonhole principle. This should be a great way to get a

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

Math 310 Introduction to Ordinary Differential Equations Final Examination August 9, Instructor: John Stockie

Math 310 Introduction to Ordinary Differential Equations Final Examination August 9, Instructor: John Stockie Make sure this exam has 15 pages. Math 310 Introduction to Ordinary Differential Equations inal Examination August 9, 2006 Instructor: John Stockie Name: (Please Print) Student Number: Special Instructions

More information

Politecnico di Milano. Characterization of delayed after-depolarization in extended FitzHugh-Nagumo models. Chiara Lelli

Politecnico di Milano. Characterization of delayed after-depolarization in extended FitzHugh-Nagumo models. Chiara Lelli Politecnico di Milano Dipartimento di Matematica F. Brioschi Dottorato in Modelli e Metodi Matematici per l Ingegneria - XXIV Ciclo Characterization of delayed after-depolarization in extended FitzHugh-Nagumo

More information

Algebra Year 10. Language

Algebra Year 10. Language Algebra Year 10 Introduction In Algebra we do Maths with numbers, but some of those numbers are not known. They are represented with letters, and called unknowns, variables or, most formally, literals.

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

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

Characterizing rate-dependent effects of state-specific sodium channel blockers using idealized models

Characterizing rate-dependent effects of state-specific sodium channel blockers using idealized models Characterizing rate-dependent effects of state-specific sodium channel blockers using idealized models Abstract Increased propensity for arrhythmias is a well-documented but not well understood side-effect

More information

The Physics of the Heart. Sima Setayeshgar

The Physics of the Heart. Sima Setayeshgar The Physics of the Heart Sima Setayeshgar Department of Physics Indiana University Indiana Unversity Physics REU Seminar: August 1, 2007 1 Stripes, Spots and Scrolls Indiana Unversity Physics REU Seminar:

More information

Peripheral Nerve II. Amelyn Ramos Rafael, MD. Anatomical considerations

Peripheral Nerve II. Amelyn Ramos Rafael, MD. Anatomical considerations Peripheral Nerve II Amelyn Ramos Rafael, MD Anatomical considerations 1 Physiologic properties of the nerve Irritability of the nerve A stimulus applied on the nerve causes the production of a nerve impulse,

More information

The Membrane Potential

The Membrane Potential The Membrane Potential Graphics are used with permission of: Pearson Education Inc., publishing as Benjamin Cummings (http://www.aw-bc.com) ** It is suggested that you carefully label each ion channel

More information

Man vet hvor en planet befinner seg om tolv år, fire måneder og ni dager. Men man vet ikke hvor en sommerfugl vil være fløyet hen om et minutt.

Man vet hvor en planet befinner seg om tolv år, fire måneder og ni dager. Men man vet ikke hvor en sommerfugl vil være fløyet hen om et minutt. Man vet hvor en planet befinner seg om tolv år, fire måneder og ni dager. Men man vet ikke hvor en sommerfugl vil være fløyet hen om et minutt. Jens Bjørneboe, Kruttårnet, 1969 i ii Preface This thesis

More information

Chapter 37 Active Reading Guide Neurons, Synapses, and Signaling

Chapter 37 Active Reading Guide Neurons, Synapses, and Signaling Name: AP Biology Mr. Croft Section 1 1. What is a neuron? Chapter 37 Active Reading Guide Neurons, Synapses, and Signaling 2. Neurons can be placed into three groups, based on their location and function.

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

LAB 3 - VELOCITY AND ACCELERATION

LAB 3 - VELOCITY AND ACCELERATION Name Date Partners L03-1 LAB 3 - VELOCITY AND ACCELERATION OBJECTIVES A cheetah can accelerate from 0 to 50 miles per hour in 6.4 seconds. Encyclopedia of the Animal World A Jaguar can accelerate from

More information

Computational Modeling for Physical Sciences

Computational Modeling for Physical Sciences Computational Modeling for Physical Sciences Since the invention of computers the use of computational modeling and simulations have revolutionized the way we study physical systems. Their applications

More information

Physics Fall Semester. Sections 1 5. Please find a seat. Keep all walkways free for safety reasons and to comply with the fire code.

Physics Fall Semester. Sections 1 5. Please find a seat. Keep all walkways free for safety reasons and to comply with the fire code. Physics 222 2018 Fall Semester Sections 1 5 Please find a seat. Keep all walkways free for safety reasons and to comply with the fire code. Electronic Devices Please separate your professional from your

More information

9.01 Introduction to Neuroscience Fall 2007

9.01 Introduction to Neuroscience Fall 2007 MIT OpenCourseWare http://ocw.mit.edu 9.01 Introduction to Neuroscience Fall 2007 For information about citing these materials or our Terms of Use, visit: http://ocw.mit.edu/terms. 9.01 Recitation (R02)

More information

Lab 3. Ohm s Law. Goals. Introduction

Lab 3. Ohm s Law. Goals. Introduction Lab 3. Ohm s Law Goals To underst Ohm s law, used to describe behavior of electrical conduction in many materials circuits. To calculate electrical power dissipated as heat. To underst use a rheostat,

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

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

Name Date Time to Complete

Name Date Time to Complete Name Date Time to Complete h m Partner Course/ Section / Grade Complex Circuits In this laboratory you will connect electric lamps together in a variety of circuits. The purpose of these exercises is to

More information

Classifying Mechanisms of Spiral Wave Breakup Underlying Cardiac Fibrillation Using Quantitative Metrics

Classifying Mechanisms of Spiral Wave Breakup Underlying Cardiac Fibrillation Using Quantitative Metrics Rochester Institute of Technology RIT Scholar Works Theses Thesis/Dissertation Collections 8--04 Classifying Mechanisms of Spiral Wave Breakup Underlying Cardiac Fibrillation Using Quantitative Metrics

More information

NE 204 mini-syllabus (weeks 4 8)

NE 204 mini-syllabus (weeks 4 8) NE 24 mini-syllabus (weeks 4 8) Instructor: John Burke O ce: MCS 238 e-mail: jb@math.bu.edu o ce hours: by appointment Overview: For the next few weeks, we will focus on mathematical models of single neurons.

More information

Problem Set Number 02, j/2.036j MIT (Fall 2018)

Problem Set Number 02, j/2.036j MIT (Fall 2018) Problem Set Number 0, 18.385j/.036j MIT (Fall 018) Rodolfo R. Rosales (MIT, Math. Dept., room -337, Cambridge, MA 0139) September 6, 018 Due October 4, 018. Turn it in (by 3PM) at the Math. Problem Set

More information

Periodic Behavior in Cardiac Tissue: Dynamics of Spatially Discordant Calcium Alternans

Periodic Behavior in Cardiac Tissue: Dynamics of Spatially Discordant Calcium Alternans University of Colorado, Boulder CU Scholar Applied Mathematics Graduate Theses & Dissertations Applied Mathematics Spring 1-1-213 Periodic Behavior in Cardiac Tissue: Dynamics of Spatially Discordant Calcium

More information

PCMI Project: Resetting Reentrant Excitation Oscillations in Different Geometries

PCMI Project: Resetting Reentrant Excitation Oscillations in Different Geometries PCMI Project: Resetting Reentrant Excitation Oscillations in Different Geometries Elizabeth Doman mentor: John Milton summer 2005 PCMI Project:Resetting Reentrant ExcitationOscillations in Different Geometries

More information