Skip to content

Commit e6e8201

Browse files
committed
Merge branch 'qcinput-vdw' of https://github.com/rkingsbury/atomate into qcinput-vdw
2 parents de3a81a + 9533b01 commit e6e8201

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

atomate/qchem/drones.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -362,8 +362,8 @@ def process_qchemrun(dir_name, taskname, input_file, output_file):
362362
d["input"]["pcm"] = temp_input.pcm
363363
d["input"]["solvent"] = temp_input.solvent
364364
d["input"]["smx"] = temp_input.smx
365-
d["input"]["vdw_mode"] = orig_input.vdw_mode
366-
d["input"]["van_der_waals"] = orig_input.van_der_waals
365+
d["input"]["vdw_mode"] = temp_input.vdw_mode
366+
d["input"]["van_der_waals"] = temp_input.van_der_waals
367367
d["task"] = {"type": taskname, "name": taskname}
368368
return d
369369

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)