forked from pyscf/pyscf
-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
DSRG-MRPT2 PySCF implementation #1
Open
brianz98
wants to merge
87
commits into
master
Choose a base branch
from
dsrg-mrpt
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
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
…t as we're inferring that from the mc object.
…right number of SA states.
add link to news page
introduced in commit 430a9db and add an example of its use.
* integral screening for gaunt and breit term * Revert to use g_lssl integral it self to screen gaunt. Since the q_cond for g_lssl and g_lsls are not symmetry, a asymmetry q_cond is added. * mf object is reinitialized at line 241, if not, the previously initialized VHFOpt for gaunt will be used for breit as well and will thus cause wrong result. * trim whitespace
In version 3.11.0 of ASE, the ase.lattice.bulk() function has been moved to ase.build.bulk.
) * Fix compiling issues. Remove the non-standard ffsll function * add header for ffsll and use builtin if available * add header for ffsll and use builtin if available --------- Co-authored-by: chillenb <[email protected]>
* Update test tolerances * Update tolerances
* Adds COSMO-RS functionality with tests and examples * Fixes flake lint * Fixes SCF energy test threshold * Fixes SCF energy test threshold x2
* refactor dfmp2; add dfump2 * add parallel trisolve * add except for loading libmp * fix lint error * refactor RPA code * dtrtrs_ -> dtrsm * dtrsm -> dtrsm_ * fix typo * More error checks and cleanups * Fix bugs introduced in the previous commit --------- Co-authored-by: hongzhouye <> Co-authored-by: Qiming Sun <[email protected]>
…2456 (pyscf#2457) * Fixes pyscf#2456 * Fixes bug in calculation of DF exchange integrals introduced in previous commit. * Add tests --------- Co-authored-by: Qiming Sun <[email protected]>
The Link for dbasis set exchange is outdated (since more the one year) - the new URL is https://www.basissetexchange.org/
From Zheng, Jingjing, Xuefei Xu, and Donald G. Truhlar. "Minimally augmented Karlsruhe basis sets." Theoretical Chemistry Accounts 128 (2011): 295-305. DOI: https://doi.org/10.1007/s00214-010-0846-z Downloaded from http://sobereva.com/509 in NWChem format Co-authored-by: Derk Kooi <[email protected]>
…utines (pyscf#2501) * Fix: add missing conj() to t2 amps in init_amps * Fix: remove .conj() from eris_oovv at the emp2 computation step
…rs (pyscf#2505) * feat: Add functions to read and write Cell geometry * examples: reading and writing of Cell geometry * Allow scale different from 1 and fix import * Fix lint/flake8 whitespace * Allow lowercase Direct or Cartesian in VASP input * Rebuild Cell after reading from string; Add tests --------- Co-authored-by: Qiming Sun <[email protected]>
* in-place matrix scaling and transposition, imatcopy style * manually collapse main loop nest * use long long rather than ssize_t * fix build with _OPENMP undefined * make requested changes to simplify code * remove unused defines * reduce complex tilesize * Update test_numpy_helper.py --------- Co-authored-by: Qiming Sun <[email protected]>
* Fix iterative damping error Fixes pyscf#2523 * Fix iterative damping for UCCSD and spin!=0 * Test UCCSD damping * satisfy pylint
* some lightweight array helper functions * satisfy linter * make requested changes * Add out argument for entrywise_mul * restore lib.zeros for testing
* Fix biased implementation for the becke radi method This fixed the Becke radial integration scheme as described in pyscf#2490. * Update test_grids.py * Update radi.py --------- Co-authored-by: Qiming Sun <[email protected]>
* add verify_examples * make executable * minor fix relating to cwd * add doc string and usage example
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Overview
This implements the spin-free version of DSRG-MRPT2
Todos
working dumb code
Shuhang: density fitting
Shuhang: batching
Shuhang: Change V from ndarray to dictionary.
Brian: state averaging
Open-shell tests
Brian: reference relaxation
Brian: Disk MC AO2MO
Tutorial / documentation