Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
K
kwant
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Joseph Weston
kwant
Commits
c7e30cb9
Commit
c7e30cb9
authored
12 years ago
by
Christoph Groth
Browse files
Options
Downloads
Patches
Plain Diff
improve kwant.builder.Symmetry docstring
parent
eb6987d1
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
kwant/builder.py
+18
-14
18 additions, 14 deletions
kwant/builder.py
with
18 additions
and
14 deletions
kwant/builder.py
+
18
−
14
View file @
c7e30cb9
...
...
@@ -181,23 +181,27 @@ class SimpleSiteGroup(SiteGroup):
class
Symmetry
(
object
):
"""
Abstract base class for spatial symmetries.
Many physical systems possess discrete spatial symmetry, which results in
special properties of these systems. This class is a standard tool to
describe discrete spatial symmetries in kwant, where the symmetry of a
`Builder` is specified at its creation. The most important kind of the
symmetry is translational symmetry, used to define scattering leads. This
class is designed with translational symmetry in mind, and will possibly be
modified/extended in future.
Many physical systems possess a discrete spatial symmetry, which results in
special properties of these systems. This class is the standard way to
describe discrete spatial symmetries in kwant. An instance of this class
can be passed to a `Builder` instance at its creation. The most important
kind of symmetry is translational symmetry, used to define scattering
leads.
Each symmetry has a fundamental domain -- a set of sites and hoppings,
generating all the possible sites and hoppings upon action of symmetry
group elements. The class derived from `Symmetry` has to implement mapping
of any site or hopping (a tuple of two sites) into the fundamental domain,
applying a symmetry group element to a site or a hopping, and a method
`which` to determine the group element bringing some site from the
fundamental domain to the requested one. Additionally, it has to have a
property `num_directions` returning the number of independent symmetry
group generators (number of elementary periods for translational symmetry).
group elements. A class derived from `Symmetry` has to implement mapping
of any site or hopping into the fundamental domain, applying a symmetry
group element to a site or a hopping, and a method `which` to determine the
group element bringing some site from the fundamental domain to the
requested one. Additionally, it has to have a property `num_directions`
returning the number of independent symmetry group generators (number of
elementary periods for translational symmetry).
A ``ValueError`` must be raised by the symmetry class whenever a symmetry
is used together with sites whose site group is not compatible with it. A
typical example of this is when the vector defining a translational
symmetry is not a lattice vector.
"""
__metaclass__
=
abc
.
ABCMeta
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment