Skip to content

Commit

Permalink
Further updating POTCAR validation / identification (#3392)
Browse files Browse the repository at this point in the history
* Updating potcar_summary_stats to reflect that multiple subvariants of POTCARs with the same TITEL exist in VASP

* Recomputed POTCAR summary stats, ensuring POTCARs with duplicate TITELs are accounted for

* Correcting (i) Some POTCARs are misplaced (e.g., C_d  is an LDA POTCAR but lives in the PBE official release; (ii) some POTCARs were updated in place with no version contrl (e.g., Eu and other lanthanides were updated in PBE releases but not renamed)

* pre-commit auto-fixes

* update test_potcar_summary_stats to include new potcar stats

---------

Co-authored-by: Aaron Kaplan <aaronkaplan@Aarons-MBP.dhcp.lbl.gov>
Co-authored-by: Janosh Riebesell <janosh.riebesell@gmail.com>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
  • Loading branch information
4 people committed Oct 10, 2023
1 parent 14a6c56 commit c7e0355
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 22 deletions.
54 changes: 33 additions & 21 deletions pymatgen/io/vasp/inputs.py
Original file line number Diff line number Diff line change
Expand Up @@ -2135,25 +2135,28 @@ def is_valid(self) -> bool:
tol is then used to match statistical values within a tolerance
"""
functional_lexch = {
"PE": ["PBE", "PBE_52", "PBE_52_W_HASH", "PBE_54", "PBE_54_W_HASH", "PBE_64"],
"CA": ["LDA", "LDA_52", "LDA_52_W_HASH", "LDA_54", "LDA_54_W_HASH", "LDA_64", "LDA_US", "Perdew_Zunger81"],
"91": ["PW91", "PW91_US"],
}

possible_potcar_matches = []
for func in functional_lexch.get(self.LEXCH, []):
"""
Some POTCARs have an LEXCH (functional used to generate the POTCAR)
with the expected functional, e.g., the C_d POTCAR for PBE is actually an
LDA pseudopotential.
Thus we have to look for matches in all POTCAR dirs, not just the ones with
consistent values of LEXCH
"""
for func in self.functional_dir:
for titel_no_spc in self.potcar_summary_stats[func]:
if (self.TITEL.replace(" ", "") == titel_no_spc) and (
self.VRHFIN.replace(" ", "") == self.potcar_summary_stats[func][titel_no_spc]["VRHFIN"]
):
possible_potcar_matches.append(
{
"POTCAR_FUNCTIONAL": func,
"TITEL": titel_no_spc,
**self.potcar_summary_stats[func][titel_no_spc],
}
)
if self.TITEL.replace(" ", "") == titel_no_spc:
for potcar_subvariant in self.potcar_summary_stats[func][titel_no_spc]:
if self.VRHFIN.replace(" ", "") == potcar_subvariant["VRHFIN"]:
possible_potcar_matches.append(
{
"POTCAR_FUNCTIONAL": func,
"TITEL": titel_no_spc,
**potcar_subvariant,
}
)

def parse_fortran_style_str(input_str: str) -> Any:
"""Parse any input string as bool, int, float, or failing that, str.
Expand Down Expand Up @@ -2311,11 +2314,20 @@ def _gen_potcar_summary_stats(
]
for potcar in potcar_list:
psp = PotcarSingle.from_file(potcar)
new_summary_stats[func][psp.TITEL.replace(" ", "")] = {
"LEXCH": psp.LEXCH,
"VRHFIN": psp.VRHFIN.replace(" ", ""),
**psp._summary_stats,
}
titel_key = psp.TITEL.replace(" ", "")

# some POTCARs have the same TITEL, but are named differently
# e.g., there is an "original" PBE POTCAR.Fe_pv and a POTCAR.Fe_pv_new
# which share a TITEL but differ in their contents
if titel_key not in new_summary_stats[func]:
new_summary_stats[func][titel_key] = []
new_summary_stats[func][titel_key].append(
{
"LEXCH": psp.LEXCH,
"VRHFIN": psp.VRHFIN.replace(" ", ""),
**psp._summary_stats,
}
)

dumpfn(new_summary_stats, summary_stats_filename)

Expand Down
Binary file modified pymatgen/io/vasp/potcar_summary_stats.json.gz
Binary file not shown.
2 changes: 1 addition & 1 deletion tests/io/vasp/test_inputs.py
Original file line number Diff line number Diff line change
Expand Up @@ -1236,7 +1236,7 @@ def test_potcar_summary_stats() -> None:

assert len(potcar_summary_stats) == 16
n_potcars_per_functional = {
"PBE": 251,
"PBE": 271,
"PBE_52": 303,
"PBE_54": 326,
"PBE_64": 343,
Expand Down

0 comments on commit c7e0355

Please sign in to comment.