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.26.0.tar.gz
(301.3 kB
view details)
Built Distribution
qcengine-0.26.0-py3-none-any.whl
(331.6 kB
view details)
File details
Details for the file qcengine-0.26.0.tar.gz
.
File metadata
- Download URL: qcengine-0.26.0.tar.gz
- Upload date:
- Size: 301.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8c10377b11ffab311a2997ae9af80a0f4b4a9c3a6d65d96fd4aca4c941ecf018 |
|
MD5 | 21020b4c31501c57dd274a9c6fef1c51 |
|
BLAKE2b-256 | aebbde299110c1044e8f9788118d4da361a77ea0dc3a4f359999f152660ca1c1 |
Provenance
File details
Details for the file qcengine-0.26.0-py3-none-any.whl
.
File metadata
- Download URL: qcengine-0.26.0-py3-none-any.whl
- Upload date:
- Size: 331.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 13ac4bd1ec6e920ab84aa833ee886546d1aa8ec41a5eda2fa8875a8006706f88 |
|
MD5 | 2138809635661dcd692f3d1c31d2e31e |
|
BLAKE2b-256 | 61379ea2cd9cf5d4b4307b64ae70b007354dfd5ac7b6919ed594e5196c42d62d |