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.29.0.tar.gz
(304.8 kB
view details)
Built Distribution
qcengine-0.29.0-py3-none-any.whl
(335.0 kB
view details)
File details
Details for the file qcengine-0.29.0.tar.gz
.
File metadata
- Download URL: qcengine-0.29.0.tar.gz
- Upload date:
- Size: 304.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7087d7f4ca51317b417cb287293cc22e4bf7d5f048c9a9d340712cf211e4eda4 |
|
MD5 | a9fbe0b9ffb2c26cb84b228e6afead0d |
|
BLAKE2b-256 | 38a5cc3dc2f595eb522e9f3f8fac1e8e4b187cefd011f28903ff1092da27e92d |
Provenance
File details
Details for the file qcengine-0.29.0-py3-none-any.whl
.
File metadata
- Download URL: qcengine-0.29.0-py3-none-any.whl
- Upload date:
- Size: 335.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a2f06e86053166f0208a5f6f72cc82c63d417f0a2a08bd32f5b2192090868839 |
|
MD5 | 15631e4bcab62cb7064804b69b35b1c5 |
|
BLAKE2b-256 | 045722488b2ff9374a4c81146ba25a14f9853f33e69eef127de761d31fbcd8e6 |