Directional Functions

This is a documentation for CorrelationFunctions.Directional module. The documentation is divided into the following topics:

  • Boundary Conditions page describes boundary conditions when calculations cross the boundary of a system.
  • Directions page describes directions along which the correlation functions are computed.
  • Indicator Functions page describes how to construct customary indicator functions.
  • Correlation Functions page contains the exhaustive list of correlation functions supported by this package.
  • Results page contains comparison of correlation functions from this package with some known theoretical results.

Boundary Conditions

When calculating the value of correlation functions like $S_2$ or $L_2$ it may be necessary to cross a boundary of the input array (i.e. access array using an arbitrary index). There two options how CorrelationFunctions.jl handles this situation:

  • Impose "closed walls" (CW) boundary conditions on the input data. This means that the boundary is not crossed and correlation functions gather less statistics for bigger length of test line segments.
  • Impose periodic boundary conditions (PBC) on the input data. This means that the input is wrapped around itself (i.e. modular arithmetic is used to access the array).

PBC is used when you specify periodic = true when call a correlation function, otherwise CW is used.

Directions

Functions based on two-point statistics from Directional module will require a direction along which the function is calculated (usually as their third argument). You can specify these directions:

The module Map can use these directions to extract directional information from correlation maps.

These rules can help you to memoize the correspondence between symbolic designations and vectors:

  • DirFoo types can contain from one to three characters X, Y and Z. Each character can occur only once (there is a type DirXYZ, but no type DirXXY).
  • When a character does not occur is a designation (e.g, there is no Z in DirXY) that coordinate remains constant in a slice (in the example above $z = \text{const}$).
  • The names of the axes have a "natural order" which is X, Y, Z. In a designation, the first axis which breaks that order get the minus sign in the direction vector (e.g. DirXZY equals to (1, -1, 1) because Y is in the third position, not in the second, DirZX equals to (-1, 0, 1) because X is in the second position, not in the first, etc.)

Functions based on three-point statistics require a set of points in which they are calculated (usually as the third and the fourth arguments). This set can be generated by Utilities.make_pattern function.

Indicator Functions

Internally, the functions c2, surf2 and surfvoid (see Correlation Functions) are reduced to s2 passing more generic indicator functions rather than simply a phase. This feature is also exposed to users. If you want to use a custom indicator function, you need to wrap it to either SeparableIndicator or InseparableIndicator structure, calling the corresponding constructor. Note that s2 performs much better on big arrays when using SeparableIndicator.

CorrelationFunctions.Directional.SeparableIndicatorType
SeparableIndicator(χ₁, χ₂)

Type for separable indicator function, that is for such an indicator function which can be written as $\chi(x,y) = \chi_1(x)\chi_2(y)$.

χ1 and χ2 must be functions of one argument which return a value of Bool type.

NB: This indicator function is not symmetric (i.e. $\chi(x,y) \ne \chi(y,x)$). This behaviour is intentional. For example you can write such an indicator, so the corresponding correlation function is sensitive to the spatial orientation of a system.

"That one, too fat! This one, too tall! This one… too symmetrical!"

CorrelationFunctions.Directional.InseparableIndicatorType
InseparableIndicator(χ)

Type for inseparable indicator function, that is for such an indicator function which cannot be written as $\chi(x,y) = \chi_1(x)\chi_2(y)$.

χ must be a function of two arguments which returns a value of Bool type.

Correlation Functions

Two-point statistics

CorrelationFunctions.Directional.s2Function
s2(array, phase, direction[; len] [,periodic = false])
s2(array, SeparableIndicator(χ₁, χ₂), direction[; len] [,periodic = false])
s2(array, InseparableIndicator(χ), direction[; len] [,periodic = false])

Calculate S₂ (two point) correlation function for one-, two- or three-dimensional multiphase system.

S₂(x) equals to probability that corner elements of a line segment with the length x cut from the array belong to the same phase. This implementation calculates S₂(x) for all xes in the range from 1 to len which defaults to half of the minimal dimenstion of the array.

More generally, you can provide indicator function χ instead of phase. In this case S₂ function calculates probability of χ(x, y) returing true where x and y are two corners of a line segment. Indicator functions must be wrapped in either SeparableIndicator or InseparableIndicator. Some computations for separable indicator functions are optimized.

Examples

julia> s2([1,1,1,0,1,1], 1, DirX(); len = 6)
6-element Vector{Float64}:
 0.8333333333333334
 0.6
 0.5
 0.6666666666666666
 1.0
 1.0

See also: Utilities.AbstractDirection, SeparableIndicator, InseparableIndicator.

CorrelationFunctions.Directional.c2Function
c2(array, phase, direction[; len,] [periodic = false])

Calculate C₂ (cluster) correlation function for one-, two- or three-dimensional multiphase system.

C₂(x) equals to probability that corner elements of a line segment with the length x cut from the array belong to the same cluster of the specific phase. This implementation calculates C2 for all xes in the range from 1 to len which defaults to half of the minimal dimension of the array.

Examples

julia> c2([1,1,1,0,1,1], 1, DirX(); len = 6)
6-element Array{Float64,1}:
 0.8333333333333333
 0.5999999999999999
 0.24999999999999994
 2.4671622769447922e-17
 9.25185853854297e-17
 5.181040781584064e-16

For a list of possible directions, see also: Utilities.AbstractDirection.

CorrelationFunctions.Directional.cross_correlationFunction
cross_correlation(array, phase1, phase2, direction[; len] [,periodic = false])

Calculate cross-correlation between phase1 and phase2 in array. The meaning of optional arguments is the same as for s2 function.

See also: s2.

CorrelationFunctions.Directional.surf2Function
surf2(array, phase, direction[; len] [,periodic = false][, filter])

Calculate surface-surface correlation function for one-, two- or three-dimensional multiphase system. This implementation calculates surface-surface function for all xs in the range from 1 to len which defaults to half of the minimal dimension of the array.

You can chose how an edge between phases is selected by passing filter argument of type Utilities.AbstractKernel.

If phase is a function it is applied to array to select the phase of interest, otherwise the phase of interest is selected by testing elements of array for equality with phase.

See also: Utilities.AbstractDirection, Utilities.AbstractKernel.

CorrelationFunctions.Directional.surfvoidFunction
surfvoid(array, phase, direction[; len] [,void_phase = 0][, periodic = false][, filter])

Calculate surface-void correlation function for one-, two- or three-dimensional multiphase system. This implementation calculates surface-void function for all xs in the range from 1 to len which defaults to half of the minimal dimension of the array.

You can chose how an edge between phases is selected by passing filter argument of type Utilities.AbstractKernel.

If phase is a function it is applied to array to select the phase of interest, otherwise the phase of interest is selected by testing elements of array for equality with phase. void_phase can also be either a function or some other object and is used as an indicator for the void phase.

See also: Utilities.AbstractDirection, Utilities.AbstractKernel.

Three-point statistics

CorrelationFunctions.Directional.s3Function
s3(array, ps1, ps2[, periodic = false])

Calculate the three-point correlation function in an array of points.

Two arguments ps1 and ps2 must be arrays of N-tuples of integers (where N is a dimensionality of the input array) broadcastable to the same size. Periodic or zero-padding boundary conditions are selected with the choose of periodic argument.

The following invariants hold:

julia> data = rand(Bool, (100, 100, 100));
julia> shiftsx = [(i, 0, 0) for i in 0:49];
julia> shiftsy = [(0, i, 0) for i in 0:49];
julia> shiftsz = [(0, 0, i) for i in 0:49];
julia> s2x = D.s2(data, 1, U.DirX());
julia> s2y = D.s2(data, 1, U.DirY());
julia> s2z = D.s2(data, 1, U.DirZ());
julia> s2x_ = D.s3(data, [(0,0,0)], shiftsx);
julia> s2y_ = D.s3(data, [(0,0,0)], shiftsy);
julia> s2z_ = D.s3(data, [(0,0,0)], shiftsz);

julia> s2x == s2x_
true

julia> s2y == s2y_
true

julia> s2z == s2z_
true

See also: make_pattern, s2.

s3(array, phase, ps1, ps2[; periodic = false])

The same as s3(array .== phase; ...). Kept for consistency with other parts of the API.

CorrelationFunctions.Directional.c3Function
c3(array, phase[; planes :: Vector{AbstractPlane}, len, periodic = false])

Calculate three-point cluster correlation function.

This function is is internally calculated using s3 and hence uses the same sampling pattern and returns a result in the same format.

See also: s3, AbstractPlane.

CorrelationFunctions.Directional.surf3Function
surf3(array, ps1, ps2[; periodic = false][, filter :: AbstractKernel])

Calculate surface-surface-surface ($F_{sss}$) correlation function.

This function is is internally calculated using s3 and hence uses the same sampling pattern and returns a result in the same format.

You can chose how an edge between phases is selected by passing filter argument of type Utilities.AbstractKernel.

See also: s3, make_pattern, AbstractKernel.

surf3(array, phase[; periodic = false][, filter = ConvKernel(7)])

The same as surf3(array .== phase; ...). Kept for consistency with other parts of the API.

CorrelationFunctions.Directional.surf2voidFunction
surf2void(array, phase, ps1, ps2[, void_phase = 0][; periodic = false][, filter :: AbstractKernel])

Calculate surface-surface-void ($F_{ssv}$) correlation function.

This function is is internally calculated using s3 and hence uses the same sampling pattern and returns a result in the same format.

You can chose how an edge between phases is selected by passing filter argument of type Utilities.AbstractKernel.

See also: s3, make_pattern, AbstractKernel.

CorrelationFunctions.Directional.surfvoid2Function
surfvoid2(array, phase, ps1, ps2[, void_phase = 0][; periodic = false][, filter :: AbstractKernel])

Calculate surface-void-void ($F_{svv}$) correlation function.

This function is is internally calculated using s3 and hence uses the same sampling pattern and returns a result in the same format.

You can chose how an edge between phases is selected by passing filter argument of type Utilities.AbstractKernel.

See also: s3, AbstractPlane, AbstractKernel.

Other correlation functions

CorrelationFunctions.Directional.pore_sizeFunction
pore_size(array, phase = 0; periodic = false)

Calculate pore size correlation function for one-, two- or three-dimensional multiphase systems.

This implementation returns an array of pore sizes where each size is equal to the distance from a particular point in the pore to the closest point not belonging to the phase phase.

Example

julia> data = [1 1 1 1 1; 1 1 0 1 1; 1 0 0 0 1; 1 1 0 1 1; 1 1 1 1 1]
5×5 Matrix{Int64}:
 1  1  1  1  1
 1  1  0  1  1
 1  0  0  0  1
 1  1  0  1  1
 1  1  1  1  1

julia> D.pore_size(data, 0)
5-element Vector{Float64}:
 1.0
 1.0
 1.4142135623730951
 1.0
 1.0
CorrelationFunctions.Directional.chord_lengthFunction
chord_length(array, phase, direction)

Calculate the chord length correlation function for one-, two- or three-dimensional multiphase systems.

A chord is a line segment which touches the boundary of a same-phase cluster with its ends.

This implementation returns an array of chord lengths where each length is equal to a number of voxels in the phase phase belonging to a chord.

Examples

julia> chord_length([1, 0, 0, 0, 0, 1, 0, 1], 0, DirX())
2-element Vector{Int64}:
 4
 1

For a list of possible dimensions, see also: Utilities.AbstractDirection.

CorrelationFunctions.Directional.l2Function
l2(array, phase, direction[; len][, periodic = false])

Calculate L₂ (lineal path) correlation function for one-, two- or three-dimensional multiphase system.

L₂(x) equals to probability that all elements of a line segment with length x cut from the array belong to the same phase. This implementation calculates L₂(x) for all xes in the range from 1 to len which defaults to half of the minimal dimension of the array.

Examples

julia> l2([1,1,1,0,1,1], 1, DirX(); len = 6)
6-element Array{Float64,1}:
 0.8333333333333334
 0.6
 0.25
 0.0
 0.0
 0.0

For a list of possible dimensions, see also: Utilities.AbstractDirection.

The pore_size function is also reexported from CorrelationFunctions directly, not being actually a "directional" function.

Results

CorrelationFunctions.jl is tested on overlapping disks and balls of constant radius $R$ with centers generated by Poisson process with parameter $\lambda$ (see section 5.1 of Random Heterogeneous Materials). An example of a two-dimensional two-phase system generated in this way is on the picture ($R = 25$ and $\lambda = 5 \cdot 10^{-4}$):

disks

Plots of all correlation functions calculated by CorrelationFunctions.jl for overlapping disks along with their theoretical values are given below. There are also plots of relative errors calculated as

\[\text{err}(x) = \mid \frac{\text{calculation}(x) - \text{theory}(x)}{\text{theory}(x)} \mid\]

Two-dimensional systems

Methodology

All functions in this section with exception of pore size and chord length functions are calculated on 15 random datasets generated with parameters $R = 25$ and $\lambda = 5 \cdot 10^{-4}$. Each dataset is an image with dimensions 4000x4000 pixels. The final result is an average of results on those 15 datasets. When function fastly decreases to zero a plot of a natural logarithm of that function is provided.

Pore size and chord length functions are calculated on one 4000x4000 dataset with the same parameters as above. A theoretical value is computed by averaging a theoretical function across each bin of a histogram returned by pore_size or chord_length function. Because both pore size and cord length functions decrease to zero with increase of their arguments, the relative errors are calculated for the corresponding cummulative distribution functions.

All functions are called with default optional arguments unless explicitly stated otherwise.

Two point $S_2(x)$ function

S2Error
s2s2 error

Lineal path $L_2(x)$ function

L2Error
l2l2 error

Surface-surface $F_{ss}(x)$ function

Surface-surfaceError
ssss error

Surface-void $F_{sv}(x)$ function

Surface-voidError
ssss error

Pore size $P(x)$ function

Pore sizeError
ssss error

Chord length $p(x)$ function

Chord length function chord_length was called with parameter nbins = 30.

Chord lengthError
ssss error

Three-dimensional systems

Methodology

The idea is the same as in two-dimensional case, but chosen parameters are slightly different. The functions are averaged over 5 500x500x500 datasets with ball radius $R = 20$ and Poisson process parameter $\lambda = 3 \cdot 10^{-5}$.

Two point $S_2(x)$ function

S2Error
s2s2 error

Lineal path $L_2(x)$ function

L2Error
l2l2 error

Surface-surface $F_{ss}(x)$ function

Surface-surfaceError
ssss error

Surface-void $F_{sv}(x)$ function

Surface-voidError
ssss error

Pore size $P(x)$ function

Pore sizeError
ssss error

Chord length $p(x)$ function

Chord length function chord_length was called with parameter nbins = 30.

Chord lengthError
ssss error