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.15.0.tar.gz
(177.7 kB
view details)
Built Distribution
qcengine-0.15.0-py3-none-any.whl
(192.3 kB
view details)
File details
Details for the file qcengine-0.15.0.tar.gz
.
File metadata
- Download URL: qcengine-0.15.0.tar.gz
- Upload date:
- Size: 177.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1.post20200622 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cc3177e9332ea5c2b74516b534168692a390ee49d1f531da55a1e99c21cd2276 |
|
MD5 | ff7b0176269c0d9589009fd239b28e66 |
|
BLAKE2b-256 | e514b16e39a4118c736367ae36798c5942171a160f43da4d5aa561794a4e424c |
Provenance
File details
Details for the file qcengine-0.15.0-py3-none-any.whl
.
File metadata
- Download URL: qcengine-0.15.0-py3-none-any.whl
- Upload date:
- Size: 192.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1.post20200622 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 394ffacd4f4b91eb1f5ee8822ab307456821232fbea2dec621f1fec29f34a69f |
|
MD5 | 08bf73949c0d55dec6ec6792bb64c7d3 |
|
BLAKE2b-256 | c9bfc89b548d39dd515edc219bbe8352f10373dda6a6bc3afcaf7a62208571e0 |