forked from pyscf/gpu4pyscf
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add property calculation codes, including NMR shielding constants, polarizability and IR intensity. * Add the polarizability's unittest. NMR needs DEBUGGING! * Clean the NMR codes and add a unittest. * Add some comments to unit tests. * Write the unit test for IR intensity. * Add a test for ir intensity WIP * Add the unit test for IR, and remove some comments. * Fix some typos * Fix some instandard codes.
- Loading branch information
Showing
7 changed files
with
869 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# Copyright 2023 The GPU4PySCF Authors. All Rights Reserved. | ||
# | ||
# This program is free software: you can redistribute it and/or modify | ||
# it under the terms of the GNU General Public License as published by | ||
# the Free Software Foundation, either version 3 of the License, or | ||
# (at your option) any later version. | ||
# | ||
# This program is distributed in the hope that it will be useful, | ||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
# GNU General Public License for more details. | ||
# | ||
# You should have received a copy of the GNU General Public License | ||
# along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
from gpu4pyscf.properties import polarizability, ir, shielding |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,129 @@ | ||
# Copyright 2023 The GPU4PySCF Authors. All Rights Reserved. | ||
# | ||
# This program is free software: you can redistribute it and/or modify | ||
# it under the terms of the GNU General Public License as published by | ||
# the Free Software Foundation, either version 3 of the License, or | ||
# (at your option) any later version. | ||
# | ||
# This program is distributed in the hope that it will be useful, | ||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
# GNU General Public License for more details. | ||
# | ||
# You should have received a copy of the GNU General Public License | ||
# along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
from functools import reduce | ||
from pyscf.hessian import thermo | ||
import numpy as np | ||
import cupy | ||
from pyscf.data import elements, nist | ||
from scipy.constants import physical_constants | ||
from gpu4pyscf.lib import logger | ||
from gpu4pyscf.lib.cupy_helper import contract | ||
|
||
LINDEP_THRESHOLD = 1e-7 | ||
|
||
|
||
def eval_ir_freq_intensity(mf, hessian_obj): | ||
"""main function to calculate the polarizability | ||
Args: | ||
mf: mean field object | ||
unit (str, optional): the unit of the polarizability. Defaults to 'au'. | ||
Returns: | ||
polarizability (numpy.array): polarizability | ||
""" | ||
log = logger.new_logger(hessian_obj, mf.mol.verbose) | ||
hessian = hessian_obj.kernel() | ||
hartree_kj = nist.HARTREE2J*1e3 | ||
unit2cm = ((hartree_kj * nist.AVOGADRO)**.5 / (nist.BOHR*1e-10) | ||
/ (2*np.pi*nist.LIGHT_SPEED_SI) * 1e-2) | ||
natm = mf.mol.natm | ||
nao = mf.mol.nao | ||
dm0 = mf.make_rdm1() | ||
|
||
atom_charges = mf.mol.atom_charges() | ||
mass = cupy.array([elements.MASSES[atom_charges[i]] for i in range(natm)]) | ||
# hessian_mass = contract('ijkl,i,j->ijkl', hessian, | ||
# 1/cupy.sqrt(mass), 1/cupy.sqrt(mass)) | ||
hessian_mass = contract('ijkl,i->ijkl', cupy.array(hessian), 1/cupy.sqrt(mass)) | ||
hessian_mass = contract('ijkl,j->ijkl', hessian_mass, 1/cupy.sqrt(mass)) | ||
|
||
TR = thermo._get_TR(mass.get(), mf.mol.atom_coords()) | ||
TRspace = [] | ||
TRspace.append(TR[:3]) | ||
|
||
rot_const = thermo.rotation_const(mass.get(), mf.mol.atom_coords()) | ||
rotor_type = thermo._get_rotor_type(rot_const) | ||
if rotor_type == 'ATOM': | ||
pass | ||
elif rotor_type == 'LINEAR': # linear molecule | ||
TRspace.append(TR[3:5]) | ||
else: | ||
TRspace.append(TR[3:]) | ||
|
||
if TRspace: | ||
TRspace = cupy.vstack(TRspace) | ||
q, r = cupy.linalg.qr(TRspace.T) | ||
P = cupy.eye(natm * 3) - q.dot(q.T) | ||
w, v = cupy.linalg.eigh(P) | ||
bvec = v[:,w > LINDEP_THRESHOLD] | ||
h = reduce(cupy.dot, (bvec.T, hessian_mass.transpose(0,2,1,3).reshape(3*natm,3*natm), bvec)) | ||
e, mode = cupy.linalg.eigh(h) | ||
mode = bvec.dot(mode) | ||
|
||
c = contract('ixn,i->ixn', mode.reshape(natm, 3, -1), | ||
1/np.sqrt(mass)).reshape(3*natm, -1) | ||
freq = cupy.sign(e)*cupy.sqrt(cupy.abs(e))*unit2cm | ||
|
||
mo_coeff = mf.mo_coeff | ||
mo_occ = mf.mo_occ | ||
mo_energy = mf.mo_energy | ||
mo_coeff = cupy.array(mo_coeff) | ||
mo_occ = cupy.array(mo_occ) | ||
mo_energy = cupy.array(mo_energy) | ||
mocc = mo_coeff[:, mo_occ > 0] | ||
mocc = cupy.array(mocc) | ||
|
||
atmlst = range(natm) | ||
h1ao = hessian_obj.make_h1(mo_coeff, mo_occ, None, atmlst) | ||
# TODO: compact with hessian method, which can save one time cphf solve. | ||
# ! Different from PySCF, mo1 is all in mo! | ||
mo1, mo_e1 = hessian_obj.solve_mo1(mo_energy, mo_coeff, mo_occ, h1ao, | ||
None, atmlst, hessian_obj.max_memory, log) | ||
|
||
|
||
tmp = cupy.empty((3, 3, natm)) # dipole moment, x,y,z | ||
aoslices = mf.mol.aoslice_by_atom() | ||
with mf.mol.with_common_orig((0, 0, 0)): | ||
hmuao = mf.mol.intor('int1e_r') # mu | ||
hmuao11 = -mf.mol.intor('int1e_irp').reshape(3, 3, nao, nao) | ||
hmuao = cupy.array(hmuao) | ||
hmuao11 = cupy.array(hmuao11) | ||
for i0, ia in enumerate(atmlst): | ||
shl0, shl1, p0, p1 = aoslices[ia] | ||
h11ao = cupy.zeros((3, 3, nao, nao)) | ||
|
||
h11ao[:, :, :, p0:p1] += hmuao11[:, :, :, p0:p1] | ||
h11ao[:, :, p0:p1] += hmuao11[:, :, :, p0:p1].transpose(0, 1, 3, 2) | ||
|
||
tmp0 = contract('ypi,vi->ypv', mo1[ia], mocc) # nabla | ||
dm1 = contract('ypv,up->yuv', tmp0, mo_coeff) | ||
tmp[:, :, ia] = -contract('xuv,yuv->xy', hmuao, dm1) * 4 #the minus means the density should be negative, but calculate it is positive. | ||
tmp[:, :, ia] -= contract('xyuv,vu->xy', h11ao, dm0) | ||
tmp[:, :, ia] += mf.mol.atom_charge(ia)*cupy.eye(3) | ||
|
||
alpha = physical_constants["fine-structure constant"][0] | ||
amu = physical_constants["atomic mass constant"][0] | ||
m_e = physical_constants["electron mass"][0] | ||
N_A = physical_constants["Avogadro constant"][0] | ||
a_0 = physical_constants["Bohr radius"][0] | ||
unit_kmmol = alpha**2 * (1e-3 / amu) * m_e * N_A * np.pi * a_0 / 3 | ||
|
||
intensity = contract('xym,myn->xn', tmp, c.reshape(natm, 3, -1)) | ||
intensity = contract('xn,xn->n', intensity, intensity) | ||
intensity *= unit_kmmol | ||
|
||
return freq, intensity |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
# Copyright 2023 The GPU4PySCF Authors. All Rights Reserved. | ||
# | ||
# This program is free software: you can redistribute it and/or modify | ||
# it under the terms of the GNU General Public License as published by | ||
# the Free Software Foundation, either version 3 of the License, or | ||
# (at your option) any later version. | ||
# | ||
# This program is distributed in the hope that it will be useful, | ||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
# GNU General Public License for more details. | ||
# | ||
# You should have received a copy of the GNU General Public License | ||
# along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
import numpy as np | ||
from gpu4pyscf.scf import cphf | ||
import cupy | ||
from gpu4pyscf.lib.cupy_helper import contract | ||
|
||
|
||
def gen_vind(mf, mo_coeff, mo_occ): | ||
"""get the induced potential. This is the same as contract the mo1 with the kernel. | ||
Args: | ||
mf: mean field object | ||
mo_coeff (numpy.array): mo coefficients | ||
mo_occ (numpy.array): mo_coefficients | ||
Returns: | ||
fx (function): a function to calculate the induced potential with the input as the mo1. | ||
""" | ||
nao, nmo = mo_coeff.shape | ||
mocc = mo_coeff[:, mo_occ > 0] | ||
mvir = mo_coeff[:, mo_occ == 0] | ||
nocc = mocc.shape[1] | ||
nvir = nmo - nocc | ||
vresp = mf.gen_response(mo_coeff, mo_occ, hermi=1) | ||
|
||
def fx(mo1): | ||
mo1 = mo1.reshape(-1, nvir, nocc) # * the saving pattern | ||
mo1_mo_real = contract('nai,ua->nui', mo1, mvir) | ||
dm1 = 2*contract('nui,vi->nuv', mo1_mo_real, mocc.conj()) | ||
dm1+= dm1.transpose(0,2,1) | ||
|
||
v1 = vresp(dm1) # (nset, nao, nao) | ||
tmp = contract('nuv,vi->nui', v1, mocc) | ||
v1vo = contract('nui,ua->nai', tmp, mvir.conj()) | ||
|
||
return v1vo | ||
return fx | ||
|
||
|
||
def eval_polarizability(mf, unit='au'): | ||
"""main function to calculate the polarizability | ||
Args: | ||
mf: mean field object | ||
unit (str, optional): the unit of the polarizability. Defaults to 'au'. | ||
Returns: | ||
polarizability (numpy.array): polarizability | ||
""" | ||
|
||
polarizability = np.empty((3, 3)) | ||
|
||
mo_coeff = mf.mo_coeff | ||
mo_occ = mf.mo_occ | ||
mo_energy = mf.mo_energy | ||
mo_coeff = cupy.array(mo_coeff) | ||
mo_occ = cupy.array(mo_occ) | ||
mo_energy = cupy.array(mo_energy) | ||
fx = gen_vind(mf, mo_coeff, mo_occ) | ||
mocc = mo_coeff[:, mo_occ > 0] | ||
mvir = mo_coeff[:, mo_occ == 0] | ||
|
||
with mf.mol.with_common_orig((0, 0, 0)): | ||
h1 = mf.mol.intor('int1e_r') | ||
h1 = cupy.array(h1) | ||
for idirect in range(3): | ||
h1ai = -mvir.T.conj()@h1[idirect]@mocc | ||
mo1 = cphf.solve(fx, mo_energy, mo_occ, h1ai, max_cycle=20, tol=1e-10)[0] | ||
for jdirect in range(idirect, 3): | ||
p10 = np.trace(mo1.conj().T@mvir.conj().T@h1[jdirect]@mocc)*2 | ||
p01 = np.trace(mocc.conj().T@h1[jdirect]@mvir@mo1)*2 | ||
polarizability[idirect, jdirect] = p10+p01 | ||
polarizability[1, 0] = polarizability[0, 1] | ||
polarizability[2, 0] = polarizability[0, 2] | ||
polarizability[2, 1] = polarizability[1, 2] | ||
|
||
return polarizability | ||
|
Oops, something went wrong.