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.28.1.tar.gz
(303.8 kB
view details)
Built Distribution
qcengine-0.28.1-py3-none-any.whl
(334.3 kB
view details)
File details
Details for the file qcengine-0.28.1.tar.gz
.
File metadata
- Download URL: qcengine-0.28.1.tar.gz
- Upload date:
- Size: 303.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 79b65ac85e551875e30453b793629e80236a005ca00770572af76fafc985fd2b |
|
MD5 | e1bd2986e82805541c5ea4ac9340d427 |
|
BLAKE2b-256 | 542da6231f20538302c1c4f16b15cab974b4636e34f67862226a1d4a9d9bf916 |
Provenance
File details
Details for the file qcengine-0.28.1-py3-none-any.whl
.
File metadata
- Download URL: qcengine-0.28.1-py3-none-any.whl
- Upload date:
- Size: 334.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b7b0f70d776d2e8113f361973a3bea73a2cc06e26b09f18f772746af6c181020 |
|
MD5 | fc13ba35eed3893c5d632ec80db7dbb9 |
|
BLAKE2b-256 | 3465cd936ac66e5e302b5c0d82ab69dd4784e476b7742e542336ac6ff3457af1 |