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/
- 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]
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 .
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
# Test a release version at rc branch
git checkout rc
# Update changelog here
# Push with tag
git tag <next-version>
git push --follow-tags origin rc
# Merge to main
git checkout main
git merge rc
git push --follow-tags origin main
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.8.tar.gz
(41.5 kB
view details)
Built Distribution
File details
Details for the file spgrep-0.2.8.tar.gz
.
File metadata
- Download URL: spgrep-0.2.8.tar.gz
- Upload date:
- Size: 41.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 | 606b8cf06b0e11dd909fab6deb2112c399bd8ff47bc89832cc08f2e7c42c945d |
|
MD5 | eb2cf729e9cdf90104db13bbc3c50375 |
|
BLAKE2b-256 | dc9782f776eb249416b06fa15ddaafcb997ab7de5a41efe2fe1db1d7ca560f81 |
File details
Details for the file spgrep-0.2.8-py3-none-any.whl
.
File metadata
- Download URL: spgrep-0.2.8-py3-none-any.whl
- Upload date:
- Size: 3.7 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 | 12838ab45808ea35701795942c030ceaa55e5927bcecdb575c5710609e0c4633 |
|
MD5 | 9a99b453ce48c349bad62c44c360f4b2 |
|
BLAKE2b-256 | 825a0eca37b022b346e367016da41411a11ee67d830af486744fdd3a45723470 |