Recent content by jacki

  1. J

    Solving Backward Euler with Newton's Method

    Greetings, I am trying to implement backward euler implicit method by Newton-raphson iteration. The differential equation is for a simple planar pendulum. So the function for the pendulum is : (1) angularAcceleration (angle) = ( -gravity/length ) * sin(angle); and the update function for...
  2. J

    Backward Euler / Implicit Integration Implementation

    Thanks, but that's for forward euler? I'm asking about backward euler.
  3. J

    Backward Euler / Implicit Integration Implementation

    Hi all, I am trying to implement the backward euler integration (in c++) for the pendulum problem. I have the forward euler implemented, but frankly I don't know where to even start from for the implicit integration. I understand the update expressions for implicit, and of course the...
Back
Top