-
Notifications
You must be signed in to change notification settings - Fork 24
Add documentation to build GauXC #14
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
base: main
Are you sure you want to change the base?
Conversation
|
There seems to be something wrong in the cartesian version: mol = gto.M(atom="He 0 0 0; Ne 0 0 2.0", basis="def2-qzvp", unit="Bohr", spin=0, cart=True) mol = gto.M(atom="He 0 0 0; Ne 0 0 2.0", basis="def2-qzvp", unit="Bohr", spin=0, cart=False) |
docs/gauxc/standalone.rst
Outdated
| exc = ks.scf_summary["exc"] | ||
| _, _, vxc = ks._numint.nr_rks(ks.mol, ks.grids, ks.xc, dm) | ||
|
|
||
| write_gauxc_h5_from_pyscf("He_def2svp.h5", mol, dm=dm, exc=exc, vxc=vxc) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The file name lacks a dash compared what is used later to inspect the content
| write_gauxc_h5_from_pyscf("He_def2svp.h5", mol, dm=dm, exc=exc, vxc=vxc) | |
| write_gauxc_h5_from_pyscf("He_def2-svp.h5", mol, dm=dm, exc=exc, vxc=vxc) |
docs/gauxc/standalone.rst
Outdated
| :caption: gauxc_input.inp | ||
|
|
||
| [GAUXC] | ||
| ref_file = He_def2svp.h5 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The file name lacks a dash compared what is used later to inspect the content
| ref_file = He_def2svp.h5 | |
| ref_file = He_def2-svp.h5 |
Uh oh!
There was an error while loading. Please reload this page.