A compute wrapper for Quantum Chemistry.
Project description
QCEngine
Quantum chemistry program executor and IO standardizer (QCSchema) for quantum chemistry.
Example
A simple example of QCEngine's capabilities is as follows:
>>> import qcengine as qcng
>>> import qcelemental as qcel
>>> mol = qcel.models.Molecule.from_data("""
O 0.0 0.000 -0.129
H 0.0 -1.494 1.027
H 0.0 1.494 1.027
""")
>>> inp = qcel.models.ResultInput(
molecule=mol,
driver="energy",
model={"method": "SCF", "basis": "sto-3g"},
keywords={"scf_type": "df"}
)
These input specifications can be executed with the compute
function along with a program specifier:
>>> ret = qcng.compute(inp, "psi4")
The results contain a complete record of the computation:
>>> ret.return_result
-74.45994963230625
>>> ret.properties.scf_dipole_moment
[0.0, 0.0, 0.6635967188869244]
>>> ret.provenance.cpu
Intel(R) Core(TM) i7-7820HQ CPU @ 2.90GHz
See the documentation for more information.
License
BSD-3C. See the License File for more information.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
qcengine-0.8.1.tar.gz
(94.5 kB
view details)
Built Distribution
qcengine-0.8.1-py3-none-any.whl
(100.6 kB
view details)
File details
Details for the file qcengine-0.8.1.tar.gz
.
File metadata
- Download URL: qcengine-0.8.1.tar.gz
- Upload date:
- Size: 94.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.8.0 tqdm/4.32.2 CPython/3.6.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9cd544337b0c08cf7dc3f4add0e5db33f794933641793d6cff3d020a68676689 |
|
MD5 | cc5931ac0e360a085c0f293eab12187c |
|
BLAKE2b-256 | e23cb7c693b9459f2dc22301956b092fb2058f92f94eb8c274602edeba4a7224 |
Provenance
File details
Details for the file qcengine-0.8.1-py3-none-any.whl
.
File metadata
- Download URL: qcengine-0.8.1-py3-none-any.whl
- Upload date:
- Size: 100.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.8.0 tqdm/4.32.2 CPython/3.6.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 99d2e958ac48fc19570fd02d932bce776a86ac9dada04ed6211ecd30dc8b650b |
|
MD5 | f86fb6a3e6774c726b00421849b285a3 |
|
BLAKE2b-256 | ddaaa95c3bf984a6df15f3111af0c973419e45afe0b45ee15a16afb02e5f7250 |