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.20.0.tar.gz
(255.0 kB
view details)
Built Distribution
qcengine-0.20.0-py3-none-any.whl
(281.5 kB
view details)
File details
Details for the file qcengine-0.20.0.tar.gz
.
File metadata
- Download URL: qcengine-0.20.0.tar.gz
- Upload date:
- Size: 255.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5b405efb4b6ebe81e7f991b360126a4f61c2768ceed6027346e2b8ef3f57ef39 |
|
MD5 | eaee00bcf0f307c8ef7ce55a4ecf4e4a |
|
BLAKE2b-256 | 186c0de0de5f1318dbc1cd2525b915eea140ca7c993fe303b9ed2d73fc102cb9 |
Provenance
File details
Details for the file qcengine-0.20.0-py3-none-any.whl
.
File metadata
- Download URL: qcengine-0.20.0-py3-none-any.whl
- Upload date:
- Size: 281.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 87453d5c5788317d1bb718974ec88d7c8b43c122f31c75768b750f29d8010828 |
|
MD5 | 7955cfabb4bdd1193ac2855e49e7b955 |
|
BLAKE2b-256 | 02ab0433b1dce95642e5823b2d2058a7577489d3dcc297fd6ef86ba70c5921d7 |