How Diffusion Interpolation With Barriers works

Diffusion Interpolation refers to the fundamental solution of the heat equation, which describes how heat or particles diffuse with time in a homogeneous medium. The predictions made using this method gently flow around barriers.

In the absence of barriers, the predictions made by the Diffusion Interpolation are approximately the same as the predictions made by the Kernel Interpolation with a Gaussian kernel.

The Diffusion Interpolation can use a complex distance metric defined by the cost surface which is a common raster function that calculates the cost of travel from one cell of a raster to the next.

Diffusion Interpolation produces predictions on automatically selected grids (cells), while all other models in Geostatistical Analyst use triangles with variable sizes.

If the cost surface is not specified, the distance between the neighboring cell centers is a Euclidean one. If the cost surface is specified, the distance between cells on the cost surface is defined using one of the following formulas:

  1. Additive barrier

    (average cost value in the neighboring cells) x (distance between cell centers)

  2. Cumulative barrier

    (difference between cost values in the neighboring cells) + (distance between cell centers)

  3. Flow barrier

    Indicator(cost values in the to neighboring cell > cost values in the from neighboring cell) * (cost values in the to neighboring cell - cost values in the from neighboring cell ) + (distance between cell centers)

    Where, Indicator(True) = 1 and Indicator(False) = 0.

    Flow barrier can be used for interpolating data with preferential direction of data variation.

The result of the Diffusion Interpolation With Barriers without cost surface, below left , can be compared with a prediction map created using the Kernel Interpolation With Barriers, right.

Diffusion Interpolation without cost surfaceKernel Interpolation

In the case of Diffusion Interpolation, the shape of the kernel is changing near the barrier according to the diffusion equation, while in the case of the Kernel Interpolation, the distances between points are changing according to the shortest distance between the points.

11/2/2012