kwant.lattice.TranslationalSymmetry

class kwant.lattice.TranslationalSymmetry(*periods)

Bases: kwant.builder.Symmetry

A translational symmetry defined in real space.

Group elements of this symmetry are integer tuples of appropriate length.

Parameters:

p0, p1, p2, ... : sequences of real numbers

The symmetry periods in real space.

Notes

This symmetry automatically chooses the fundamental domain for each new SiteFamily it encounters. If this site family does not correspond to a Bravais lattice, or if it does not have a commensurate period, an error is produced. A certain flexibility in choice of the fundamental domain can be achieved by calling manually the add_site_family method and providing it the other_vectors parameter.

The fundamental domain for hoppings are all hoppings (a, b) with site a in fundamental domain of sites.

Methods

act(element, a, b=None)
add_site_family(fam, other_vectors=None)

Select a fundamental domain for site family and cache associated data.

Parameters:

fam : SiteFamily

the site family which has to be processed. Be sure to delete the previously processed site families from site_family_data if you want to modify the cache.

other_vectors : list of lists of integers

Bravais lattice vectors used to complement the periods in forming a basis. The fundamental domain consists of all the lattice sites for which the zero coefficients corresponding to the symmetry periods in the basis formed by the symmetry periods and other_vectors. If an insufficient number of other_vectors is provided to form a basis, the missing ones are selected automatically.

Raises:

KeyError

If fam is already stored in site_family_data.

ValueError

If lattice fam is incompatible with given periods.

in_fd(site)

Tell whether site lies within the fundamental domain.

reversed()

Return a reversed copy of the symmetry.

The resulting symmetry has all the period vectors opposite to the original and an identical fundamental domain.

to_fd(a, b=None)
which(site)

Attributes

num_directions

Previous topic

3.3. kwant.lattice – Bravais lattices

Next topic

kwant.lattice.general

This Page