Trisha Shetty (Editor)

Eikonal equation

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit

The eikonal equation (from German Eikonal, which is from Greek εἰκών, image) is a non-linear partial differential equation encountered in problems of wave propagation, when the wave equation is approximated using the WKB theory. It is derivable from Maxwell's equations of electromagnetics, and provides a link between physical (wave) optics and geometric (ray) optics.

Contents

The eikonal equation is of the form

| u ( x ) | = 1 / f ( x ) ,   x Ω

subject to u | Ω = 0 , where Ω is an open set in R n with well-behaved boundary, f ( x ) is a function with positive values, denotes the gradient and | | is the Euclidean norm. Here, the right-hand side f ( x ) is typically supplied as known input. Physically, the solution u ( x ) is the shortest time needed to travel from the boundary Ω to x inside Ω , with f ( x ) being the speed at x .

In the special case when f = 1 , the solution gives the signed distance from Ω .

One fast computational algorithm to approximate the solution to the eikonal equation is the fast marching method.

Continuous shortest-path problems

The solution to the eikonal equation

| u ( x ) | = 1 / f ( x )  for  x Ω R n , u ( x ) = q ( x )  for  x Ω

can be interpreted as the minimal amount of time required to travel from x to Ω , where f : Ω ¯ ( 0 , + ) is the speed of travel, and q : Ω [ 0 , + ) is an exit-time penalty. (Alternatively this can be posed as a minimal cost-to-exit by making the right-side C ( x ) / f ( x ) and q an exit-cost penalty.)

By assuming that u ( x ) exists at all points, it is easy to prove that u ( x ) corresponds to a time-optimal control problem using Bellman's optimality principle and a Taylor expansion. Unfortunately, it is not guaranteed that u ( x ) exists at all points, and more advanced techniques are necessary to prove this. This led to the development of viscosity solutions in the 1980s by Pierre-Louis Lions and Michael G. Crandall, and Lions won a Fields Medal for his contributions.

Electromagnetic potential

The physical meaning of the eikonal equation is related to the formula

E = V ,

where E is the electric field strength, and V is the electric potential. There is a similar equation for velocity potential in fluid flow and temperature in heat transfer. The physical meaning of this equation in the electromagnetic example is that any charge in the region is pushed to move at right angles to the lines of constant potential, and along lines of force determined by the field of the E vector and the sign of the charge.

Ray optics and electromagnetism are related by the fact that the eikonal equation gives a second electromagnetic formula of the same form as the potential equation above where the line of constant potential has been replaced by a line of constant phase, and the force lines have been replaced by normal vectors coming out of the constant phase line at right angles. The magnitude of these normal vectors is given by the square root of the relative permittivity. The line of constant phase can be considered the edge of one of the advancing light waves. The normal vectors are the rays the light is traveling down in ray optics.

Computational algorithms

A myriad of fast and efficient algorithms to solve the eikonal equation have been developed since the 1990s. Many of these algorithms take advantage of algorithms developed much earlier for shortest path problems on graphs with nonnegative edge lengths. These algorithms take advantage of the causality provided by the physical interpretation and typically discretize the domain using a mesh or regular grid and calculate the solution at each discretized point. Eikonal solvers on triangulated manifolds are.

Sethian's fast marching method (FMM) was the first "fast and efficient" algorithm created to solve the Eikonal equation. The original description discretizes the domain Ω R n into a regular grid and "marches" the solution from "known" values to the undiscovered regions, precisely mirroring the logic of Dijkstra's algorithm. If Ω is discretized and has M meshpoints, then the computational complexity is O ( M log M ) where the log term comes from the use of a heap (typically binary). A number of modifications can be prescribed to FMM since it is classified as a label-setting method. In addition, FMM has been generalized to operate on general meshes that discretize the domain.

Label-correcting methods such as the Bellman–Ford algorithm can also be used to solve the discretized Eikonal equation also with numerous modifications allowed (e.g. "Small Labels First" or "Large Labels Last" ). Two-queue methods have also been developed that are essentially a version of the Bellman-Ford algorithm except two queues are used with a threshold used to determine which queue a gridpoint should be assigned to based on local information.

Sweeping algorithms such as the fast sweeping method (FSM) are highly efficient for solving Eikonal equations when the corresponding characteristic curves do not change direction very often. These algorithms are label-correcting but do not make use of a queue or heap, and instead prescribe different orderings for the gridpoints to be updated and iterate through these orderings until convergence. Some improvements were introduced such as "locking" gridpoints during a sweep if does not receive an update, but on highly refined grids and higher-dimensional spaces there is still a large overhead due to having to pass through every gridpoint. Parallel methods have been introduced that attempt to decompose the domain and perform sweeping on each decomposed subset. Zhao's parallel implementation decomposes the domain into n -dimensional subsets and then runs an individual FSM on each subset. Dextrixhe's parallel implementation also decomposes the domain, but parallelizes each individual sweep so that processors are responsible for updating gridpoints in an ( n 1 ) -dimensional hyperplane until the entire domain is fully swept.

Hybrid methods have also been introduced that take advantage of FMM's efficiency with FSM's simplicity. For example, the Heap Cell Method (HCM) decomposes the domain into cells and performs FMM on the cell-domain, and each time a "cell" is updated FSM is performed on the local gridpoint-domain that lies within that cell. A parallelized version of HCM has also been developed.

Numerical approximation

For simplicity assume that Ω is discretized into a uniform grid with spacing h .

2D approximation on a Cartesian grid

Assume that a gridpoint x i j has value U i j = U ( x i j ) u ( x i j ) . A first-order scheme to approximate the partial derivatives is

max ( D i j x U , D i j + x U , 0 ) 2 + max ( D i j y U , D i j + y U , 0 ) 2   =   1 f i j 2

where

u x ( x i j ) D i j ± x U = U i ± 1 , j U i j ± h  and  u y ( x i j ) D i j ± y U = U i , j ± 1 U i j ± h .

Due to the consistent, monotone, and causal properties of this discretization it is easy to show that if U H = min ( U i 1 , j , U i + 1 , j ) and U V = min ( U i , j 1 , U i , j + 1 ) and | U H U V | h / f i j then

( U i j U H h ) 2 + ( U i j U V h ) 2 = 1 f i j 2

which means

U i j = U H + U V 2 + 1 2 ( U H + U V ) 2 2 ( U H 2 + U V 2 h 2 f i j 2 ) .

This solution will always exist as long as | U H U V | 2 h / f i j is satisfied and is larger then both, U H and U V , as long as | U H U V | h / f i j . If | U H U V | h / f i j , a lower-dimensional update must be performed by assuming one of the partial derivatives is 0 :

U i j = min ( U H , U V ) + h f i j .

n-D approximation on a Cartesian grid

Assume that a gridpoint x has value U = U ( x ) u ( x ) . Repeating the same steps as in the n = 2 case we can use a first-order scheme to approximate the partial derivatives. Let U i be the minimum of the values of the neighbors in the ± e i directions, where e i is a standard unit basis vector. The approximation is then

i = 1 n ( U U i h ) 2   =   1 f i 2 .

Solving this quadratic equation for U yields:

U = 1 n i = 1 n U i + 1 n ( i = 1 n U i ) 2 n ( i = 1 n U i 2 h 2 f i 2 ) .

If the discriminant in the square root is negative, then a lower-dimensional update must be performed (i.e. one of the partial derivatives is 0 ).

If n = 2 then perform the one-dimensional update

U = min i = 1 , , n ( U i ) + h f i .

If n 3 then perform an n 1 dimensional update using the values { U 1 , , U n } { U i } for every i = 1 , , n and choose the smallest.

Mathematical description

An eikonal equation is one of the form

H ( x , u ( x ) ) = 0 u ( 0 , x ) = u 0 ( x ) ,  for  x = ( x 1 , x )

The plane x = ( 0 , x ) can be thought of as the initial condition, by thinking of x 1 as t . We could also solve the equation on a subset of this plane, or on a curved surface, with obvious modifications.

The eikonal equation shows up in geometrical optics, which is a way of studying solutions of the wave equation c ( x ) 2 | x u ( x , t ) | 2 = | t u ( x , t ) | 2 . In geometric optics, the eikonal equation describes the phase fronts of waves. Under reasonable hypothesis on the "initial" data, the eikonal equation admits a local solution, but a global smooth solution (e.g. a solution for all time in the geometrical optics case) is not possible. The reason is that caustics may develop. In the geometrical optics case, this means that wavefronts cross.

We can solve the eikonal equation using the method of characteristics. One must impose the "non-characteristic" hypothesis p 1 H ( x , p ) 0 along the initial hypersurface x = ( 0 , x ) , where H=H(x,p) and p=(p1,...,pn) is the variable that gets replaced by ∇u. Here x=(x1,...,xn) = (t,x').

First, solve the problem H ( x , ξ ( x ) ) = 0 , ξ ( x ) = u ( x ) , x H . This is done by defining curves (and values of ξ on those curves) as

x ˙ ( s ) = ξ H ( x ( s ) , ξ ( s ) ) , ξ ˙ ( s ) = x H ( x ( s ) , ξ ( s ) ) . x ( 0 ) = x 0 , ξ ( x ( 0 ) ) = u ( x ( 0 ) ) . Note that even before we have a solution u , we know u ( x ) for x = ( 0 , x ) due to our equation for H .

That these equations have a solution for some interval 0 s < s 1 follows from standard ODE theorems (using the non-characteristic hypothesis). These curves fill out an open set around the plane x = ( 0 , x ) . Thus the curves define the value of ξ in an open set about our initial plane. Once defined as such it is easy to see using the chain rule that s H ( x ( s ) , ξ ( s ) ) = 0 , and therefore H = 0 along these curves.

We want our solution u to satisfy u = ξ , or more specifically, for every s , ( u ) ( x ( s ) ) = ξ ( x ( s ) ) . Assuming for a minute that this is possible, for any solution u ( x ) we must have

d d s u ( x ( s ) ) = u ( x ( s ) ) x ˙ ( s ) = ξ H ξ ,

and therefore

u ( x ( t ) ) = u ( x ( 0 ) ) + 0 t ξ ( x ( s ) ) x ˙ ( s ) d s .

In other words, the solution u will be given in a neighborhood of the initial plane by an explicit equation. However, since the different paths x ( t ) , starting from different initial points may cross, the solution may become multi-valued, at which point we have developed caustics. We also have (even before showing that u is a solution)

ξ ( x ( t ) ) = ξ ( x ( 0 ) ) 0 s x H ( x ( s ) , ξ ( x ( s ) ) ) d s .

It remains to show that ξ , which we have defined in a neighborhood of our initial plane, is the gradient of some function u . This will follow if we show that the vector field ξ is curl free. Consider the first term in the definition of ξ . This term, ξ ( x ( 0 ) ) = u ( x ( 0 ) ) is curl free as it is the gradient of a function. As for the other term, we note

2 x k x j H = 2 x j x k H .

The result follows.

Applications

  • A concrete application is the computation of radiowave attenuation in the atmosphere.
  • Finding the shape from shading in computer vision.
  • Geometric optics
  • Continuous shortest path problems
  • Image segmentation
  • References

    Eikonal equation Wikipedia