Previous | Next --- Slide 39 of 41
Back to Lecture Thumbnails
Misaka-10032

What is numerical damping?

Misaka-10032

Also, just to make sure I understand the difference between Forward Euler and Symplectic Euler.

$$ \ddot{u} = \Delta u $$

  • Forward Euler

$$ u_{k+1} = u_k + \tau v_{k} \\ v_{k+1} = v_k + \tau \Delta u_k $$

  • Symplectic Euler

$$ v_{k+1} = v_k + \tau \Delta u_k \\ u_{k+1} = u_k + \tau v_{k+1} $$

It seems the only difference is the order to update $u$ and $v$?

zshearer

In response to the first question, it's when the total energy of the system decreases in a way not modeled by the system. Using the pendulum example, the pendulum will decrease in speed over time with backward euler, and eventually come to rest at 0, which is not the expected behavior of a frictionless system with no air resistance.

For the second question: you're correct.