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.AtomicInput(
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.30.0.tar.gz
(308.2 kB
view details)
Built Distribution
qcengine-0.30.0-py3-none-any.whl
(339.5 kB
view details)
File details
Details for the file qcengine-0.30.0.tar.gz
.
File metadata
- Download URL: qcengine-0.30.0.tar.gz
- Upload date:
- Size: 308.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ba62d34dbcf487e8368f6c19762a19e1c5f06af7e705f6c583c0632b35bccf7d |
|
MD5 | 873f5a50e90a30ed0d0b39a0843b47f8 |
|
BLAKE2b-256 | a9a02c9c4ff1d95e30fd336b86361bec548667b87afe7d57bdab7b4f788f179a |
Provenance
File details
Details for the file qcengine-0.30.0-py3-none-any.whl
.
File metadata
- Download URL: qcengine-0.30.0-py3-none-any.whl
- Upload date:
- Size: 339.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 312f03825918d6bfc640ce9cf49257d3dd2d3966354d8db3003391cd703026df |
|
MD5 | 48d02e553ca4ba2d7c7e0dd70f9b1435 |
|
BLAKE2b-256 | 59abd2ff241ce01bbb6588c9a758233b2ed4561604354be86b4dd7626acc0fa9 |