The LMA approach implies that the layer is laterally divided into domains containing particles of the same size and shape and organized into a certain structure. In this approximation the domains are spatially separated and thus completely independent from each other.
The scattering intensity is incoherently summed over the domains with the corresponding weights.
# Interference functions
iff_1 = ba.InterferenceRadialParacrystal(...)
iff_2 = ba.Interference2DParacrystal(...)
...
# Structured particle layouts
layout_1 = ba.StructuredLayout(iff_1)
layout_2 = ba.StructuredLayout(iff_2)
...
layout_1.addParticle(particle_1)
layout_2.addParticle(particle_2)
...
# Populate layer with structured layouts
layer.addStruct(layout_1)
layer.addStruct(layout_2)
...
layer.depositParticle(...) # and unstructured
The DA approach implies that the particles share the common interference function but present there with their individual weights. There is still no coherence between different types of particles.
Can be considered as a subcase of LMA.
Ordered
layout = ba.StructuredLayout(iff)
layout.addParticle(particle_1, weight_1)
layout.addParticle(particle_2, weight_2)
...
layer.addStruct(layout)
or disordered case
layer.depositParticle(density_1, particle_1)
layer.depositParticle(density_2, particle_2)
...
Applicable only to radial paracrystal.
The SSCA approach introduces phase shift between different fractions
with the common interference function within the layout.
This is done by setting parameter kappa
to 1 (it is 0 by default).
iff.setKappa(1)
layout = ba.StructuredLayout(iff)
layout.addParticle(particle_1, weight_1)
layout.addParticle(particle_2, weight_2)
...
layer.addStruct(layout)
Scattering from a distribution of cylinders of two different sizess, positioned according to the radial paracrystal model.
The sample is made of cylinders deposited on a substrate.
The distribution of particles is made of:
The interference function is radial paracrystal with a peak distance of $18$ nm and a damping length of $1$ $\mu$m. (LMA: two radial paracrystals with a peak distances of $16.8$ and $22.8$ nm.)
The wavelength is equal to 0.1 nm.
The incident angles are $\alpha_i = 0.2 ^{\circ}$ and $\varphi_i = 0^{\circ}$.
The example below compares the scattering patterns of all three approximations.
|
|