HOME

TheInfoList



OR:

In mathematics, the semi-implicit Euler method, also called symplectic Euler, semi-explicit Euler, Euler–Cromer, and Newton–Størmer–Verlet (NSV), is a modification of the
Euler method In mathematics and computational science, the Euler method (also called the forward Euler method) is a first-order numerical analysis, numerical procedure for solving ordinary differential equations (ODEs) with a given Initial value problem, in ...
for solving Hamilton's equations, a system of
ordinary differential equation In mathematics, an ordinary differential equation (ODE) is a differential equation (DE) dependent on only a single independent variable (mathematics), variable. As with any other DE, its unknown(s) consists of one (or more) Function (mathematic ...
s that arises in
classical mechanics Classical mechanics is a Theoretical physics, physical theory describing the motion of objects such as projectiles, parts of Machine (mechanical), machinery, spacecraft, planets, stars, and galaxies. The development of classical mechanics inv ...
. It is a
symplectic integrator In mathematics, a symplectic integrator (SI) is a Numerical ordinary differential equations, numerical integration scheme for Hamiltonian systems. Symplectic integrators form the subclass of geometric integrators which, by definition, are canonical ...
and hence it yields better results than the standard Euler method.


Origin

The method has been discovered and forgotten many times, dating back to Newton's ''Principiae'', as recalled by Richard Feynman in his ''Feynman Lectures'' (Vol. 1, Sec. 9.6) In modern times, the method was rediscovered in a 1956 preprint by René De Vogelaere that, although never formally published, influenced subsequent work on higher-order symplectic methods.


Setting

The semi-implicit Euler method can be applied to a pair of differential equations of the form :\begin &= f(t,v) \\ &= g(t,x), \end where ''f'' and ''g'' are given functions. Here, ''x'' and ''v'' may be either scalars or vectors. The equations of motion in
Hamiltonian mechanics In physics, Hamiltonian mechanics is a reformulation of Lagrangian mechanics that emerged in 1833. Introduced by Sir William Rowan Hamilton, Hamiltonian mechanics replaces (generalized) velocities \dot q^i used in Lagrangian mechanics with (gener ...
take this form if the Hamiltonian is of the form : H = T(t,v) + V(t,x). \, The differential equations are to be solved with the initial condition : x(t_0) = x_0, \qquad v(t_0) = v_0.


The method

The semi-implicit Euler method produces an approximate
discrete Discrete may refer to: *Discrete particle or quantum in physics, for example in quantum theory * Discrete device, an electronic component with just one circuit element, either passive or active, other than an integrated circuit * Discrete group, ...
solution by iterating :\begin v_ &= v_n + g(t_n, x_n) \, \Delta t\\ .3em x_ &= x_n + f(t_n, v_) \, \Delta t \end where Δ''t'' is the time step and ''tn'' = ''t''0 + ''n''Δ''t'' is the time after ''n'' steps. The difference with the standard Euler method is that the semi-implicit Euler method uses ''v''''n''+1 in the equation for ''x''''n''+1, while the Euler method uses ''vn''. Applying the method with negative time step to the computation of (x_n, v_n) from (x_, v_) and rearranging leads to the second variant of the semi-implicit Euler method :\begin x_ &= x_n + f(t_n, v_n) \, \Delta t\\ .3ex v_ &= v_n + g(t_n, x_) \, \Delta t \end which has similar properties. The semi-implicit Euler is a first-order integrator, just as the standard Euler method. This means that it commits a global error of the order of Δt. However, the semi-implicit Euler method is a
symplectic integrator In mathematics, a symplectic integrator (SI) is a Numerical ordinary differential equations, numerical integration scheme for Hamiltonian systems. Symplectic integrators form the subclass of geometric integrators which, by definition, are canonical ...
, unlike the standard method. As a consequence, the semi-implicit Euler method almost conserves the energy (when the Hamiltonian is time-independent). Often, the energy increases steadily when the standard Euler method is applied, making it far less accurate. Alternating between the two variants of the semi-implicit Euler method leads in one simplification to the Störmer-
Verlet integration Verlet integration () is a numerical method used to integrate Newton's equations of motion. It is frequently used to calculate trajectories of particles in molecular dynamics simulations and computer graphics. The algorithm was first used in 17 ...
and in a slightly different simplification to the leapfrog integration, increasing both the order of the error and the order of preservation of energy. The stability region of the semi-implicit method was presented by NiiranenNiiranen, Jouko: Fast and accurate symmetric Euler algorithm for electromechanical simulations
Proceedings of the Electrimacs'99, Sept. 14-16, 1999 Lisboa, Portugal, Vol. 1, pages 71 - 78.
although the semi-implicit Euler was misleadingly called symmetric Euler in his paper. The semi-implicit method models the simulated system correctly if the complex roots of the characteristic equation are within the circle shown below. For real roots the stability region extends outside the circle for which the criterion is s > - 2/\Delta t As can be seen, the semi-implicit method can simulate correctly both stable systems that have their roots in the left half plane and unstable systems that have their roots in the right half plane. This is clear advantage over forward (standard) Euler and backward Euler. Forward Euler tends to have less damping than the real system when the negative real parts of the roots get near the imaginary axis and backward Euler may show the system be stable even when the roots are in the right half plane.


Example

The motion of a spring satisfying
Hooke's law In physics, Hooke's law is an empirical law which states that the force () needed to extend or compress a spring by some distance () scales linearly with respect to that distance—that is, where is a constant factor characteristic of ...
is given by :\begin \frac &= v(t)\\ .2em \frac &= -\frac\,x=-\omega^2\,x. \end The semi-implicit Euler for this equation is :\begin v_ &= v_n - \omega^2\,x_n\,\Delta t \\ .2em x_ &= x_n + v_ \,\Delta t. \end Substituting v_ in the second equation with the expression given by the first equation, the iteration can be expressed in the following matrix form :\begin x_ \\v_\end = \begin 1-\omega^2 \Delta t^2 & \Delta t \\ -\omega^2 \Delta t & 1 \end \begin x_ \\ v_ \end, and since the
determinant In mathematics, the determinant is a Scalar (mathematics), scalar-valued function (mathematics), function of the entries of a square matrix. The determinant of a matrix is commonly denoted , , or . Its value characterizes some properties of the ...
of the matrix is 1 the transformation is area-preserving. The iteration preserves the modified energy functional E_h(x,v)=\tfrac12\left(v^2+\omega^2\,x^2-\omega^2\Delta t\,vx\right) exactly, leading to stable periodic orbits (for sufficiently small step size) that deviate by O(\Delta t) from the exact orbits. The exact circular frequency \omega increases in the numerical approximation by a factor of 1+\tfrac1\omega^2\Delta t^2+O(\Delta t^4).


References

* * * {{Numerical integrators Numerical differential equations