forked from ferchault/APHF
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathverify.py
85 lines (66 loc) · 2.42 KB
/
verify.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
#!/usr/bin/env python
#%%
import warnings
warnings.filterwarnings("ignore")
import sys
from pyscf.gto import basis
import pyscf.scf
import pyscf.gto
import pyscf.qmmm
import configparser
import basis_set_exchange as bse
#%%
angstrom = 1 / 0.52917721067
def add_qmmm(calc, mol, deltaZ):
mf = pyscf.qmmm.mm_charge(calc, mol.atom_coords() / angstrom, deltaZ)
def energy_nuc(self):
q = mol.atom_charges().astype(float)
q += deltaZ
return mol.energy_nuc(q)
mf.energy_nuc = energy_nuc.__get__(mf, mf.__class__)
return mf
def build_system(filename):
config = configparser.ConfigParser()
with open(filename) as fh:
config.read_file(fh)
reference_Zs = config["meta"]["reference"].strip().split()
basis_Zs = config["meta"]["basis"].strip().split()
target_Zs = config["meta"]["target"].strip().split()
coords = config["meta"]["coords"].strip().split("\n")
mol = []
N = 0
atomspec = ""
basisspec = {}
idx = 0
deltaZ = []
for ref, tar, bas, coord in zip(reference_Zs, target_Zs, basis_Zs, coords):
N += int(ref)
deltaZ.append(int(tar) - int(ref))
try:
ref = bse.lut.element_data_from_Z(int(ref))[0].capitalize()
except:
ref = "X"
bas = bse.lut.element_data_from_Z(int(bas))[0].capitalize()
coord = tuple([float(_) / angstrom for _ in coord.split()])
atomspec += f"{ref}:{idx} {coord[0]} {coord[1]} {coord[2]};"
bsespec = bse.get_basis(config["meta"]["basisset"], elements=bas, fmt="NWCHEM")
basisspec[f"{ref}:{idx}"] = pyscf.gto.parse(bsespec)
idx += 1
mol = pyscf.gto.M(atom=atomspec, basis=basisspec, verbose=0)
calc_target = add_qmmm(pyscf.scf.RHF(mol), mol, deltaZ)
eref = float(config["singlepoints"]["energy_0"])
etarget = float(config["singlepoints"]["energy_target"])
return mol, eref, etarget, calc_target
if __name__ == "__main__":
mol, eref, etarget, calc_target = build_system(sys.argv[1])
calc = pyscf.scf.RHF(mol)
calc.kernel()
calc_target.kernel()
if abs(calc.energy_elec()[0] - eref) < 1e-6:
print("OK ref", sys.argv[1])
else:
print("EE ref", sys.argv[1], "pyscf", calc.energy_elec()[0], "fd", eref)
if abs(calc_target.energy_elec()[0] - etarget) < 1e-6:
print("OK tar", sys.argv[1])
else:
print("EE tar", sys.argv[1], "pyscf", calc_target.energy_elec()[0], "fd", etarget)