Representation of a physical lattice, with symmetry information on two-point correlators.
More...
|
| ~Lattice () |
| Destroy the Lattice object.
|
|
LatticeIterator | begin () const |
| Retrieve iterator to first lattice site. More...
|
|
LatticeIterator | zero () const |
| Retrieve iterator to the lattice site i1=(0,0,0,0). More...
|
|
LatticeIterator | end () const |
| Retrieve iterator to the last+1 lattice site. More...
|
|
LatticeIterator | fromParametrization (const int rid) const |
| Retrieve iterator to the specified representative. More...
|
|
std::tuple< int, int, int, int > | getSiteParameters (const LatticeIterator &site) const |
| Get the coordinates of a specified lattice site, in units of a1, a2, a3, and b. More...
|
|
geometry::Vec3< double > | getSitePosition (const LatticeIterator &site) const |
| Get the position of a lattice site in real space. More...
|
|
int | symmetryTransform (const LatticeIterator &i1, const LatticeIterator &i2) const |
| Transform a pair of lattice sites (i1,i2) and transform it to (0,i2'). The transformation may involve a permutation of spin components, whose action will be ignored. More...
|
|
int | symmetryTransform (const LatticeIterator &i1, const LatticeIterator &i2, SpinComponent &spinComponent) const |
| Transform a pair of lattice sites (i1,i2) and transform it to (0,i2'). The transformation may involve a permutation of spin components, in which case the transformation is applied to the spinComponent argument. More...
|
|
int | symmetryTransform (const LatticeIterator &i1, const LatticeIterator &i2, SpinComponent &spinComponent1, SpinComponent &spinComponent2) const |
| Transform a pair of lattice sites (i1,i2) and transform it to (0,i2'). The transformation may involve a permutation of spin components, in which case the transformation is applied to the spinComponent1 and spinComponent2 arguments. More...
|
|
int | symmetryTransform (const LatticeIterator &i1, const LatticeIterator &i2, SpinComponent &spinComponent1, SpinComponent &spinComponent2, SpinComponent &spinComponent3) const |
| Transform a pair of lattice sites (i1,i2) and transform it to (0,i2'). The transformation may involve a permutation of spin components, in which case the transformation is applied to the spinComponent1, spinComponent2, and spinComponent3 arguments. More...
|
|
const LatticeOverlap & | getOverlap (const int rid) const |
| Retrieve the lattice overlap of the reference site i1=(0,0,0,0) with some other representative lattice site. The overlap is defined as all lattice sites which are within range of both lattice site. More...
|
|
const LatticeSiteDescriptor * | getInvertedSites () const |
| List of two-spin correlators (i2,i1), where i1=(0,0,0,0) is the reference site and the list includes all reference sites i2. More...
|
|
const LatticeSiteDescriptor * | getSites () const |
| List of two-spin correlators (i1,i2), where i1=(0,0,0,0) is the reference site and the list includes all reference sites i2. More...
|
|
SublatticeIterator | getRange (const LatticeIterator &b) const |
| Retrieve an iterator over all sites which are within range of the lattice site b, where b must describe one of the basis sites. More...
|
|
SublatticeIterator | getRange (const int b) const |
| Retrieve an iterator over all sites which are within range of the lattice site (0,0,0,b). More...
|
|
SublatticeIterator | getBasis () const |
| Retrieve iterator over all basis sites. More...
|
|
|
std::vector< std::tuple< int, int, int, int > > | _geometryTable |
| Internal storage of real space lattice site positions, stored as tuples (a0, a1, a2, b).
|
|
int | _dataSize |
| Total number of all lattice that we store information about (equivalent to size of Lattice::_geometryTable).
|
|
LatticeSiteDescriptor * | _symmetryTable |
| List of symmetry reductions of spin pairs (id1, id2) linearized as id1*_dataSize+id2. Stores the transformation required to map id1 to zero.
|
|
LatticeSiteDescriptor * | _bufferSites |
| List of transformed sites (0, rid), for all representatives rid.
|
|
LatticeSiteDescriptor * | _bufferInvertedSites |
| List of transformed sites (rid, 0), for all representatives rid.
|
|
LatticeOverlap * | _bufferOverlapMatrices |
| List of lattice overlaps, where the i-th entry is the overlap of the two tuples (0,j)(j,i).
|
|
int * | _bufferBasis |
| List of representative ids of all basis sites.
|
|
int ** | _bufferLatticeRange |
| Table of lists of all site ids in range of site (0,0,0,b).
|
|
Representation of a physical lattice, with symmetry information on two-point correlators.
The lattice representation exploits symmetries. A given lattice contains a finite number of sites, which depends on the selected lattice range parameter. The lattice would store all sites within the specified range (distance measured in units of lattice bonds) around any of the basis sites.
Using lattice symmetries, out of any pair of lattice sites (any two-point correlator), one site can always be mapped to a fixed reference si te at the origin. The second lattice site, under this mapping, would then be mapped to some other site. Therefore, the two-point correlators after symmetry reduction only depend on a single lattice site. The minimum set up these sites, which is required to represent any two-point correlator, is enumerated by the so-called representative id, ranging from zero to some finite value which depends on the lattice geometry.
The lattice representation provides methods to quickly iterate over the lattice, iterate over certain sublattice regions, or to map any two-point correlator to the corresponding representative site.