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.22.0.tar.gz
(256.6 kB
view details)
Built Distribution
qcengine-0.22.0-py3-none-any.whl
(284.1 kB
view details)
File details
Details for the file qcengine-0.22.0.tar.gz
.
File metadata
- Download URL: qcengine-0.22.0.tar.gz
- Upload date:
- Size: 256.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 685a08247b561ed1c7a7b42e68293f90b412e83556626304a3f826a15be51308 |
|
MD5 | 5a3fa5de7b8b94d096f8e54f35b5ed09 |
|
BLAKE2b-256 | d63a4b5e48812ba0c0133552a26a7db462b8ab0afe97dce87dadc0702ff510b5 |
Provenance
File details
Details for the file qcengine-0.22.0-py3-none-any.whl
.
File metadata
- Download URL: qcengine-0.22.0-py3-none-any.whl
- Upload date:
- Size: 284.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5cf7eda710a2904930b6517ac5366083818c7fd054fb02e35c1b6f4f90306ad8 |
|
MD5 | c807449911f71faaab6072fbb790c49f |
|
BLAKE2b-256 | 63e91f8163cec60a5d487da432b70a84244524b86e14b68e6e11b31ada5b1d96 |