-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Bug fix for PC band path Cartesian coordinate conversion * Improved band structures plotting * Implemented plotting band centers at each SCF cycles * Implemented save band structure data independently * Implemented effective mass modules * Added version track file * Added bibliography file (.bib) for referencing * Added tips and tricks in README * Documentation improved * Bug fix in tutorial scipts * Fix some printing mistakes --------- Co-authored-by: Badal Mondal <[email protected]>
- Loading branch information
Showing
33 changed files
with
19,378 additions
and
18,383 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
|
||
``` | ||
@article{EffectsMedeirosPRB2014, | ||
title = {Effects of extrinsic and intrinsic perturbations on the electronic structure of graphene: Retaining an effective primitive cell band structure by band unfolding}, | ||
author = {Medeiros, Paulo V. C. and Stafstr\"om, Sven and Bj\"ork, Jonas}, | ||
journal = {Phys. Rev. B}, | ||
volume = {89}, | ||
issue = {4}, | ||
pages = {041407}, | ||
numpages = {4}, | ||
year = {2014}, | ||
month = {Jan}, | ||
publisher = {American Physical Society}, | ||
doi = {10.1103/PhysRevB.89.041407}, | ||
url = {https://link.aps.org/doi/10.1103/PhysRevB.89.041407} | ||
} | ||
@article{UnfoldingMedeirosPRB2015, | ||
title = {Unfolding spinor wave functions and expectation values of general operators: Introducing the unfolding-density operator}, | ||
author = {Medeiros, Paulo V. C. and Tsirkin, Stepan S. and Stafstr\"om, Sven and Bj\"ork, Jonas}, | ||
journal = {Phys. Rev. B}, | ||
volume = {91}, | ||
issue = {4}, | ||
pages = {041116}, | ||
numpages = {5}, | ||
year = {2015}, | ||
month = {Jan}, | ||
publisher = {American Physical Society}, | ||
doi = {10.1103/PhysRevB.91.041116}, | ||
url = {https://link.aps.org/doi/10.1103/PhysRevB.91.041116} | ||
} | ||
@article{IrRepIraolaCPC2022, | ||
title = {IrRep: Symmetry eigenvalues and irreducible representations of ab initio band structures}, | ||
author = {Iraola, Mikel and Mañes, Juan L. and Bradlyn, Barry and Horton, Matthew K. and Neupert, Titus and Vergniory, Maia G. and Tsirkin, Stepan S.}, | ||
journal = {Comput. Phys. Commun.}, | ||
volume = {272}, | ||
pages = {108226}, | ||
year = {2022}, | ||
issn = {0010-4655}, | ||
doi = {10.1016/j.cpc.2021.108226}, | ||
url = {https://www.sciencedirect.com/science/article/pii/S0010465521003386} | ||
} | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
__Latest release: v0.3.2__ | ||
|
||
__v0.3.2__ | ||
|
||
* Bug fix for PC band path cartesian coordinate conversion | ||
* Improved band structures plotting | ||
* Implemented plotting band centers at each SCF cycles | ||
* Implemened save band structure data independently | ||
* Implemented effective mass modules | ||
* Added version track file | ||
* Added bibliograpy file (.bib) for referencing | ||
* Added tips and tricks in README | ||
* Documentation improved | ||
|
||
__v0.3.1__ | ||
|
||
* Package release in PyPi repository | ||
|
||
__v0.2.1__ | ||
|
||
* Package restructuring with significant code reimplementation | ||
* Documentation improved | ||
* Implemented folding degree module | ||
* Band centers determination algorithm implemented | ||
* Unfolded band structures plotting module improved | ||
|
||
__v0.2.0__ | ||
|
||
* Band unfolding implemented | ||
* Plot unfolded band structures implemented | ||
|
||
|
||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
from .general_functions import SaveData2File, _BasicFunctionsModule | ||
from .general_functions import _SaveData2File, _BasicFunctionsModule | ||
|
||
|
||
__all__ = ['SaveData2File','_BasicFunctionsModule'] | ||
__all__ = ['_SaveData2File','_BasicFunctionsModule'] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.