qcengine 0.27.0
pip install qcengine==0.27.0
Released:
A compute wrapper for Quantum Chemistry.
Navigation
Verified details
These details have been verified by PyPIMaintainers
Unverified details
These details have not been verified by PyPIProject links
Meta
- License: BSD-3C
- Author: The QCArchive Development Team
Classifiers
- Development Status
- Intended Audience
- Programming Language
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
Verified details
These details have been verified by PyPIMaintainers
Unverified details
These details have not been verified by PyPIProject links
Meta
- License: BSD-3C
- Author: The QCArchive Development Team
Classifiers
- Development Status
- Intended Audience
- Programming Language
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
Built Distribution
File details
Details for the file qcengine-0.27.0.tar.gz
.
File metadata
- Download URL: qcengine-0.27.0.tar.gz
- Upload date:
- Size: 301.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
18673aee16d5dfc08762426d40ccb198d936718a24fcd14a366b3259d00d6f10
|
|
MD5 |
01fc50e899b4a594c0e1dd7f1aa2ae0c
|
|
BLAKE2b-256 |
dbc3041c434504769862ace5ee6a3d500344695d4c11300f5987aa2a366ab0bd
|
File details
Details for the file qcengine-0.27.0-py3-none-any.whl
.
File metadata
- Download URL: qcengine-0.27.0-py3-none-any.whl
- Upload date:
- Size: 331.7 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 |
e76ff2a3c1e1654d4b00c917ab188c7084c33b2400b2c101ea2aa339fe28dd6a
|
|
MD5 |
09d5c9e53bfa8caa469252827b33b373
|
|
BLAKE2b-256 |
dbe8f98171b93876df2e839705a2dc3d26d732c206631e2146c627b037cb9389
|