numerical methods
play

Numerical Methods Accuracy, stability, speed Robert A. McDougal - PowerPoint PPT Presentation

Numerical Methods Accuracy, stability, speed Robert A. McDougal Yale School of Medicine 9 August 2018 Hodgkin and Huxley: squid giant axon experiments Adapted from Pearson Education 2009. Top: Alan Lloyd Hodgkin; Bottom: Andrew Fielding


  1. Numerical Methods Accuracy, stability, speed Robert A. McDougal Yale School of Medicine 9 August 2018

  2. Hodgkin and Huxley: squid giant axon experiments Adapted from Pearson Education 2009. Top: Alan Lloyd Hodgkin; Bottom: Andrew Fielding Huxley. Images from Wikipedia.

  3. Hodgkin and Huxley equations C dV g Na m 3 h ( V − E Na ) + g K n 4 ( V − E K ) + g ℓ ( V − E ℓ ) � � dt = − dm dt = α m ( V )(1 − m ) − β m ( V ) m dh dt = α h ( V )(1 − h ) − β h ( V ) h dn dt = α n ( V )(1 − n ) − β n ( V ) n Top: Alan Lloyd Hodgkin; Bottom: Andrew Fielding Huxley. Images from Wikipedia. Adapted from Hodgkin and Huxley 1952.

  4. What does it mean? Electronics 101

  5. Current Current is the movement of charge. In electronics, current is carried by the movement of electrons. In neurons, current flows across the membrane by the movement of ions. These ions can be positively or negatively charged. K + Na + Ca ++ Cl -

  6. Resistors = Conductors A resistor is a material that impedes current flow. This includes essentially all materials. For those materials obeying Ohm’s law , v = IR where v is the voltage drop across the resistor, I is the current, and R is the resistance (this may be constant or a function of time). This may alternatively be written as I = gV where g = 1 / R is the conductance . Ion channels Ion channels allow current to pass in the form of moving ions. They are therefore resistors. The resistance varies over time.

  7. Capacitors A capacitor accumulates charge according to CV = Q where Q is the charge, V is the potential, and C is the capacitance. The capacitive current is the rate at which charge is being stored on the current, dQ / dt . Thus differentiating both sides of the above, we find C dV dt = dQ dt = I . Cell membrane Charged ions accumulate along a neuron’s membrane. It is therefore a capacitor.

  8. Kirchhoff’s Current Law The algebraic sum of currents in a network of conductors meeting at a point is zero. I 1 I 2 I 3 I 4 � I k = 0 . k Wording from https://en.wikipedia.org/wiki/Kirchhoff%27s circuit laws

  9. Putting it together: the electronics of a neuron Consider a simplified cell with three currents: I By Kirchoff, 0 = i 1 + i 2 + i 3 = − I + C dV dt + gV V i 1 Rearranging terms, we conclude: i C dV 3 dt = − gV + I . R i C 2 The Hodgkin-Huxley equations account for a pull on ions due to the balance of chemical and electrical gradients. This approximately acts as a battery with potential E associated with each resistor and leads to terms of the form g(V - E).

  10. Solving a differential equation

  11. We can then solve for c 2 by plugging Consider the differential equation in V (0) = V 0 : C dV dt = − gV + I , V (0) = V 0 V 0 = 1 g ( I − c 2 ) We can solve this for V ( t ) by so separation of variables : c 2 = I − gV 0 I − gV = dt dV and thus C � dt V = 1 � I − ( I − gV 0 ) e − gt / C � � dV . I − gV = g C − 1 g ln | I − gV | = t C + c 1 Note: This is a lot of work and is only possible because the equation is I − gV = c 2 e − gt / C simple. This type of equation appears in leaky integrate and fire and is the Therefore, basis of the cnexp solver. V = 1 � I − c 2 e − gt / C � To solve general differential equations, . g we must use numerical techniques. Here we’re assuming g is a constant. This is not true for voltage gated ion channels.

  12. In the Explicit Euler method, we approximate 1.00 dy dt ≈ ∆ y 0.80 ∆ t 0.60 for some small time step ∆ t and estimate the function at a series of 0.40 time points. Here ∆ y n = y n +1 − y n and ∆ t n = t n +1 − t n . 0.20 Then starting from some initial point 0.00 ( t 0 , y 0 ), we approximate dy 0 1 2 3 dt = f ( t , y ) as ∆ y n ∆ t n = f ( t n , y n ) and thus Explicit Euler starts at a point, moves in the direction of the tangent line ∆ y n = ∆ t n f ( t n , y n ) (slope dy / dt ) for a time ∆ t , then and therefore repeats. y n +1 = y n + ∆ t n f ( t n , y n ) .

  13. Explicit Euler is numerically unstable If the time step in Explicit Euler is too large, the solution will be unstable: 2 1/20 V V small dt 1 2 large dt ( ) 1 1 0.02 x < 0.1 0.20 x > 0.1 1 1 1.5 V 2 1 V 1 0.5 0 0 0.2 0.4 0.6 0.8 1

  14. 1.00 0.80 The Implicit Euler method is almost 0.60 the same as the Explicit Euler method except instead of evaluating at 0.40 f ( t n , y n ), we evaluate at f ( t n +1 , y n +1 ). That is, 0.20 y n +1 = y n + ∆ t n f ( t n +1 , y n +1 ) . 0.00 0 1 2 3 Note that y n +1 is on both sides, and Implicit Euler finds a new point such thus we have an algebraic equation that if we moved in the direction of that must be solved to find y n +1 . the tangent line (slope dy / dt ) backward in time by ∆ t , we would get where we started.

  15. Implicit Euler is numerically stable 2 1/20 V V small dt 1 2 1 1 large dt ( ) 0.20 1 1 1.5 V 2 1 V 1 0.5 0 0 0.2 0.4 0.6 0.8 1 As Implicit Euler is numerically stable, it is NEURON’s default integration method.

  16. Accuracy of Implicit Euler Note that the solutions found with a small dt and a 2 1/20 V V small dt 1 2 large dt are different, even after the initial rapid 1 1 large dt ( ) 0.20 1 1 change. 1.5 V 2 One can prove that halving dt will approximately 1 halve the difference between the computed value V 1 0.5 and the true value. 0 0 0.2 0.4 0.6 0.8 1 Thus Implicit Euler is a first order method . Error convergence estimates are true in the limit as dt → 0.

  17. Crank-Nicolson is stable but can oscillate 2 1/20 V V 1 2 1 1 1.5 1 1 1 0.5 0 0 0.2 0.4 0.6 0.8 1 NEURON also supports the second-order Crank-Nicolson method ( h.secondorder=2 ). The solution is stable and converges faster than Implicit or Explicit Euler, but it can exhibit oscillations.

  18. If h.secondorder=2 , then membrane potentials are second order correct at time t , currents at t − dt / 2, and channel conductances at t + dt / 2 . To plot these correctly in NEURON, use a voltage axis, current axis, or state axis, respectively. x = − 1 . 4 xy , ˙ y = − xy ˙ Single iteration Staggered time step y y 1.0 1.0 x x 0.0 0.0 0.0 1.0 2.0 0.0 1.0 2.0

  19. Variable time steps So far, we have considered numerical error as a function of the time step dt . We can instead choose an error tolerance and use that to pick a new dt at each time step. NEURON provides the CVode object for enabling variable step simulation. 2 2 h.CVode().atol(1e-3) h.CVode().atol(1e-1) 1.5 1.5 1 1 0.5 0.5 0 0 0 0.2 0.4 0.6 0.8 1 0 0.2 0.4 0.6 0.8 1

  20. Incorporating space

  21. ia x ia ia im ia � � i m = i a v k − v j dv j � c j dt + i j = r jk k

  22. Section Node Segment v(1.5/nseg) v(1) v(0) Membrane

  23. Improving accuracy by increasing nseg Improve accuracy by reducing the size of spatial compartments. In NEURON, do this by increasing nseg , the number of segments: nseg = 1 nseg = 2 nseg = 3 for sec in h.allsec(): sec.nseg *= 3 Note that you must multiply nseg by an odd number to preserve the location of the computed values, which is essential to testing convergence.

  24. Trees can be solved stably in O ( n ) Only unstable methods can solve arbitrary shapes in O ( n ) 7 6 5 To solve A ∆ y = b where y and b 4 1 have n entries (e.g. if we want to 8 9 solve for 4 variables at n / 4 points) 3 2 takes time proportional to: n 3 via Gaussian Elimination n log 2 7 via Strassen (1969) n if A corresponds to a “tree-matrix” (e.g. a neuron) discretized in a certain way (right). McDougal et al 2013

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend