Avogadro::Core::CrystalTools#

class CrystalTools#

The CrystalTools class contains a collection of static functions that perform common crystallographic operations on a Core::Molecule.

Public Types

enum Option#

The Option enum provides bitwise option flags for the various algorithms.

Values:

enumerator None#

No options specified.

enumerator TransformAtoms#

Transform atoms along with the unit cell.

enumerator RightHanded#

Enforce right-handed system

enumerator PerceivePeriodicBonds#

Bond the replicated cells to each other across periodic boundaries.

using Options = int#

Public Static Functions

static bool wrapAtomsToUnitCell(Molecule &molecule)#

Adjust the atomic positions in molecule so that the fractional (lattice) coordinates of all atoms are in the range [0, 1].

Returns:

True on success, false otherwise.

static bool rotateToStandardOrientation(Molecule &molecule, Options opts = None)#

This function will rotate the input molecule so that the unit cell’s ‘a’ vector is aligned to the x-axis, and the ‘b’ axis is in the xy-plane. It does not use trig functions or the cell parameters, since such implementations are fragile and cannot handle negative cell angles. The derivation of this algorithm can be found at http://xtalopt.openmolecules.net/misc/rotateToStdOrientation.pdf.

Parameters:

opts – If TransformAtoms is specified, the atoms in molecule are rotated along with the unit cell.

Returns:

True on success, false otherwise.

static bool setVolume(Molecule &molecule, Real newVolume, Options opts = None)#

Isotropically scale the volume of the unit cell in molecule to newVolume (in cubic angstrom).

Parameters:

opts – If TransformAtoms is specified, the atoms in molecule are adjusted so that their fractional (lattice) coordinates are preserved.

Returns:

True on success, false on failure.

static bool niggliReduce(Molecule &molecule, Options opts = None)#

Perform a Niggli reduction on molecule’s unit cell. This produces a canonical unit cell representation that strives to be as cubic as possible.

Note

Implements the niggli reduction algorithm detailed in: Grosse-Kunstleve RW, Sauter NK, Adams PD. Numerically stable algorithms for the computation of reduced unit cells. Acta Crystallographica Section A Foundations of Crystallography. 2003;60(1):1-6.

Parameters:

opts – If TransformAtoms is specified, the atom positions are modified to ensure that the same extended atomic structure from the input is represented by the output.

Returns:

True on success, false on failure.

static bool isNiggliReduced(const Molecule &mol)#

Return true if the unit cell in molecule is already Niggli-reduced. This method checks the conditions listed in the paper Gruber B.. Acta Cryst. A. 1973;29(4):433-440.

static Array<PeriodicBond> perceivePeriodicBonds(const Molecule &molecule, double tolerance = 0.45)#

Work out the full bond topology of a periodic structure, including the bonds that cross a cell boundary and are therefore missing from the molecule itself: once the atoms have been wrapped into the cell their periodic neighbours sit a whole cell away in Cartesian space, so ordinary distance-based perception never sees them.

The molecule’s own bonds come first in the returned list, in molecule bond order, followed by any that this pass perceived.

Every bond already in molecule comes back with its order intact and with the lattice offset of whichever image of the second atom lies nearest the first, so a bond stored stretched across the cell is reported as the short bond it really is. Further bonds are perceived only where they cross a cell boundary, using covalent radii plus tolerance. Pairs lying wholly inside the cell are left to the molecule’s own connectivity, so this never second-guesses the bonding that a file specified.

If molecule has no unit cell, or has no coordinates, its bonds are returned unchanged with zero offsets.

Parameters:

tolerance – Added to the sum of the two covalent radii.

static bool buildSupercell(Molecule &molecule, unsigned int a, unsigned int b, unsigned int c, Options opts = None)#

Build a supercell by expanding upon the unit cell of molecule. It will only return false if the molecule does not have a unit cell or if a, b, or c is set to zero.

Parameters:
  • a – The number of units along lattice vector a for the supercell

  • b – The number of units along lattice vector b for the supercell

  • c – The number of units along lattice vector c for the supercell

  • opts – If PerceivePeriodicBonds is specified, the copies are bonded to each other across the cell boundaries they share.

Returns:

True on success, false on failure.

static bool buildSupercell(Molecule &molecule, const Vector3 &rangeMin, const Vector3 &rangeMax, Options opts = None)#

Build a supercell by replicating the unit cell of molecule over a fractional range along each lattice vector, e.g. -0.5 to 0.5, or 0.0 to 1.5.

If every limit is an integer the result is a true supercell: the range is treated as half-open, the cell vectors are scaled by (max - min), and the atoms are shifted so that rangeMin lands on the new origin. Passing (0, 0, 0) and (a, b, c) is therefore identical to the integer form above.

A non-integer limit cannot describe a lattice, so in that case the unit cell is left untouched and the replicated atoms simply extend beyond it - the usual crystal packing view. The range is then treated as closed, so atoms lying on either bounding face are included.

Parameters:
  • rangeMin – The lower fractional limit along a, b and c.

  • rangeMax – The upper fractional limit along a, b and c.

  • opts – If PerceivePeriodicBonds is specified, the copies are bonded to each other across the cell boundaries they share, so that a molecule split by a boundary is drawn whole wherever both of its halves are present.

Returns:

True on success, false if molecule has no unit cell or if any axis has an empty range (max <= min).

static bool setCellMatrix(Molecule &molecule, const Matrix3 &newCellColMatrix, Options opt = None)#

Set the unit cell in molecule to represent the real-space column-vector unit cell description in newCellColMatrix. A unit cell is created if needed.

Parameters:

opt – If TransformAtoms is specified, the atoms in molecule are adjusted so that their fractional (lattice) coordinates are preserved. This option is ignored if the input molecule has no unit cell.

Returns:

True on success, false otherwise.

static bool fractionalCoordinates(const UnitCell &unitCell, const Array<Vector3> &cart, Array<Vector3> &frac)#

Populate the frac vector with the fractional representation of the cartesian coordinates in cart, using unitCell to perform the coordinate transformation.

Returns:

True on success, false otherwise.

static bool fractionalCoordinates(const Molecule &molecule, Array<Vector3> &coords)#

Populate the coords vector with the fractional coordinates of the atoms in molecule, using the unit cell of molecule to perform the coordinate transformation. Coordinates are ordered the same as the Molecule::atomPositions3d() result.

Returns:

True on success, false otherwise.

static bool setFractionalCoordinates(Molecule &molecule, const Array<Vector3> &coords)#

Set the atomic positions of molecule to the fractional coordinates in coords, using the unit cell of molecule to perform the coordinate transformation.

struct PeriodicBond#

A single bond of a periodic structure.

The bond joins atom1 to the image of atom2 displaced by offset lattice vectors, so a zero offset is an ordinary bond lying wholly inside the cell and anything else crosses a cell boundary.

Public Members

Index atom1#

Index of the first atom.

Index atom2#

Index of the second atom.

Vector3i offset#

Lattice translation applied to atom2, in whole cell units.

unsigned char order#

Bond order. Newly perceived bonds are always single.

bool perceived#

True if this pass found the bond, false if molecule already had it.