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.25.0.tar.gz
(299.7 kB
view details)
Built Distribution
qcengine-0.25.0-py3-none-any.whl
(329.8 kB
view details)
File details
Details for the file qcengine-0.25.0.tar.gz
.
File metadata
- Download URL: qcengine-0.25.0.tar.gz
- Upload date:
- Size: 299.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.11.3 pkginfo/1.8.3 requests/2.28.1 requests-toolbelt/0.9.1 tqdm/4.64.1 CPython/3.10.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 55c0d578a0751427fd38287fef75d88eb87cc5b2134faed5ae9cead235c03452 |
|
MD5 | 7d61e13b474a6edc57b88059120b82af |
|
BLAKE2b-256 | df42ca91d78643c09952c1c60ab7ad1009155194a4fd865f1c0303a3f7fd0b30 |
File details
Details for the file qcengine-0.25.0-py3-none-any.whl
.
File metadata
- Download URL: qcengine-0.25.0-py3-none-any.whl
- Upload date:
- Size: 329.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.11.3 pkginfo/1.8.3 requests/2.28.1 requests-toolbelt/0.9.1 tqdm/4.64.1 CPython/3.10.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fd5c73551b2e2c7a2d3663ed28774c121e5782299b2d34597e06469ff52b1231 |
|
MD5 | 40c6c478d8110bcfd12a390f8d474b8c |
|
BLAKE2b-256 | 6f4f3c5293dc95db4873c48053eba5ebb8e3a6801d0a74205e1630d0a4a0846d |