LePage algorithm#
The algorithm for the Bravais lattice type identification is bases on the search for the
twofold rotation axes and described in details in [1]. If you use results obtain with
this function of wulfric, please acknowledge that paper as the original source of the
algorithm. The algorithm is implemented in wulfric.cell.lepage()
function. On
this page we recall the algorithm with comments.
Accuracy#
Result of an algorithm outcome for a given cell might depend on two parameters limit
and angle_tolerance
. First is used for the construction of the set of possible
symmetry axes. The second one is used for the search of the actual symmetry axis in that
set. We recommend to vary angle_tolerance
if the computed lattice type does not match
your expectations. This parameter can be understood as the accuracy with which the angles
of the given cell are defined.
Algorithm#
Any cell passed to the lepage()
function is understood as a primitive one.
Step I#
Compute niggli reduced cell via the call to the niggli()
function.
Step II#
Generate all (125) the Miller indices for direct (\(U\)) and reciprocal (\(h\)) lattice:
[-2,-2,-2],
...,
[2, 2, 2]
Step III#
Run over all miller indices of direct cell and of all miller indices of reciprocal cell.
If \(\vert U \cdot h\vert = 2\) or \(\vert U \cdot h\vert = 1\) compute \(\delta\):
where (@ - means matrix multiplication)
t = U @ cell
tau = h @ reciprocal_cell
If \(\delta\) is less then a limit
, keep the entry:
Step IV#
Filter results to eliminate "twins" of direct indices:
\([1, 2, 0]\) and \([1, 2, 0]\)
\([1, 2, 0]\) and \([-1, -2, 0]\)
\([1, 0, -1]\) and \([2, 0, -2]\): \([1, 0, -1]\) is kept.
At this step the axes
list is computed
Step V#
Compute pairwise cosines between the twofold axes directions (angles
):
Step VI#
If you came from go to: delete axes with the biggest delta from axes
list.
Compute maximum \(\delta\). If it is less then maximum delta, finish and return result. If not proceed with the consecutive checks for the system types.
Step VII (cubic)#
Check for the cubic system. Cubic system has 9 even-order symmetry axis (in relative coordinates):
with the following angle matrix:
If angles
is the same as the cubic angle matrix,
then find three axes with the following set of angles:
\((0^{\circ} \times 1, 90^{\circ}\times 4, 45^{\circ} \times 4)\), put their Miller indices
in the matrix and compute its determinant \(\Delta\).
If \(\vert\Delta\vert = 1\), then set system type to "CUB".
If \(\vert\Delta\vert = 2\), then set system type to "BCC".
If \(\vert\Delta\vert = 4\), then set system type to "FCC".
Go to Step VI.
Step VIII (hexagonal)#
Check for the hexagonal system. Hexagonal system has 7 even-order symmetry axis (in relative coordinates):
with the following angle matrix:
If angles
is the same as the hexagonal angle matrix,
then set system type to "HEX".
Go to Step VI.
Step IX (tetragonal)#
Check for the tetragonal system. Tetragonal system has 5 even-order symmetry axis (in relative coordinates):
with the following angle matrix:
If angles
is the same as the tetragonal angle matrix,
then find one axes with the following set of angles:
\((0^{\circ} \times 1, 90^{\circ}\times 4)\). Take two axes with minimal length from
the remaining four. Make a matrix from the Miller indices of the three axes and compute
its determinant \(\Delta\).
If \(\vert\Delta\vert = 1\), then set system type to "TET".
If \(\vert\Delta\vert = 2\), then set system type to "BCT".
Go to Step VI.
Step X (rhombohedral)#
Check for the rhombohedral system. Rhombohedral system has 3 even-order symmetry axis (in relative coordinates):
with the following angle matrix:
If angles
is the same as the rhombohedral angle matrix,
then set system type to "RHL".
Go to Step VI.
Step XI (orthorhombic)#
Check for the orthorhombic system. Orthorhombic system has 3 even-order symmetry axis (in relative coordinates):
with the following angle matrix:
If angles
is the same as the orthorhombic angle matrix,
then make a matrix from the Miller indices of the three symmetry axes and
compute its determinant \(\Delta\).
If \(\vert\Delta\vert = 1\), then set system type to "ORC".
If \(\vert\Delta\vert = 4\), then set system type to ""ORCF".
- If \(\vert\Delta\vert = 2\), then check for "ORCC" vs "ORCI".
Define matrix \(C\) as the matrix where columns are the Miller indices of the three symmetry axes. Compute the vector:
v = C @ [1, 1, 1]
If the elements of v are coprime, then set system type to "ORCI", otherwise set the system type to "ORCC".
Go to Step VI.
Step XII (monoclinic)#
Check for the monoclinic system. Monoclinic system has 1 even-order symmetry axis (in relative coordinates with respect to the conventional lattice as defined in [2]):
with the following angle matrix:
If angles
is the same as the monoclinic angle matrix,
then define two shortest translation vectors in the plane
perpendicular to the twofold rotation axis. Put Miller indices of these
two vectors and of twofold axis in a matrix and compute its determinant \(\Delta\)
If \(\vert\Delta\vert = 1\), then set system type to "MCL".
If \(\vert\Delta\vert = 2\), then set system type to "MCLC".
Go to Step VI.
Step XIII (trigonal)#
If all previous checks failed set system type to "TRI" and go to Step VI.