We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 102cb8a commit 56a3b0fCopy full SHA for 56a3b0f
pyscf/dispersion/tests/test_d4.py
@@ -29,6 +29,13 @@ def test_d4_energy():
29
out = model.get_dispersion()
30
assert abs(out['energy'] - -2.21334459527e-05) < 1e-10
31
32
+def test_wb97x_d4_energy():
33
+ mol = pyscf.M(atom='H 0 0 0; H 0 0 1')
34
+ model = DFTD4Dispersion(mol, xc='WB97X')
35
+ out = model.get_dispersion()
36
+ print(out)
37
+ #assert abs(out['energy'] - -2.21334459527e-05) < 1e-10
38
+
39
def test_d4_gradients():
40
mol = pyscf.M(atom='H 0 0 0; H 0 0 1')
41
model = DFTD4Dispersion(mol, xc='HF')
0 commit comments