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.ResultInput(
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.7.1.tar.gz
(82.9 kB
view details)
Built Distribution
qcengine-0.7.1-py3-none-any.whl
(85.7 kB
view details)
File details
Details for the file qcengine-0.7.1.tar.gz
.
File metadata
- Download URL: qcengine-0.7.1.tar.gz
- Upload date:
- Size: 82.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.18.4 setuptools/39.2.0 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.6.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b1ba6f87492a78591e18adaf412cf0277d0e63cf56463a7082d92cf407711e2c |
|
MD5 | e39622797db4aa0181bc13f9e5a91def |
|
BLAKE2b-256 | 2d0a3446083ec353fa3934bf5e3d069d3c4f6c9664075068796b907ca0fe5fe4 |
Provenance
File details
Details for the file qcengine-0.7.1-py3-none-any.whl
.
File metadata
- Download URL: qcengine-0.7.1-py3-none-any.whl
- Upload date:
- Size: 85.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.18.4 setuptools/39.2.0 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.6.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e40da8b9c32b1012efbdaba125b75058ed7c7b22c0b754072aed21648b2aaba5 |
|
MD5 | d12666fe16c921261b92894c7277b411 |
|
BLAKE2b-256 | 4579850a1ba19654e929d0f3521e708f5a08e8c96040614934841278744875ab |