QCEngine
The QCEngine Adapter enables calculations using all QCEngine supported programs. This engine is used as a fallback for when qccompute does not have an Adapter of its own for a given program. Using QCEngine as a fallback can be deactivated by passing qcng_fallback=False to qccompute.compute().
qccompute.adapters.qcengine.QCEngineAdapter(external_program: str)
¶
Adapter for all programs supported by QCEngine.
Source code in src/qccompute/adapters/qcengine.py
18 19 20 | |
supported_calctypes = [CalcType.energy, CalcType.gradient, CalcType.hessian]
class-attribute
instance-attribute
¶
Supported calculation types.
program_version(*args) -> str
¶
Get the program version.
Source code in src/qccompute/adapters/qcengine.py
22 23 24 25 26 27 28 29 30 31 32 33 34 | |