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.2.tar.gz
(94.5 kB
view details)
Built Distribution
qcengine-0.8.2-py3-none-any.whl
(99.7 kB
view details)
File details
Details for the file qcengine-0.8.2.tar.gz
.
File metadata
- Download URL: qcengine-0.8.2.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 | 7e75a904fb92fc082ddfdfadae55ca57da3d1171a54d688c8a30de68f342e2aa |
|
MD5 | a17d016dc0b937c642d57d456474ea01 |
|
BLAKE2b-256 | e5dc3b24458bbdbe16ed4d363a1b1865f1b82f4954139c1b70fbaf3cf5b3f40f |
Provenance
File details
Details for the file qcengine-0.8.2-py3-none-any.whl
.
File metadata
- Download URL: qcengine-0.8.2-py3-none-any.whl
- Upload date:
- Size: 99.7 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 | ddaeef6ab855a8158f4d9be190f08e7af19ab6d8cd347b85b8f6a80c812d7159 |
|
MD5 | d4df9b59d7ea47a914431e0e5196d19f |
|
BLAKE2b-256 | 80aa3ea22de22f8fb7d2828973bc0c177873891c24947722c8c495a0dd39801b |