Radial paracrystal

The interference function of a radial paracrystal is used to model cumulative disorder of interparticle distances. It is called radial to stress the fact that it only takes into account the radial component of the scattering vector.

Each circle on the plot above represents the area where the probability to find a particle, given a particle at the origin, is above some arbitrary threshold. The growing size of the areas emphasizes the fact the our knowledge about next neighbor’s location decreases with the distance to the origin.

The BornAgain user manual (Chapter 3.5, Paracrystal) details the theoretical model and gives some links to the literature.

RadialParacrystal class

The radial paracrystal is parameterized by the position distribution of the nearest neighbor centered at the peak distance. On the plot below the half-width of this distribution is marked as $\omega$ and the center is marked with “Peak Distance”. The probability distributions of finding other particles to the right are deduced from accumulating position uncertanties of previous particles in the chain.

To create a radial paracrystal the following constructor is used:

RadialParacrystal(particle, peak_distance, damping_length=0)
"""
particle        The particle (or Mixture) placed at lattice sites
peak_distance   Average distance to the next neighbor in nanometers
damping_length  The damping (coherence) length of the paracrystal in nanometers
"""

The parameter damping_length is used to introduce finite size effects by applying a multiplicative coefficient equal to $exp \left(-\frac{peak\_distance}{damping\_length}\right)$ to the Fourier transform of the probability density of a nearest neighbor. damping_length is equal to 0 by default and, in this case, no correction is applied. On the plot above the damping length is provisionally depicted as an area contributing to the scattering.

Probability Distribution

To account for next neighbor position uncertainty a probability distribution should be assigned to the interference function. This is done using the setProbabilityDistribution(pdf) method of the radial paracrystal interference function.

layout = ba.RadialParacrystal(particle, 10*nm, 1000*nm)
layout.setProbabilityDistribution(ba.Profile1DCauchy(30*nm))

The following distributions are available

# Cauchy-Lorentzian distribution
ba.Profile1DCauchy(omega)

# Gaussian distribution
ba.Profile1DGauss(omega)

# gate distribution
ba.Profile1DGate(omega)

# triangle distribution
ba.Profile1DTriangle(omega)

# cosine distribution
ba.Profile1DCosine(omega)

# pseudo-Voigt distribution: eta*Gauss + (1-eta)*Cauchy
Profile1DVoigt(omega, eta)

The parameter omega is used to set the half-width of the distribution in nanometers. In the case of the pseudo-Voigt distribution an additional dimensionless parameter eta is used to balance between the Gaussian and Cauchy profiles.

Domain size

The interference function of a radial paracrystal provides a way to calculate the scattering from a finite portion of the paracrystal using the setDomainSize(nm) method. The resulting behaviour is similar to the case when damping_length is used (the difference in computation is explained in the user manual). In the code snippet below, the paracrystal is created without specifying the damping_length, and then the setDomainSize method is used to introduce the alternative mechanism for finite size corrections.

layout = ba.RadialParacrystal(particle, 10*nm)
layout.setProbabilityDistribution(ba.Profile1DCauchy(30*nm))
layout.setDomainSize(10000*nm)

Particle mixtures

For particle mixtures (DA/SSCA approximations), use the Mixture class:

mix = ba.Mixture()
mix.addParticle(particle_1, 0.8)
mix.addParticle(particle_2, 0.2)

layout = ba.RadialParacrystal(mix, 18*nm, 1000*nm)
layout.setProbabilityDistribution(profile)

Example

The radial paracrystal model is used to demonstrate the differences in size-distribution models