Skip to content

Commit 813ab08

Browse files
authored
Merge pull request #691 from rkingsbury/main
update KSPACING in test per pymatgen #2163 change
2 parents 43a347a + b27e51a commit 813ab08

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

atomate/vasp/fireworks/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ def __init__(
150150
initialized with no parents, it will perform a GGA optimization of the provided
151151
structure using the PBESol functional. This GGA-relaxed structure is intended
152152
to be passed to a second instance of this Firework for optimization with SCAN.
153-
(see workflow definition in SCAN_optimization.yaml)
153+
(see workflow definition in metagga_optimization.yaml)
154154
155155
Args:
156156
structure (Structure): Input structure. Note that for prev_calc_loc jobs, the structure

atomate/vasp/workflows/tests/test_vasp_workflows.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -630,7 +630,7 @@ def test_SCAN_no_bandgap(self):
630630

631631
def test_SCAN_small_bandgap(self):
632632
# A structure with a small bandgap (LiH) should result in a KSPACING
633-
# value of 0.34292
633+
# value of 0.40503
634634

635635
structure = Structure.from_file(
636636
os.path.join(reference_dir, "PBESol_pre_opt_for_SCAN_LiH/inputs", "POSCAR")
@@ -671,7 +671,7 @@ def test_SCAN_small_bandgap(self):
671671
incar = Incar.from_file(os.path.join(self._get_launch_dir()[1], "INCAR.gz"))
672672
for p in incar.keys():
673673
if p == "KSPACING":
674-
self.assertAlmostEqual(incar[p], 0.34292, 4)
674+
self.assertAlmostEqual(incar[p], 0.40503, 4)
675675
elif p == "SIGMA":
676676
self.assertEqual(incar[p], 0.05)
677677
elif p == "ICHARG":

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ tqdm==4.61.1
88
pybtex==0.24.0
99
ruamel.yaml==0.17.9
1010
pandas==1.2.4
11-
pymatgen==2022.0.8
11+
pymatgen==2022.0.10
1212
custodian==2021.2.8
1313
networkx==2.5.1
1414
pydash==5.0.0

0 commit comments

Comments
 (0)