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.24.1.tar.gz
(285.1 kB
view details)
Built Distribution
qcengine-0.24.1-py3-none-any.whl
(314.6 kB
view details)
File details
Details for the file qcengine-0.24.1.tar.gz
.
File metadata
- Download URL: qcengine-0.24.1.tar.gz
- Upload date:
- Size: 285.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2943866c641dd5f7d73644225bcc9e53155a9423807ddf2706ff679e4f608955 |
|
MD5 | 598fd895ab1bf52c811eaf39aaa375eb |
|
BLAKE2b-256 | b4772f3ea2713798ceebb097bea3fb59a35f6e0c8d8d194b370459c30a8a4934 |
Provenance
File details
Details for the file qcengine-0.24.1-py3-none-any.whl
.
File metadata
- Download URL: qcengine-0.24.1-py3-none-any.whl
- Upload date:
- Size: 314.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c6a0bff0035abc4f33d0aaeadc1ea993c06fdc583f0bf27ee94eee336fbfaacc |
|
MD5 | 398f08384853a4eadfbcd4d21b914042 |
|
BLAKE2b-256 | 79eb4ed7657dedb1a59e2278734c0a24ec163c5c8edf086815fd4b3822a95002 |