-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
23 changed files
with
332 additions
and
24 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 |
---|---|---|
@@ -1,4 +1,5 @@ | ||
ipython | ||
jinja2 | ||
sphinx | ||
numpydoc | ||
sphinx_copybutton | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
{{ fullname | escape | underline}} | ||
|
||
.. currentmodule:: {{ module }} | ||
|
||
.. autoclass:: {{ objname }} | ||
:show-inheritance: | ||
|
||
{% block attributes %} | ||
{% if attributes %} | ||
|
||
{% endif %} | ||
{% endblock %} | ||
|
||
{% block methods %} | ||
{% if methods %} | ||
.. rubric:: {{ _('Methods') }} | ||
|
||
.. autosummary:: | ||
:toctree: methods/ | ||
|
||
{% for item in methods %} | ||
{% if item not in inherited_members and (not item.startswith('_') or item in ['__call__']) %} | ||
~{{ name }}.{{ item }} | ||
{% endif %} | ||
{%- endfor %} | ||
|
||
{% endif %} | ||
{% endblock %} |
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,64 @@ | ||
{{ fullname | escape | underline}} | ||
|
||
.. automodule:: {{ fullname }} | ||
|
||
{% block attributes %} | ||
{% if attributes %} | ||
|
||
{% endif %} | ||
{% endblock %} | ||
|
||
{% block classes %} | ||
{% if classes %} | ||
.. rubric:: {{ _('Classes') }} | ||
|
||
.. autosummary:: | ||
:toctree: classes/ | ||
|
||
{% for item in classes %} | ||
{{ item }} | ||
{%- endfor %} | ||
|
||
{% endif %} | ||
{% endblock %} | ||
|
||
{% block functions %} | ||
{% if functions %} | ||
.. rubric:: {{ _('Functions') }} | ||
|
||
.. autosummary:: | ||
:toctree: functions/ | ||
|
||
{% for item in functions %} | ||
{{ item }} | ||
{%- endfor %} | ||
|
||
{% endif %} | ||
{% endblock %} | ||
|
||
|
||
{% block exceptions %} | ||
{% if exceptions %} | ||
.. rubric:: {{ _('Exceptions') }} | ||
|
||
.. autosummary:: | ||
{% for item in exceptions %} | ||
{{ item }} | ||
{%- endfor %} | ||
{% endif %} | ||
{% endblock %} | ||
|
||
{% block modules %} | ||
{% if modules %} | ||
.. rubric:: Modules | ||
|
||
.. autosummary:: | ||
:toctree: | ||
:recursive: | ||
{% for item in modules %} | ||
{% if not 'test' in item %} | ||
{{ item }} | ||
{% endif %} | ||
{%- endfor %} | ||
{% endif %} | ||
{% endblock %} |
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,13 @@ | ||
.. _ao2mo: | ||
|
||
====================== | ||
Orbital transformation | ||
====================== | ||
|
||
The :mod:`pyscfad.ao2mo` subpackage defines the orbital transformation methods. | ||
|
||
.. autosummary:: | ||
:toctree: api/ | ||
:recursive: | ||
|
||
pyscfad.ao2mo |
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,13 @@ | ||
.. _cc: | ||
|
||
======================= | ||
Coupled cluster methods | ||
======================= | ||
|
||
The :mod:`pyscfad.cc` subpackage defines the coupled cluster methods. | ||
|
||
.. autosummary:: | ||
:toctree: api/ | ||
:recursive: | ||
|
||
pyscfad.cc |
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,13 @@ | ||
.. _scf: | ||
|
||
=============== | ||
Density fitting | ||
=============== | ||
|
||
The :mod:`pyscfad.df` subpackage defines the density fitting methods. | ||
|
||
.. autosummary:: | ||
:toctree: api/ | ||
:recursive: | ||
|
||
pyscfad.df |
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,13 @@ | ||
.. _dft: | ||
|
||
=========== | ||
DFT methods | ||
=========== | ||
|
||
The :mod:`pyscfad.dft` subpackage defines the DFT methods. | ||
|
||
.. autosummary:: | ||
:toctree: api/ | ||
:recursive: | ||
|
||
pyscfad.dft |
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,13 @@ | ||
.. _fci: | ||
|
||
======= | ||
Full CI | ||
======= | ||
|
||
The :mod:`pyscfad.fci` subpackage defines the full CI methods. | ||
|
||
.. autosummary:: | ||
:toctree: api/ | ||
:recursive: | ||
|
||
pyscfad.fci |
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,13 @@ | ||
.. _geomopt: | ||
|
||
===================== | ||
Geometry optimization | ||
===================== | ||
|
||
The :mod:`pyscfad.geomopt` subpackage defines the geometry optimization methods. | ||
|
||
.. autosummary:: | ||
:toctree: api/ | ||
:recursive: | ||
|
||
pyscfad.geomopt |
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,14 @@ | ||
.. _gto: | ||
|
||
===================== | ||
Molecular information | ||
===================== | ||
|
||
The :mod:`pyscfad.gto` subpackage defines the molecular information | ||
and ERI methods. | ||
|
||
.. autosummary:: | ||
:toctree: api/ | ||
:recursive: | ||
|
||
pyscfad.gto |
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,13 @@ | ||
.. _gw: | ||
|
||
========== | ||
GW methods | ||
========== | ||
|
||
The :mod:`pyscfad.gw` subpackage defines the GW methods. | ||
|
||
.. autosummary:: | ||
:toctree: api/ | ||
:recursive: | ||
|
||
pyscfad.gw |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
.. _mp: | ||
|
||
=========== | ||
MP2 methods | ||
=========== | ||
|
||
The :mod:`pyscfad.mp` subpackage defines the MP2 methods. | ||
|
||
.. autosummary:: | ||
:toctree: api/ | ||
:recursive: | ||
|
||
pyscfad.mp |
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,13 @@ | ||
.. _pbc: | ||
|
||
================== | ||
Methods for Solids | ||
================== | ||
|
||
The :mod:`pyscfad.pbc` subpackage defines the methods for solid calculations. | ||
|
||
.. autosummary:: | ||
:toctree: api/ | ||
:recursive: | ||
|
||
pyscfad.pbc |
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,13 @@ | ||
.. _prop: | ||
|
||
================ | ||
Property methods | ||
================ | ||
|
||
The :mod:`pyscfad.prop` subpackage defines the property calculation methods. | ||
|
||
.. autosummary:: | ||
:toctree: api/ | ||
:recursive: | ||
|
||
pyscfad.prop |
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,13 @@ | ||
.. _scf: | ||
|
||
==================== | ||
Hartree-Fock methods | ||
==================== | ||
|
||
The :mod:`pyscfad.scf` subpackage defines the Hartree-Fock methods. | ||
|
||
.. autosummary:: | ||
:toctree: api/ | ||
:recursive: | ||
|
||
pyscfad.scf |
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,13 @@ | ||
.. _tdscf: | ||
|
||
============= | ||
TDSCF methods | ||
============= | ||
|
||
The :mod:`pyscfad.tdscf` subpackage defines the linear-response mean-field methods. | ||
|
||
.. autosummary:: | ||
:toctree: api/ | ||
:recursive: | ||
|
||
pyscfad.tdscf |
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,13 @@ | ||
.. _tools: | ||
|
||
===== | ||
Tools | ||
===== | ||
|
||
The :mod:`pyscfad.tools` subpackage provides useful tools. | ||
|
||
.. autosummary:: | ||
:toctree: api/ | ||
:recursive: | ||
|
||
pyscfad.tools |
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,13 @@ | ||
.. _util: | ||
|
||
================= | ||
Utility functions | ||
================= | ||
.. currentmodule:: pyscfad | ||
|
||
The :mod:`pyscfad.util` module provides useful utility functions. | ||
|
||
.. autosummary:: | ||
:toctree: api/ | ||
|
||
util.pytree_node |
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
Oops, something went wrong.