forked from pyscf/pyscf
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update periodic GW init and add example (pyscf#1967)
* Update periodic GW init and add example * Update 22-k_points_gw.py * Removing mf.to_rhf() and mf.to_uhf() The `to_rhf()` seems to raise the same DF error as in the unrestricted case, so I've removed it. But with/without `to_uhf()` I still get the same DF error.
- Loading branch information
Showing
5 changed files
with
93 additions
and
7 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,43 @@ | ||
#!/usr/bin/env python | ||
|
||
''' | ||
G0W0 with k-points sampling | ||
''' | ||
|
||
from functools import reduce | ||
import numpy | ||
from pyscf.pbc import gto, scf, gw | ||
|
||
cell = gto.Cell() | ||
cell.atom=''' | ||
C 0.000000000000 0.000000000000 0.000000000000 | ||
C 1.685068664391 1.685068664391 1.685068664391 | ||
''' | ||
cell.basis = 'gth-szv' | ||
cell.pseudo = 'gth-pade' | ||
cell.a = ''' | ||
0.000000000, 3.370137329, 3.370137329 | ||
3.370137329, 0.000000000, 3.370137329 | ||
3.370137329, 3.370137329, 0.000000000''' | ||
cell.unit = 'B' | ||
cell.verbose = 5 | ||
cell.build() | ||
|
||
# | ||
# KDFT and KGW with 2x2x2 k-points | ||
# | ||
kpts = cell.make_kpts([2,2,2]) | ||
kmf = scf.KRKS(cell).density_fit() | ||
kmf.kpts = kpts | ||
emf = kmf.kernel() | ||
|
||
# Default is AC frequency integration | ||
mygw = gw.KRGW(kmf) | ||
mygw.kernel() | ||
print("KRGW energies =", mygw.mo_energy) | ||
|
||
# With CD frequency integration | ||
#mygw = gw.KRGW(kmf, freq_int='cd') | ||
#mygw.kernel() | ||
#print("KRGW-CD energies =", mygw.mo_energy) | ||
|
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 |
---|---|---|
@@ -1 +1,44 @@ | ||
from .kgw_slow import GW as KRGW | ||
# Copyright 2014-2018 The PySCF Developers. All Rights Reserved. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
''' | ||
Periodic G0W0 approximation | ||
''' | ||
|
||
from pyscf.pbc.gw import krgw_ac | ||
from pyscf.pbc.gw import kugw_ac | ||
from pyscf.pbc.gw import krgw_cd | ||
from pyscf.pbc import scf | ||
|
||
def KRGW(mf, freq_int='ac', frozen=None): | ||
# mf = mf.to_rhf() | ||
if freq_int.lower() == 'ac': | ||
return krgw_ac.KRGWAC(mf, frozen) | ||
elif freq_int.lower() == 'cd': | ||
return krgw_cd.KRGWCD(mf, frozen) | ||
else: | ||
raise RuntimeError("GW frequency integration method %s not recognized. " | ||
"With PBC, options are 'ac' and 'cd'."%(freq_int)) | ||
|
||
def KUGW(mf, freq_int='ac', frozen=None): | ||
# mf = mf.to_uhf() | ||
if freq_int.lower() == 'ac': | ||
return kugw_ac.KUGWAC(mf, frozen) | ||
elif freq_int.lower() == 'cd': | ||
raise RuntimeError('GWCD does not support UHF or UKS methods.') | ||
else: | ||
raise RuntimeError("GW frequency integration method %s not recognized. " | ||
"With PBC, options are 'ac' and 'cd'."%(freq_int)) | ||
|
||
KGW = KRGW |
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
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
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