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.3.0.tar.gz
(83.7 kB
view details)
Built Distribution
spgrep-0.3.0-py3-none-any.whl
(28.3 kB
view details)
File details
Details for the file spgrep-0.3.0.tar.gz
.
File metadata
- Download URL: spgrep-0.3.0.tar.gz
- Upload date:
- Size: 83.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9dc91460f3b689dd32cce83b67fc17f4869a7706e7f82a3c5d6a950e9d2e460f |
|
MD5 | 3a522f53fb259792df6be5064a7a2750 |
|
BLAKE2b-256 | 1138560ae8f73dda45c981ac4744553cc6089dd60544a8315c9eb900003c9913 |
File details
Details for the file spgrep-0.3.0-py3-none-any.whl
.
File metadata
- Download URL: spgrep-0.3.0-py3-none-any.whl
- Upload date:
- Size: 28.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | de9639ead11d7afe8dd5648d70037f0d20ac116f60675f685bf9a4018db50def |
|
MD5 | a3cf34add9962dfcf7b6ca392f8ee9a2 |
|
BLAKE2b-256 | 35219265fe2f2da4c28a629368659c55a8b0f7dfd8fd49d81e5880183d7f31d5 |