A compute wrapper for Quantum Chemistry.
Project description
QCEngine
Quantum chemistry program executor and IO standardizer (QCSchema) for quantum chemistry.
Available Compute Programs:
Available Procedures:
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", return_dict=False)
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.6.4.tar.gz
(65.9 kB
view details)
Built Distribution
qcengine-0.6.4-py3-none-any.whl
(51.9 kB
view details)
File details
Details for the file qcengine-0.6.4.tar.gz
.
File metadata
- Download URL: qcengine-0.6.4.tar.gz
- Upload date:
- Size: 65.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 | c26051ce31bf2390c1be4823c03f27a93030dc2e7843c46cfee53854d16b0ba9 |
|
MD5 | b71ba948b83a9364d488ebaafd2f764a |
|
BLAKE2b-256 | b3d46da0677c4e4ef47ee39df37cabec76dd779cb1667c96d1f4df334833c7da |
Provenance
File details
Details for the file qcengine-0.6.4-py3-none-any.whl
.
File metadata
- Download URL: qcengine-0.6.4-py3-none-any.whl
- Upload date:
- Size: 51.9 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 | 8ffa8b572283088cf80a5282238e93a1e792c5bfce8e2339867c41c25c9e1763 |
|
MD5 | 05cf3bdf156b5480f6443330096babf0 |
|
BLAKE2b-256 | 2112171ade70c20db815978a4755bd509d08655095f4426aac943232d66ae911 |