On-the-fly generator of space-group irreducible representations
Project description
spgrep
spgrep is a Python package of on-the-fly generator of space-group irreducible representations.
- Github: https://github.com/spglib/spgrep
- Document: https://spglib.github.io/spgrep
- Document(develop): https://spglib.github.io/spgrep/develop/
- PyPI: https://pypi-hypernode.com/project/spgrep
Features
- Calculate irreducible representations (irreps) of space groups from spglib’s cell and kpoints
- Calculate irreps of crystallographic point groups
- Calculate physically irreducible representations (irreps over real numbers)
- Find symmetry-adapted basis forming given irreps
- Minimal dependencies (numpy and spglib)
Usage
from spgrep import get_spacegroup_irreps
from spgrep.representation import get_character
# Rutile structure (https://materialsproject.org/materials/mp-2657/)
# P4_2/mnm (No. 136)
a = 4.603
c = 2.969
x_4f = 0.3046
lattice = [
[a, 0, 0],
[0, a, 0],
[0, 0, c],
]
positions = [
[0, 0, 0], # Ti(2a)
[0.5, 0.5, 0.5], # Ti(2a)
[x_4f, x_4f, 0], # O(4f)
[-x_4f, -x_4f, 0], # O(4f)
[-x_4f + 0.5, x_4f + 0.5, 0.5], # O(4f)
[x_4f + 0.5, -x_4f + 0.5, 0.5], # O(4f)
]
numbers = [0, 0, 1, 1, 1, 1]
kpoint = [0.5, 0, 0] # X point
irreps, rotations, translations, mapping_little_group = get_spacegroup_irreps(
lattice, positions, numbers, kpoint
)
# Symmetry operations by spglib
assert len(rotations) == 16
assert len(translations) == 16
# At X point, the little co-group is isomorphic to mmm (order=8)
assert len(mapping_little_group) == 8
print(mapping_little_group) # [ 0, 1, 4, 5, 8, 9, 12, 13]
# Two two-dimensional irreps
for irrep in irreps:
print(get_character(irrep))
# [2.+0.j 0.+0.j 0.+0.j 2.+0.j 0.+0.j 0.+0.j 0.+0.j 0.+0.j]
# [2.+0.j 0.+0.j 0.+0.j -2.+0.j 0.+0.j 0.+0.j 0.+0.j 0.+0.j]
See docs/examples for more detailed use cases.
Installation
spgrep works with Python3.8+ and can be installed via PyPI:
pip install spgrep
or in local:
conda create -n spgrep python=3.10 pip
conda activate spgrep
git clone git@github.com:spglib/spgrep.git
cd spgrep
pip install -e .
License
spgrep is released under a BSD 3-clause license.
Development
Installation
conda create -n spgrep python=3.10 pip
conda activate spgrep
git clone git@github.com:spglib/spgrep.git
cd spgrep
pip install -e ".[dev,docs]"
pre-commit install
# Run pre-commit manually
pre-commit run --all-file
Document
sphinx-autobuild docs docs_build
# open localhost:8000 in your browser
Release
# Confirm the version number via `setuptools-scm`
python -m setuptools_scm
# Update changelog here
vim docs/changelog.md
# Push with tag
git tag <next-version>
git push origin main
git push origin --tags
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
spgrep-0.2.12.tar.gz
(78.9 kB
view details)
Built Distribution
spgrep-0.2.12-py3-none-any.whl
(25.9 kB
view details)
File details
Details for the file spgrep-0.2.12.tar.gz
.
File metadata
- Download URL: spgrep-0.2.12.tar.gz
- Upload date:
- Size: 78.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.14
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6cfee5686d26a9b7d70e39543d996c19b012c901a87572f5a9184ddb95749b0f |
|
MD5 | 7fb11b89cd7194763dd1658777405bba |
|
BLAKE2b-256 | 3cb012bf81f46ab99769db5a3b57b5482f2ad9c873765444dbabc79ff7e87ffc |
File details
Details for the file spgrep-0.2.12-py3-none-any.whl
.
File metadata
- Download URL: spgrep-0.2.12-py3-none-any.whl
- Upload date:
- Size: 25.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.14
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f6be293a1dd8745dbcf2f0595aadbb23d17c9c08e77fe916588a313db5b735fa |
|
MD5 | 50b2c1ca25d721aeddd79724be680f4f |
|
BLAKE2b-256 | 169da3e8321a6bdb46df3920e494ac2b2d78e442fae11664268e469c1342ae5a |