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.11.tar.gz
(76.5 kB
view details)
Built Distribution
spgrep-0.2.11-py3-none-any.whl
(24.2 kB
view details)
File details
Details for the file spgrep-0.2.11.tar.gz
.
File metadata
- Download URL: spgrep-0.2.11.tar.gz
- Upload date:
- Size: 76.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3b800ffc3904c03320aae96451fd7e4bf3da3f9b7b6259a04c0b02782c6c8818 |
|
MD5 | dfb4569df73e2db94017b4e01510b1d8 |
|
BLAKE2b-256 | 503e884054285f6fdae5e065c48db8c8ae17c55766916d97ae369a03af23c7dc |
File details
Details for the file spgrep-0.2.11-py3-none-any.whl
.
File metadata
- Download URL: spgrep-0.2.11-py3-none-any.whl
- Upload date:
- Size: 24.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ff09440434ba65f720881ba41ee68bb699cc831b07ab50fda99d2ae13afe09f4 |
|
MD5 | 24439bcfa08d356b9153a1d3303c9bce |
|
BLAKE2b-256 | 4933ed83093e14f00fb6982939157284a900067939ad78d1189a46ae01916e2c |