Cardiac Dynamics Due: 12/4 at 11:59 PM

Size: px
Start display at page:

Download "Cardiac Dynamics Due: 12/4 at 11:59 PM"

Transcription

1 Cardiac Dynamics Due: 12/4 at 11:59 PM 1 Mathematical and Biological Background Cardiac Arrythmia is a name for a large family of cardiac behavior that show abnormalilites in the electrical behavior of the heart. For instance, too fast or too slow heart beats can cause irregular activity and even death. Some arrythmias can exhibit little danger (such as heart palpitations) and some can result in sudden death (such as stroke or embolism). From a biological perspective, cardiac cells contract when the voltage across the cell membrane depolarizes the cell and stay contracted until repolarization. This change in voltage is created by the flux of several electrically charged ions passing through the membrane, such as sodium, calcium, potassium, etc. The flux of such ions through the membrane is controlled by several gates that open and close dynamically. d Figure 1: A typical action potential. Cardiac dynamics are typically modelled with a set of nonlinear ordinary differential equations (ODEs). These systems can get very large, and each equation can be very complicated. However, to capture certain behavior, one often works with very simple models. In our case, we ll be using a 2-variable model to study the behavior of the flux of voltage. In general, the functions involved in cardiac models (even 2-variable models) are very complicated and cannot be solved analytically. Therefore, the use of numerical solvers like ode45 in MATLAB are incredibly useful. 2 Problem Statement 2.1 The Model: The model we ll consider has a voltage variable v and a gating variable h: = kv(v a)(v 1) vh + stimulus, ( dh = ɛ 0 + µ ) 1h ( h kv(v a 1)), (1) v + µ 2 where k, a, ɛ 0, µ 1, and µ 2 are constant parameters. The stimulus parameter is discussed in the following section. We will investigate the case where k = 8, a = 0.15, ɛ 0 = 0.002, µ 1 = 0.2, and µ 2 = 0.3. (R. Aliev 1

2 and A. Panfilov. A simple two-variable model of cardiac excitation. Chaos, Solitons, and Fractals, 7(3), (1996).) In this model v represents the voltage across the cell membrane and h represents a gating variable. h can be thought of as a physical gate blocking or allowing current to pass: h = 0 means that the gate is open and voltage can pass freely if the cell is stimulated; h = 1 means the gate is closed and no voltage can pass. 2.2 Periodic Stimulation Cardiac cells need to be stimulated in order to function properly, and for a steady heart beat this stimulation must come periodically. This period is a parameter we will define as T. Thus, if we want one stimulation every 100 units of our time variable t, we set T = 100. Thus, in order to simulate realistic cardiac behavior, we must incorporate the stimulation period T. In the templates provided the following code does this: if (mod (t,t) >= 10.0) && (mod (t,t) <= 13.0) stim = 0.25; else stim = 0.0; end This will give enough of a push every T units of time to stimulate the cell. 2.3 Action Potential Duration One quantity of great interest and importance 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. In our case we choose v c = 0.1 to be the critical voltage at which we measure the beginning and end of an Action Potential. Mathematically, we calculate an APD as follows: APD beat = t down t up, (2) where t up is the time at which the voltage v passes v c on the way up and t down is the next time at which the voltage v passes v c on the way down. Figure 2: One action potential duration (APD). 2

3 3 Problem Exercises Two template.m-files are provided to help you with the programming portion of the lab. In order to run simulations, all you need to do is write the correct ODEs in the system template.m file and insert the correct parameters in the script template.m. Then, executing the script template.m file will run the simulation. However, it is up to you to figure out how to plot the data and do any further computations needed to complete the project. 3.1 Analytical Work 1. (For exercises 1-3 consider the system defined by the set of equations (1) with stimulus = 0 and the parameters above.) Show that (v, h) = (0, 0) is a fixed point of the system. Biologically this point corresponds to a resting state in which the cell is polarized and not contracted. Give a biological explanation as to why this point needs to be a stable fixed point rather than a unstable fixed point. 2. Near the fixed point (0, 0), we can approximate the behavior of the nonlinear system via the linear system of differential equations ( ) v = J(0, 0), dh h where J(v, h), the Jacobian, for a system of differential equations is a matrix given by = f(v, h), dh = g(v, h), f v J(v, h) = g g. (3) v h Use this approximation to the nonlinear system to determine the stability of the fixed point (0, 0). 3. Plot the nullclines of the system, putting v on the horizontal axis and h on the vertical axis. Include the direction of movement in each seperate region (i.e. is the flow north-west, north-east, south-west, or south-east). These arrows can be added by hand after plotting the nullclines, just make sure that your figure is neat. 4. Now suppose, from (v, h) = (0, 0), we add a large enough (positive) stimulus to the voltage (as in the stimulus code above). In what direction will the trajectory move initially? Just looking at the nullclines, what is the maximum value v will attain? 5. Again, plot the nullclines of the system as you did in exercise 3. This time, roughly draw in the trajectory starting at (v, h) = (0, 0) given a stimulus like the one described above. Is the flow clockwise or counter-clockwise? If no more stimuli are given, where will the particle end up as t? 3.2 Numerical Simulations 1. Using ode45 in MATLAB, simulate this system starting from an initial condition (v 0, h 0 ) = (0, 0) for t from 0 to 500 with a timestep of 0.2 and a stimulation period T = 100 (the timestep is already included in the provided template). For information regarding ode45, refer to the APPM 2460 webpage. Plot and label both v and h versus t in the same figure (for help on this, see Appendix B). Also, plot and label h versus v (v on the horizontal axis, h on the vertical). How does this last plot compare to the nullclines of the system? f h 3

4 2. Again, simulate the system from the same inital conditions, same timestep, and same stimulation period, but now for t from 0 to Calculate the APD of the last full beat using the calculation discussed in section 2.3. This APD corresponds to the steady-state APD. What is the steady-state APD for T = 100? (Do not plot anything.) 3. Repeat what you did in the previous problem for T = 90, 80, 70, 60, and 50. That is, find the steadystate APD for each different stimulation period T. For these values of T (including T = 100 as well), plot and label the steady-state APD versus stimulation period T. 4. Does the steady-state APD increase or decrease with T? What does this mean from a biological viewpoint? That is, heuristically, what is happening in the heart cell as it is stimulated more frequently? One important feature of cardiac tissue is that the APD must be a certain length in order for the organism to survive, especially for large animals like humans. Why is this important? 5. Again, simulate the system from the same inital conditions, same timestep, T = 100, and t from 0 to Calculate the minimum value of h between the last two beats (call this variable h). This is a local minima 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). This last h corresponds to the steady-state h. What is the steady-state h for T = 100? (Do not plot anything.) 6. Repeat what you did in (5) the previous problem for T = 90, 80, 70, 60, and 50. That is, find the steady-state h for each different stimulation period T. For these values of T (including T = 100 as well), plot and label the steady-state h versus stimulation period T. Does the steady-state h increase or decrease with T? 7. Finally, plot and label steady-state APD versus steady-state h. Does steady-state APD increase or decrease with steady-state h? Use this information to describe the role of the two variables and how they interact with each other. 4 Lab Report Your report needs to accurately and consistently describe the steps you took in checking the solutions of the partial differential equations and initial conditions. It should also contain the appropriate plots and in-depth explanation of the behavior of the solutions. This report should have the look and feel of a technical paper, NOT a worksheet with an introduction and conclusion attached! An outline is included below. 1. Your report should begin with an introduction. This should briefly describe what you plan to say in the body of your report. You should also provide a brief list of the mathematical concepts that you will use to make your arguments and perform your calculations. 2. The details of your work should be described in the body of your report. This should include at least everything listed in the Problem Exercises section. 3. Finally, you should summarize what you have accomplished in a conclusion. No new information or new results should appear in your conclusion. You should only review the highlights of what you wrote about in the body of your paper. Briefly, what were you investigating? What were the overall results? Do you have any suggestions to better analyze/describe the same problem which were not addressed in your current work? 4. Finally, you should include an appendix that contains any equations, code, etc. that does not flow well in the body. Remember, you can and probably should include figures in the body as long as it doesn t break up the flow. Remember: DO NOT NUMBER YOUR REPORT LIKE A HOMEWORK ASSIGNMENT. It should flow like a real-world report. See the Diff Eq Lab website (APPM 2460) for help on using ode45 in MATALB. Submit a.pdf of your lab report and any code used for this project to D2L by 11:59 pm on December 4. 4

5 A Turning MATLAB figures into images To turn a MATALB figure into an image (say, a.png file), go to file Save As, then choose the folder you would like to save the image in, choose the file type (e.g..png), then name your file (e.g. image1.png). This will save the image as a.png file named image1 in the folder you chose. B Plotting more than one curve in the same figure To do this, you need to utilize the hold on and hold off commands. Hold on allows you to keep plotting things on the same figure without deleting previous curves. Hold off turns this feature off. For instance, to plot both sin x and cos x on the same plot do the following: x = 0:pi/16:2*pi; figure(1); hold on; plot(x,sin(x), r- ); plot(x,cos(x), b-. ); legend( sin(x), cos(x) ); hold off; This yields the plot in 3. Note that (1) the third argument in the plot commands defines the kind of line Figure 3: Plotting sin x and cos x. that the curve will be plotted with (here sin x will be plotted in a red line and cos x will be plotted in a blue dotted-dashed line) and (2) the legend command labels the curves (it automatically keeps track of the order in which the curves were plotted, so you just need to list the labels in the same order you plotted the curves). 5

Lab 1: Simulation of Resting Membrane Potential and Action Potential

Lab 1: Simulation of Resting Membrane Potential and Action Potential Lab 1: Simulation of Resting Membrane Potential and Action Potential Overview The aim of the present laboratory exercise is to simulate how changes in the ion concentration or ionic conductance can change

More information

The mhr model is described by 30 ordinary differential equations (ODEs): one. ion concentrations and 23 equations describing channel gating.

The mhr model is described by 30 ordinary differential equations (ODEs): one. ion concentrations and 23 equations describing channel gating. On-line Supplement: Computer Modeling Chris Clausen, PhD and Ira S. Cohen, MD, PhD Computer models of canine ventricular action potentials The mhr model is described by 30 ordinary differential equations

More information

The Action Potential Graphics are used with permission of: adam.com (http://www.adam.com/) Benjamin Cummings Publishing Co (http://www.awl.

The Action Potential Graphics are used with permission of: adam.com (http://www.adam.com/) Benjamin Cummings Publishing Co (http://www.awl. The Action Potential Graphics are used with permission of: adam.com (http://www.adam.com/) Benjamin Cummings Publishing Co (http://www.awl.com/bc) ** If this is not printed in color, it is suggested you

More information

MatLab - Systems of Differential Equations

MatLab - Systems of Differential Equations Fall 2015 Math 337 MatLab - Systems of Differential Equations This section examines systems of differential equations. It goes through the key steps of solving systems of differential equations through

More information

Tutorial on Using Excel Solver to Analyze Spin-Lattice Relaxation Time Data

Tutorial on Using Excel Solver to Analyze Spin-Lattice Relaxation Time Data Tutorial on Using Excel Solver to Analyze Spin-Lattice Relaxation Time Data In the measurement of the Spin-Lattice Relaxation time T 1, a 180 o pulse is followed after a delay time of t with a 90 o pulse,

More information

FRICTION, WORK, AND THE INCLINED PLANE

FRICTION, WORK, AND THE INCLINED PLANE FRICTION, WORK, AND THE INCLINED PLANE Objective: To measure the coefficient of static and inetic friction between a bloc and an inclined plane and to examine the relationship between the plane s angle

More information

Lab 6: Bifurcation diagram: stopping spiking neurons with a single pulse

Lab 6: Bifurcation diagram: stopping spiking neurons with a single pulse Lab 6: Bifurcation diagram: stopping spiking neurons with a single pulse The qualitative behaviors of a dynamical system can change when parameters are changed. For example, a stable fixed-point can become

More information

Physics 42 Lab 4 Fall 2012 Cathode Ray Tube (CRT)

Physics 42 Lab 4 Fall 2012 Cathode Ray Tube (CRT) Physics 42 Lab 4 Fall 202 Cathode Ray Tube (CRT) PRE-LAB Read the background information in the lab below and then derive this formula for the deflection. D = LPV defl 2 SV accel () Redraw the diagram

More information

FORCE ON A CURRENT IN A MAGNETIC FIELD

FORCE ON A CURRENT IN A MAGNETIC FIELD 7/16 Force current 1/8 FORCE ON A CURRENT IN A MAGNETIC FIELD PURPOSE: To study the force exerted on an electric current by a magnetic field. BACKGROUND: When an electric charge moves with a velocity v

More information

Nonlinear Systems of Ordinary Differential Equations

Nonlinear Systems of Ordinary Differential Equations Differential Equations Massoud Malek Nonlinear Systems of Ordinary Differential Equations Dynamical System. A dynamical system has a state determined by a collection of real numbers, or more generally

More information

ACCELERATION DUE TO GRAVITY

ACCELERATION DUE TO GRAVITY EXPERIMENT 1 PHYSICS 107 ACCELERATION DUE TO GRAVITY Skills you will learn or practice: Calculate velocity and acceleration from experimental measurements of x vs t (spark positions) Find average velocities

More information

Lecture 2 Mathcad Basics

Lecture 2 Mathcad Basics Operators Lecture 2 Mathcad Basics + Addition, - Subtraction, * Multiplication, / Division, ^ Power ( ) Specify evaluation order Order of Operations ( ) ^ highest level, first priority * / next priority

More information

Scientific Programming

Scientific Programming 1 The wave equation Scientific Programming Wave Equation The wave equation describes how waves propagate: light waves, sound waves, oscillating strings, wave in a pond,... Suppose that the function h(x,t)

More information

0 Introduction to Data Analysis Using an Excel Spreadsheet

0 Introduction to Data Analysis Using an Excel Spreadsheet Experiment 0 Introduction to Data Analysis Using an Excel Spreadsheet I. Purpose The purpose of this introductory lab is to teach you a few basic things about how to use an EXCEL 2010 spreadsheet to do

More information

Chapter 1 Dissolved Oxygen in the Blood

Chapter 1 Dissolved Oxygen in the Blood Chapter 1 Dissolved Oxygen in the Blood Say we have a volume of blood, which we ll represent as a beaker of fluid. Now let s include oxygen in the gas above the blood (represented by the green circles).

More information

Monitoring EKG. Evaluation copy

Monitoring EKG. Evaluation copy Monitoring EKG Computer 28 An electrocardiogram, or EKG, is a graphical recording of the electrical events occurring within the heart. A typical EKG tracing consists of five identifiable deflections. Each

More information

Updates to Graphing with Excel

Updates to Graphing with Excel Updates to Graphing with Excel NCC has recently upgraded to a new version of the Microsoft Office suite of programs. As such, many of the directions in the Biology Student Handbook for how to graph with

More information

This activity will show you how to draw graphs of algebraic functions in Excel.

This activity will show you how to draw graphs of algebraic functions in Excel. This activity will show you how to draw graphs of algebraic functions in Excel. Open a new Excel workbook. This is Excel in Office 2007. You may not have used this version before but it is very much the

More information

What is a piper plot?

What is a piper plot? What is a piper plot? A piper plot is a way of visualizing the chemistry of a rock, soil, or water sample. It s comprised of three pieces: a ternary diagram in the lower left representing the cations,

More information

Chapter 28 Fluid Dynamics

Chapter 28 Fluid Dynamics Chapter 28 Fluid Dynamics 28.1 Ideal Fluids... 1 28.2 Velocity Vector Field... 1 28.3 Mass Continuity Equation... 3 28.4 Bernoulli s Principle... 4 28.5 Worked Examples: Bernoulli s Equation... 7 Example

More information

Beginner s Matlab Tutorial

Beginner s Matlab Tutorial Christopher Lum lum@u.washington.edu Introduction Beginner s Matlab Tutorial This document is designed to act as a tutorial for an individual who has had no prior experience with Matlab. For any questions

More information

The purposes of this experiment are to test Faraday's Law qualitatively and to test Lenz's Law.

The purposes of this experiment are to test Faraday's Law qualitatively and to test Lenz's Law. 260 17-1 I. THEORY EXPERIMENT 17 QUALITATIVE STUDY OF INDUCED EMF Along the extended central axis of a bar magnet, the magnetic field vector B r, on the side nearer the North pole, points away from this

More information

CHAPTER XV PDL 101 HUMAN ANATOMY & PHYSIOLOGY. Ms. K. GOWRI. M.Pharm., Lecturer.

CHAPTER XV PDL 101 HUMAN ANATOMY & PHYSIOLOGY. Ms. K. GOWRI. M.Pharm., Lecturer. CHAPTER XV PDL 101 HUMAN ANATOMY & PHYSIOLOGY Ms. K. GOWRI. M.Pharm., Lecturer. Types of Muscle Tissue Classified by location, appearance, and by the type of nervous system control or innervation. Skeletal

More information

Simulation of an Action Potential using the Hodgkin-Huxley Model in Python. Nathan Law 250560559. Medical Biophysics 3970

Simulation of an Action Potential using the Hodgkin-Huxley Model in Python. Nathan Law 250560559. Medical Biophysics 3970 Simulation of an Action Potential using the Hodgkin-Huxley Model in Python Nathan Law 250560559 Medical Biophysics 3970 Instructor: Dr. Ian MacDonald TA: Nathaniel Hayward Project Supervisor: Dr. Andrea

More information

Eigenvalues, Eigenvectors, and Differential Equations

Eigenvalues, Eigenvectors, and Differential Equations Eigenvalues, Eigenvectors, and Differential Equations William Cherry April 009 (with a typo correction in November 05) The concepts of eigenvalue and eigenvector occur throughout advanced mathematics They

More information

Curve Fitting, Loglog Plots, and Semilog Plots 1

Curve Fitting, Loglog Plots, and Semilog Plots 1 Curve Fitting, Loglog Plots, and Semilog Plots 1 In this MATLAB exercise, you will learn how to plot data and how to fit lines to your data. Suppose you are measuring the height h of a seedling as it grows.

More information

Tutorial 2: Using Excel in Data Analysis

Tutorial 2: Using Excel in Data Analysis Tutorial 2: Using Excel in Data Analysis This tutorial guide addresses several issues particularly relevant in the context of the level 1 Physics lab sessions at Durham: organising your work sheet neatly,

More information

Activity 5: The Action Potential: Measuring Its Absolute and Relative Refractory Periods. 250 20 Yes. 125 20 Yes. 60 20 No. 60 25 No.

Activity 5: The Action Potential: Measuring Its Absolute and Relative Refractory Periods. 250 20 Yes. 125 20 Yes. 60 20 No. 60 25 No. 3: Neurophysiology of Nerve Impulses (Part 2) Activity 5: The Action Potential: Measuring Its Absolute and Relative Refractory Periods Interval between stimuli Stimulus voltage (mv) Second action potential?

More information

Getting Started with Excel 2008. Table of Contents

Getting Started with Excel 2008. Table of Contents Table of Contents Elements of An Excel Document... 2 Resizing and Hiding Columns and Rows... 3 Using Panes to Create Spreadsheet Headers... 3 Using the AutoFill Command... 4 Using AutoFill for Sequences...

More information

This means there are two equilibrium solutions 0 and K. dx = rx(1 x). x(1 x) dt = r

This means there are two equilibrium solutions 0 and K. dx = rx(1 x). x(1 x) dt = r Verhulst Model For Population Growth The first model (t) = r is not that realistic as it either led to a population eplosion or to etinction. This simple model was improved on by building into this differential

More information

BIOE 370 1. Lotka-Volterra Model L-V model with density-dependent prey population growth

BIOE 370 1. Lotka-Volterra Model L-V model with density-dependent prey population growth BIOE 370 1 Populus Simulations of Predator-Prey Population Dynamics. Lotka-Volterra Model L-V model with density-dependent prey population growth Theta-Logistic Model Effects on dynamics of different functional

More information

SYSTEMS OF EQUATIONS AND MATRICES WITH THE TI-89. by Joseph Collison

SYSTEMS OF EQUATIONS AND MATRICES WITH THE TI-89. by Joseph Collison SYSTEMS OF EQUATIONS AND MATRICES WITH THE TI-89 by Joseph Collison Copyright 2000 by Joseph Collison All rights reserved Reproduction or translation of any part of this work beyond that permitted by Sections

More information

EXCEL PREREQUISITES SOLVING TIME VALUE OF MONEY PROBLEMS IN EXCEL

EXCEL PREREQUISITES SOLVING TIME VALUE OF MONEY PROBLEMS IN EXCEL CHAPTER 3 Smart Excel Appendix Use the Smart Excel spreadsheets and animated tutorials at the Smart Finance section of http://www.cengage.co.uk/megginson. Appendix Contents Excel prerequisites Creating

More information

PLOTTING DATA AND INTERPRETING GRAPHS

PLOTTING DATA AND INTERPRETING GRAPHS PLOTTING DATA AND INTERPRETING GRAPHS Fundamentals of Graphing One of the most important sets of skills in science and mathematics is the ability to construct graphs and to interpret the information they

More information

Linear functions Increasing Linear Functions. Decreasing Linear Functions

Linear functions Increasing Linear Functions. Decreasing Linear Functions 3.5 Increasing, Decreasing, Max, and Min So far we have been describing graphs using quantitative information. That s just a fancy way to say that we ve been using numbers. Specifically, we have described

More information

The Time Constant of an RC Circuit

The Time Constant of an RC Circuit The Time Constant of an RC Circuit 1 Objectives 1. To determine the time constant of an RC Circuit, and 2. To determine the capacitance of an unknown capacitor. 2 Introduction What the heck is a capacitor?

More information

Your Name: Section: 36-201 INTRODUCTION TO STATISTICAL REASONING Computer Lab Exercise #5 Analysis of Time of Death Data for Soldiers in Vietnam

Your Name: Section: 36-201 INTRODUCTION TO STATISTICAL REASONING Computer Lab Exercise #5 Analysis of Time of Death Data for Soldiers in Vietnam Your Name: Section: 36-201 INTRODUCTION TO STATISTICAL REASONING Computer Lab Exercise #5 Analysis of Time of Death Data for Soldiers in Vietnam Objectives: 1. To use exploratory data analysis to investigate

More information

Linear and quadratic Taylor polynomials for functions of several variables.

Linear and quadratic Taylor polynomials for functions of several variables. ams/econ 11b supplementary notes ucsc Linear quadratic Taylor polynomials for functions of several variables. c 010, Yonatan Katznelson Finding the extreme (minimum or maximum) values of a function, is

More information

3.2 Sources, Sinks, Saddles, and Spirals

3.2 Sources, Sinks, Saddles, and Spirals 3.2. Sources, Sinks, Saddles, and Spirals 6 3.2 Sources, Sinks, Saddles, and Spirals The pictures in this section show solutions to Ay 00 C By 0 C Cy D 0. These are linear equations with constant coefficients

More information

Electromagnetic Induction Experiment

Electromagnetic Induction Experiment In this experiment, the activity will be based on a Phet simulation called Faraday s Electromagnetic Lab, created by a group at the University of Colorado at Boulder. This group has a number of good simulations

More information

University of Saskatchewan Department of Economics Economics 414.3 Homework #1

University of Saskatchewan Department of Economics Economics 414.3 Homework #1 Homework #1 1. In 1900 GDP per capita in Japan (measured in 2000 dollars) was $1,433. In 2000 it was $26,375. (a) Calculate the growth rate of income per capita in Japan over this century. (b) Now suppose

More information

Nerves and Nerve Impulse

Nerves and Nerve Impulse Nerves and Nerve Impulse Terms Absolute refractory period: Period following stimulation during which no additional action potential can be evoked. Acetylcholine: Chemical transmitter substance released

More information

Cell Transport and Plasma Membrane Structure

Cell Transport and Plasma Membrane Structure Cell Transport and Plasma Membrane Structure POGIL Guided Inquiry Learning Targets Explain the importance of the plasma membrane. Compare and contrast different types of passive transport. Explain how

More information

Introduction to Netlogo: A Newton s Law of Gravity Simulation

Introduction to Netlogo: A Newton s Law of Gravity Simulation Introduction to Netlogo: A Newton s Law of Gravity Simulation Purpose Netlogo is an agent-based programming language that provides an all-inclusive platform for writing code, having graphics, and leaving

More information

Experiment 1A: Excel Graphing Exercise

Experiment 1A: Excel Graphing Exercise Physics 210 Lab Manual Page 1-1 Experiment 1A: Excel Graphing Exercise The data for this exercise comes from measuring the time for a simple pendulum to swing back and forth 20 times as a function of the

More information

Action Potentials I Generation. Reading: BCP Chapter 4

Action Potentials I Generation. Reading: BCP Chapter 4 Action Potentials I Generation Reading: BCP Chapter 4 Action Potentials Action potentials (AP s) aka Spikes (because of how they look in an electrical recording of Vm over time). Discharges (descriptive

More information

Mixing Warm and Cold Water

Mixing Warm and Cold Water Mixing Warm and Cold Water A Continuing Investigation of Thermal Pollution By Kevin White 1 Context: This lesson is intended for students conducting an ongoing study of thermal pollution. Perhaps, students

More information

Austin Peay State University Department of Chemistry Chem 1111. The Use of the Spectrophotometer and Beer's Law

Austin Peay State University Department of Chemistry Chem 1111. The Use of the Spectrophotometer and Beer's Law Purpose To become familiar with using a spectrophotometer and gain an understanding of Beer s law and it s relationship to solution concentration. Introduction Scientists use many methods to determine

More information

Relationships Between Two Variables: Scatterplots and Correlation

Relationships Between Two Variables: Scatterplots and Correlation Relationships Between Two Variables: Scatterplots and Correlation Example: Consider the population of cars manufactured in the U.S. What is the relationship (1) between engine size and horsepower? (2)

More information

Introduction to MATLAB IAP 2008

Introduction to MATLAB IAP 2008 MIT OpenCourseWare http://ocw.mit.edu Introduction to MATLAB IAP 2008 For information about citing these materials or our Terms of Use, visit: http://ocw.mit.edu/terms. Introduction to Matlab Ideas for

More information

Curve Fitting in Microsoft Excel By William Lee

Curve Fitting in Microsoft Excel By William Lee Curve Fitting in Microsoft Excel By William Lee This document is here to guide you through the steps needed to do curve fitting in Microsoft Excel using the least-squares method. In mathematical equations

More information

1. Explain what causes the liquidity preference money (LM) curve to shift and why.

1. Explain what causes the liquidity preference money (LM) curve to shift and why. Chapter 22. IS-LM in Action C H A P T E R O B J E C T I V E S By the end of this chapter, students should be able to: 1. Explain what causes the liquidity preference money (LM) curve to shift and why.

More information

How to Make the Most of Excel Spreadsheets

How to Make the Most of Excel Spreadsheets How to Make the Most of Excel Spreadsheets Analyzing data is often easier when it s in an Excel spreadsheet rather than a PDF for example, you can filter to view just a particular grade, sort to view which

More information

Autonomous Equations / Stability of Equilibrium Solutions. y = f (y).

Autonomous Equations / Stability of Equilibrium Solutions. y = f (y). Autonomous Equations / Stabilit of Equilibrium Solutions First order autonomous equations, Equilibrium solutions, Stabilit, Longterm behavior of solutions, direction fields, Population dnamics and logistic

More information

Scientific Graphing in Excel 2010

Scientific Graphing in Excel 2010 Scientific Graphing in Excel 2010 When you start Excel, you will see the screen below. Various parts of the display are labelled in red, with arrows, to define the terms used in the remainder of this overview.

More information

Cellular Calcium Dynamics. Jussi Koivumäki, Glenn Lines & Joakim Sundnes

Cellular Calcium Dynamics. Jussi Koivumäki, Glenn Lines & Joakim Sundnes Cellular Calcium Dynamics Jussi Koivumäki, Glenn Lines & Joakim Sundnes Cellular calcium dynamics A real cardiomyocyte is obviously not an empty cylinder, where Ca 2+ just diffuses freely......instead

More information

Excel Budget Homework

Excel Budget Homework Excel Budget Homework CSE 3, Fall 2009 Due at the BEGINNING of your next lab. A. Annual Budget One of the most common uses of a spreadsheet is to chart financial information. We are going to create an

More information

UNITED STATES PATENT AND TRADEMARK OFFICE BEFORE THE PATENT TRIAL AND APPEAL BOARD. Ex parte VINOD SHARMA and DANIEL C. SIGG

UNITED STATES PATENT AND TRADEMARK OFFICE BEFORE THE PATENT TRIAL AND APPEAL BOARD. Ex parte VINOD SHARMA and DANIEL C. SIGG UNITED STATES PATENT AND TRADEMARK OFFICE BEFORE THE PATENT TRIAL AND APPEAL BOARD Ex parte VINOD SHARMA and DANIEL C. SIGG Appeal 2012-000284 Technology Center 1600 Before ERIC GRIMES, FRANCISCO C. PRATS,

More information

Appendix C. Vernier Tutorial

Appendix C. Vernier Tutorial C-1. Vernier Tutorial Introduction: In this lab course, you will collect, analyze and interpret data. The purpose of this tutorial is to teach you how to use the Vernier System to collect and transfer

More information

Years after 2000. US Student to Teacher Ratio 0 16.048 1 15.893 2 15.900 3 15.900 4 15.800 5 15.657 6 15.540

Years after 2000. US Student to Teacher Ratio 0 16.048 1 15.893 2 15.900 3 15.900 4 15.800 5 15.657 6 15.540 To complete this technology assignment, you should already have created a scatter plot for your data on your calculator and/or in Excel. You could do this with any two columns of data, but for demonstration

More information

PART I: Neurons and the Nerve Impulse

PART I: Neurons and the Nerve Impulse PART I: Neurons and the Nerve Impulse Identify each of the labeled structures of the neuron below. A. B. C. D. E. F. G. Identify each of the labeled structures of the neuron below. A. dendrites B. nucleus

More information

ITS Training Class Charts and PivotTables Using Excel 2007

ITS Training Class Charts and PivotTables Using Excel 2007 When you have a large amount of data and you need to get summary information and graph it, the PivotTable and PivotChart tools in Microsoft Excel will be the answer. The data does not need to be in one

More information

Reading assignment: All students should read the Appendix about using oscilloscopes.

Reading assignment: All students should read the Appendix about using oscilloscopes. 10. A ircuits* Objective: To learn how to analyze current and voltage relationships in alternating current (a.c.) circuits. You will use the method of phasors, or the vector addition of rotating vectors

More information

Intermediate PowerPoint

Intermediate PowerPoint Intermediate PowerPoint Charts and Templates By: Jim Waddell Last modified: January 2002 Topics to be covered: Creating Charts 2 Creating the chart. 2 Line Charts and Scatter Plots 4 Making a Line Chart.

More information

Let s first see how precession works in quantitative detail. The system is illustrated below: ...

Let s first see how precession works in quantitative detail. The system is illustrated below: ... lecture 20 Topics: Precession of tops Nutation Vectors in the body frame The free symmetric top in the body frame Euler s equations The free symmetric top ala Euler s The tennis racket theorem As you know,

More information

GENERAL SCIENCE LABORATORY 1110L Lab Experiment 6: Ohm s Law

GENERAL SCIENCE LABORATORY 1110L Lab Experiment 6: Ohm s Law GENERAL SCIENCE LABORATORY 1110L Lab Experiment 6: Ohm s Law OBJECTIVES: To verify Ohm s law, the mathematical relationship among current, voltage or potential difference, and resistance, in a simple circuit.

More information

@ MAXSTOR=1000000. 1 Note that it s tempting to use the auxiliary variables representing loga, logb or logc since, as we noted last time,

@ MAXSTOR=1000000. 1 Note that it s tempting to use the auxiliary variables representing loga, logb or logc since, as we noted last time, Bifurcation Analysis with AUTO Marc R. Roussel May 20, 2004 In this lecture, we will learn how to do a bifurcation analysis with the computer program AUTO. AUTO is built into xppaut, which is where the

More information

Calc Guide Chapter 9 Data Analysis

Calc Guide Chapter 9 Data Analysis Calc Guide Chapter 9 Data Analysis Using Scenarios, Goal Seek, Solver, others Copyright This document is Copyright 2007 2011 by its contributors as listed below. You may distribute it and/or modify it

More information

The Force Table Vector Addition and Resolution

The Force Table Vector Addition and Resolution Name School Date The Force Table Vector Addition and Resolution Vectors? I don't have any vectors, I'm just a kid. From Flight of the Navigator Explore the Apparatus/Theory We ll use the Force Table Apparatus

More information

Dynamical Systems Analysis II: Evaluating Stability, Eigenvalues

Dynamical Systems Analysis II: Evaluating Stability, Eigenvalues Dynamical Systems Analysis II: Evaluating Stability, Eigenvalues By Peter Woolf pwoolf@umich.edu) University of Michigan Michigan Chemical Process Dynamics and Controls Open Textbook version 1.0 Creative

More information

Experiment 2: Conservation of Momentum

Experiment 2: Conservation of Momentum Experiment 2: Conservation of Momentum Learning Goals After you finish this lab, you will be able to: 1. Use Logger Pro to analyze video and calculate position, velocity, and acceleration. 2. Use the equations

More information

ADVANCED COMPUTATIONAL TOOLS FOR EDUCATION IN CHEMICAL AND BIOMEDICAL ENGINEERING ANALYSIS

ADVANCED COMPUTATIONAL TOOLS FOR EDUCATION IN CHEMICAL AND BIOMEDICAL ENGINEERING ANALYSIS ADVANCED COMPUTATIONAL TOOLS FOR EDUCATION IN CHEMICAL AND BIOMEDICAL ENGINEERING ANALYSIS Proposal for the FSU Student Technology Fee Proposal Program Submitted by Department of Chemical and Biomedical

More information

Inductors. Resources and methods for learning about these subjects (list a few here, in preparation for your research):

Inductors. Resources and methods for learning about these subjects (list a few here, in preparation for your research): Inductors This worksheet and all related files are licensed under the Creative Commons Attribution License, version 1.0. To view a copy of this license, visit http://creativecommons.org/licenses/by/1.0/,

More information

Spectrophotometry and the Beer-Lambert Law: An Important Analytical Technique in Chemistry

Spectrophotometry and the Beer-Lambert Law: An Important Analytical Technique in Chemistry Spectrophotometry and the Beer-Lambert Law: An Important Analytical Technique in Chemistry Jon H. Hardesty, PhD and Bassam Attili, PhD Collin College Department of Chemistry Introduction: In the last lab

More information

Fuel Cell Characterization Lab

Fuel Cell Characterization Lab SJSU E 10 Introduction to Engineering Fuel Cell Characterization Lab What is a Fuel Cell? Before we answer that question, let s first review the process of electrolysis. In the process of electrolysis,

More information

Cell Membrane & Tonicity Worksheet

Cell Membrane & Tonicity Worksheet NAME ANSWER KEY DATE PERIOD Cell Membrane & Tonicity Worksheet Composition of the Cell Membrane & Functions The cell membrane is also called the PLASMA membrane and is made of a phospholipid BI-LAYER.

More information

ω h (t) = Ae t/τ. (3) + 1 = 0 τ =.

ω h (t) = Ae t/τ. (3) + 1 = 0 τ =. MASSACHUSETTS INSTITUTE OF TECHNOLOGY Department of Mechanical Engineering 2.004 Dynamics and Control II Fall 2007 Lecture 2 Solving the Equation of Motion Goals for today Modeling of the 2.004 La s rotational

More information

Mechanics 1: Conservation of Energy and Momentum

Mechanics 1: Conservation of Energy and Momentum Mechanics : Conservation of Energy and Momentum If a certain quantity associated with a system does not change in time. We say that it is conserved, and the system possesses a conservation law. Conservation

More information

SERIES-PARALLEL DC CIRCUITS

SERIES-PARALLEL DC CIRCUITS Name: Date: Course and Section: Instructor: EXPERIMENT 1 SERIES-PARALLEL DC CIRCUITS OBJECTIVES 1. Test the theoretical analysis of series-parallel networks through direct measurements. 2. Improve skills

More information

Excel Basics By Tom Peters & Laura Spielman

Excel Basics By Tom Peters & Laura Spielman Excel Basics By Tom Peters & Laura Spielman What is Excel? Microsoft Excel is a software program with spreadsheet format enabling the user to organize raw data, make tables and charts, graph and model

More information

Magnetic Fields and Their Effects

Magnetic Fields and Their Effects Name Date Time to Complete h m Partner Course/ Section / Grade Magnetic Fields and Their Effects This experiment is intended to give you some hands-on experience with the effects of, and in some cases

More information

Name Partners Date. Energy Diagrams I

Name Partners Date. Energy Diagrams I Name Partners Date Visual Quantum Mechanics The Next Generation Energy Diagrams I Goal Changes in energy are a good way to describe an object s motion. Here you will construct energy diagrams for a toy

More information

MIME 3330 Mechanics Laboratory LAB 5: ROTATING BENDING FATIGUE

MIME 3330 Mechanics Laboratory LAB 5: ROTATING BENDING FATIGUE MIME 3330 Mechanics Laboratory LAB 5: ROTATING BENDING FATIGUE Introduction In this experiment, the finite life fatigue behavior of a smooth cylindrical specimen as shown in Figure 1 will be studied in

More information

Lab: Graphing Activities TOTTEN

Lab: Graphing Activities TOTTEN Name: Class: Date Completed: Lab Minutes: Lab: Graphing Activities TOTTEN SCIENCE Introduction Graphing is used by scientists to display the data that is collected during a controlled experiment. A line

More information

Evaluation copy. Analyzing the Heart with EKG. Computer

Evaluation copy. Analyzing the Heart with EKG. Computer Analyzing the Heart with EKG Computer An electrocardiogram (ECG or EKG) is a graphical recording of the electrical events occurring within the heart. In a healthy heart there is a natural pacemaker in

More information

Chapter 2. Software: (preview draft) Getting Started with Stella and Vensim

Chapter 2. Software: (preview draft) Getting Started with Stella and Vensim Chapter. Software: (preview draft) Getting Started with Stella and Vensim Stella and Vensim are icon-based programs to support the construction and testing of system dynamics models. I use these programs

More information

Solutions to Practice Problems for Test 4

Solutions to Practice Problems for Test 4 olutions to Practice Problems for Test 4 1. Let be the line segmentfrom the point (, 1, 1) to the point (,, 3). Evaluate the line integral y ds. Answer: First, we parametrize the line segment from (, 1,

More information

Lab 3: Introduction to Data Acquisition Cards

Lab 3: Introduction to Data Acquisition Cards Lab 3: Introduction to Data Acquisition Cards INTRODUCTION: In this lab, you will be building a VI to display the input measured on a channel. However, within your own VI you will use LabVIEW supplied

More information

Parallel Plate Capacitor

Parallel Plate Capacitor Parallel Plate Capacitor Capacitor Charge, Plate Separation, and Voltage A capacitor is used to store electric charge. The more voltage (electrical pressure) you apply to the capacitor, the more charge

More information

Rotation: Moment of Inertia and Torque

Rotation: Moment of Inertia and Torque Rotation: Moment of Inertia and Torque Every time we push a door open or tighten a bolt using a wrench, we apply a force that results in a rotational motion about a fixed axis. Through experience we learn

More information

Assignment 2: Option Pricing and the Black-Scholes formula The University of British Columbia Science One CS 2015-2016 Instructor: Michael Gelbart

Assignment 2: Option Pricing and the Black-Scholes formula The University of British Columbia Science One CS 2015-2016 Instructor: Michael Gelbart Assignment 2: Option Pricing and the Black-Scholes formula The University of British Columbia Science One CS 2015-2016 Instructor: Michael Gelbart Overview Due Thursday, November 12th at 11:59pm Last updated

More information

Lab 3 - DC Circuits and Ohm s Law

Lab 3 - DC Circuits and Ohm s Law Lab 3 DC Circuits and Ohm s Law L3-1 Name Date Partners Lab 3 - DC Circuits and Ohm s Law OBJECTIES To learn to apply the concept of potential difference (voltage) to explain the action of a battery in

More information

The Circumference Function

The Circumference Function 2 Geometry You have permission to make copies of this document for your classroom use only. You may not distribute, copy or otherwise reproduce any part of this document or the lessons contained herein

More information

MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question.

MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. Exam Name MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. 1) What term is used to refer to the process of electrical discharge and the flow of electrical

More information

Activity 4.2.3: EKG. Introduction. Equipment. Procedure

Activity 4.2.3: EKG. Introduction. Equipment. Procedure Activity 4.2.3: EKG The following is used with permission of Vernier Software and Technology. This activity is based on the experiment Analyzing the Heart with EKG from the book Human Physiology with Vernier,

More information

Activity 6 Graphing Linear Equations

Activity 6 Graphing Linear Equations Activity 6 Graphing Linear Equations TEACHER NOTES Topic Area: Algebra NCTM Standard: Represent and analyze mathematical situations and structures using algebraic symbols Objective: The student will be

More information

BIOL 305L Laboratory Two

BIOL 305L Laboratory Two Please print Full name clearly: Introduction BIOL 305L Laboratory Two Osmosis, because it is different in plants! Osmosis is the movement of solvent molecules through a selectively permeable membrane into

More information

A Determination of g, the Acceleration Due to Gravity, from Newton's Laws of Motion

A Determination of g, the Acceleration Due to Gravity, from Newton's Laws of Motion A Determination of g, the Acceleration Due to Gravity, from Newton's Laws of Motion Objective In the experiment you will determine the cart acceleration, a, and the friction force, f, experimentally for

More information

Part 1 Expressions, Equations, and Inequalities: Simplifying and Solving

Part 1 Expressions, Equations, and Inequalities: Simplifying and Solving Section 7 Algebraic Manipulations and Solving Part 1 Expressions, Equations, and Inequalities: Simplifying and Solving Before launching into the mathematics, let s take a moment to talk about the words

More information

N 1. (q k+1 q k ) 2 + α 3. k=0

N 1. (q k+1 q k ) 2 + α 3. k=0 Teoretisk Fysik Hand-in problem B, SI1142, Spring 2010 In 1955 Fermi, Pasta and Ulam 1 numerically studied a simple model for a one dimensional chain of non-linear oscillators to see how the energy distribution

More information