qiskit-documentation/docs/api/qiskit/0.26/qiskit.chemistry.drivers.Ba...

102 lines
4.1 KiB
Plaintext
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
title: BaseDriver (v0.26)
description: API reference for qiskit.chemistry.drivers.BaseDriver in qiskit v0.26
in_page_toc_min_heading_level: 1
python_api_type: class
python_api_name: qiskit.chemistry.drivers.BaseDriver
---
<span id="qiskit-chemistry-drivers-basedriver" />
# qiskit.chemistry.drivers.BaseDriver
<Class id="qiskit.chemistry.drivers.BaseDriver" isDedicatedPage={true} github="https://github.com/qiskit-community/qiskit-aqua/tree/stable/0.9/qiskit/chemistry/drivers/base_driver.py" signature="BaseDriver(molecule=None, basis='sto3g', hf_method='rhf', supports_molecule=False)" modifiers="class">
Base class for Qiskits chemistry drivers.
**Parameters**
* **molecule** (`Optional`\[`Molecule`]) molecule
* **basis** (`str`) basis set
* **hf\_method** (`str`) Hartree-Fock Method type
* **supports\_molecule** (`bool`) Indicates if driver supports molecule
**Raises**
[**QiskitChemistryError**](qiskit.chemistry.QiskitChemistryError "qiskit.chemistry.QiskitChemistryError") Molecule passed but driver doesnt support it.
### \_\_init\_\_
<Function id="qiskit.chemistry.drivers.BaseDriver.__init__" signature="__init__(molecule=None, basis='sto3g', hf_method='rhf', supports_molecule=False)" modifiers="abstract">
**Parameters**
* **molecule** (`Optional`\[`Molecule`]) molecule
* **basis** (`str`) basis set
* **hf\_method** (`str`) Hartree-Fock Method type
* **supports\_molecule** (`bool`) Indicates if driver supports molecule
**Raises**
[**QiskitChemistryError**](qiskit.chemistry.QiskitChemistryError "qiskit.chemistry.QiskitChemistryError") Molecule passed but driver doesnt support it.
</Function>
## Methods
| | |
| --------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------- |
| [`__init__`](#qiskit.chemistry.drivers.BaseDriver.__init__ "qiskit.chemistry.drivers.BaseDriver.__init__")(\[molecule, basis, hf\_method, …]) | **type molecule**`Optional`\[`Molecule`] |
## Attributes
| | |
| ------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------- |
| [`basis`](#qiskit.chemistry.drivers.BaseDriver.basis "qiskit.chemistry.drivers.BaseDriver.basis") | return basis |
| [`hf_method`](#qiskit.chemistry.drivers.BaseDriver.hf_method "qiskit.chemistry.drivers.BaseDriver.hf_method") | return Hartree-Fock method |
| [`molecule`](#qiskit.chemistry.drivers.BaseDriver.molecule "qiskit.chemistry.drivers.BaseDriver.molecule") | return molecule |
| [`supports_molecule`](#qiskit.chemistry.drivers.BaseDriver.supports_molecule "qiskit.chemistry.drivers.BaseDriver.supports_molecule") | True for derived classes that support Molecule. |
### basis
<Attribute id="qiskit.chemistry.drivers.BaseDriver.basis">
return basis
**Return type**
`str`
</Attribute>
### hf\_method
<Attribute id="qiskit.chemistry.drivers.BaseDriver.hf_method">
return Hartree-Fock method
**Return type**
`str`
</Attribute>
### molecule
<Attribute id="qiskit.chemistry.drivers.BaseDriver.molecule">
return molecule
**Return type**
`Optional`\[`Molecule`]
</Attribute>
### supports\_molecule
<Attribute id="qiskit.chemistry.drivers.BaseDriver.supports_molecule">
True for derived classes that support Molecule.
**Return type**
`bool`
**Returns**
True if Molecule is supported.
</Attribute>
</Class>