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.28.0.tar.gz
(303.8 kB
view details)
Built Distribution
qcengine-0.28.0-py3-none-any.whl
(334.3 kB
view details)
File details
Details for the file qcengine-0.28.0.tar.gz
.
File metadata
- Download URL: qcengine-0.28.0.tar.gz
- Upload date:
- Size: 303.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c736a6659f927c9363a92e97f40c3d5f14df2cbe1b5ddd6f2cc616f35af9c7b5 |
|
MD5 | 31559199436be7f6a369e449c6fd56ef |
|
BLAKE2b-256 | d65e05f731d44bec1621f952488124a0487f0a20f03e3825f4b7a9e602bca75f |
Provenance
File details
Details for the file qcengine-0.28.0-py3-none-any.whl
.
File metadata
- Download URL: qcengine-0.28.0-py3-none-any.whl
- Upload date:
- Size: 334.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e7565407ed8512c20b7c6740effcdded732db2b0edca1d94cf822a4dd6d144d7 |
|
MD5 | 76ee469954e58a33d24008796abe6ff0 |
|
BLAKE2b-256 | a0a78fbf2fd0035d1467cc61892df9391d2575be89426d161a6a3a91b764e446 |