Kalpana Kalpana (Editor)

Semi implicit Euler method

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit
Semi-implicit Euler method

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 for solving Hamilton's equations, a system of ordinary differential equations that arises in classical mechanics. It is a symplectic integrator and hence it yields better results than the standard Euler method.

Contents

Setting

The semi-implicit Euler method can be applied to a pair of differential equations of the form

d x d t = f ( t , v ) d v d t = g ( t , x ) ,

where f and g are given functions. Here, x and v may be either scalars or vectors. The equations of motion in Hamiltonian mechanics 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 , v ( t 0 ) = v 0 .

The method

The semi-implicit Euler method produces an approximate discrete solution by iterating

v n + 1 = v n + g ( t n , x n ) Δ t x n + 1 = x n + f ( t n , v n + 1 ) Δ t

where Δt is the time step and tn = t0 + nΔt is the time after n steps.

The difference with the standard Euler method is that the semi-implicit Euler method uses vn+1 in the equation for xn+1, while the Euler method uses vn.

Applying the method with negative time step to the computation of ( x n , v n ) from ( x n + 1 , v n + 1 ) and rearranging leads to the second variant of the semi-implicit Euler method

x n + 1 = x n + f ( t n , v n ) Δ t v n + 1 = v n + g ( t n , x n + 1 ) Δ t

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, 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 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 Niiranen 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 criteria is s > 2 / Δ 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 is given by

d x d t = v ( t ) d v d t = k m x = ω 2 x .

The semi-implicit Euler for this equation is

v n + 1 = v n ω 2 x n Δ t x n + 1 = x n + v n + 1 Δ t .

The iteration preserves the modified energy functional E h ( x , v ) = 1 2 ( v 2 + ω 2 x 2 ω 2 Δ t v x ) exactly, leading to stable periodic orbits (for sufficiently small step size) that deviate by O ( Δ t ) from the exact orbits. The exact circular frequency ω increases in the numerical approximation by a factor of 1 + 1 24 ω 2 Δ t 2 + O ( Δ t 4 ) .

References

Semi-implicit Euler method Wikipedia