Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added lobster calc quality summary method to analyze module #115

Merged
merged 3 commits into from
Sep 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lobsterpy/cohp/describe.py
Original file line number Diff line number Diff line change
Expand Up @@ -589,7 +589,7 @@ def get_calc_quality_description(quality_dict):
text_des.append(
"The bandOverlaps.lobster file is generated during the LOBSTER run. This "
"indicates that the projected wave function is not completely orthonormalized. "
"The maximal deviation value from the identity matrix is {}, and there exist "
"The maximal deviation value from the identity matrix is {}, and there are "
"{} percent k-points above the deviation threshold of 0.1. Please check the "
"results of other quality checks like dos comparisons, charges, "
"charge spillings before using the results for further "
Expand Down
2 changes: 1 addition & 1 deletion lobsterpy/cohp/test/test_describe.py
Original file line number Diff line number Diff line change
Expand Up @@ -501,7 +501,7 @@ def test_calc_quality_description_text(self):
"The absolute and total charge spilling for the calculation is 3.01 and 13.73 %, respectively.",
"The bandOverlaps.lobster file is generated during the LOBSTER run. This indicates that the projected "
"wave function is not completely orthonormalized. "
"The maximal deviation value from the identity matrix is 0.4285, and there exist 0.1822 percent "
"The maximal deviation value from the identity matrix is 0.4285, and there are 0.1822 percent "
"k-points above the deviation threshold of 0.1. Please check the results of other quality checks "
"like dos comparisons, charges, charge spillings before using the results for further analysis.",
"The atomic charge signs from Mulliken population analysis agree with the bond valence analysis.",
Expand Down