Euler method
From CFD-Wiki
(Difference between revisions)
(Changed phi_dot to dPhi/dt) |
|||
Line 2: | Line 2: | ||
=== Explicit or Forward Euler === | === Explicit or Forward Euler === | ||
- | :<math> \ | + | :<math> \frac{d\phi}{dt} = f\left( {t,\phi } \right)</math> |
+ | |||
+ | |||
:<math>\phi ^{n + 1} = \phi ^n + f\left( {t_n ,\phi ^n } \right) </math> | :<math>\phi ^{n + 1} = \phi ^n + f\left( {t_n ,\phi ^n } \right) </math> | ||
=== Implicit or Backward Euler === | === Implicit or Backward Euler === | ||
- | :<math> \ | + | :<math> \frac{d\phi}{dt} = f\left( {t,\phi } \right)</math> |
+ | |||
+ | |||
:<math>\phi ^{n + 1} = \phi ^n + f\left( {t_{n + 1} ,\phi ^{n + 1} } \right) </math> | :<math>\phi ^{n + 1} = \phi ^n + f\left( {t_{n + 1} ,\phi ^{n + 1} } \right) </math> | ||
Latest revision as of 17:44, 14 December 2005
Euler Methods
Explicit or Forward Euler
Implicit or Backward Euler
Return to Numerical Methods