qiskit-documentation/docs/api/qiskit/0.24/qiskit.chemistry.drivers.Fe...

117 lines
4.7 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: FermionicDriver
description: API reference for qiskit.chemistry.drivers.FermionicDriver
in_page_toc_min_heading_level: 1
python_api_type: class
python_api_name: qiskit.chemistry.drivers.FermionicDriver
---
<span id="qiskit-chemistry-drivers-fermionicdriver" />
# qiskit.chemistry.drivers.FermionicDriver
<Class id="qiskit.chemistry.drivers.FermionicDriver" isDedicatedPage={true} github="https://github.com/qiskit-community/qiskit-aqua/tree/stable/0.8/qiskit/chemistry/drivers/fermionic_driver.py" signature="FermionicDriver(molecule=None, basis='sto3g', hf_method='rhf', supports_molecule=False)" modifiers="class">
Base class for Qiskits chemistry fermionic 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.FermionicDriver.__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.FermionicDriver.__init__ "qiskit.chemistry.drivers.FermionicDriver.__init__")(\[molecule, basis, hf\_method, …]) | **type molecule**`Optional`\[`Molecule`] |
| [`run`](#qiskit.chemistry.drivers.FermionicDriver.run "qiskit.chemistry.drivers.FermionicDriver.run")() | Runs driver to produce a QMolecule output. |
## Attributes
| | |
| ----------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------- |
| [`basis`](#qiskit.chemistry.drivers.FermionicDriver.basis "qiskit.chemistry.drivers.FermionicDriver.basis") | return basis |
| [`hf_method`](#qiskit.chemistry.drivers.FermionicDriver.hf_method "qiskit.chemistry.drivers.FermionicDriver.hf_method") | return Hartree-Fock method |
| [`molecule`](#qiskit.chemistry.drivers.FermionicDriver.molecule "qiskit.chemistry.drivers.FermionicDriver.molecule") | return molecule |
| [`supports_molecule`](#qiskit.chemistry.drivers.FermionicDriver.supports_molecule "qiskit.chemistry.drivers.FermionicDriver.supports_molecule") | True for derived classes that support Molecule. |
### basis
<Attribute id="qiskit.chemistry.drivers.FermionicDriver.basis">
return basis
**Return type**
`str`
</Attribute>
### hf\_method
<Attribute id="qiskit.chemistry.drivers.FermionicDriver.hf_method">
return Hartree-Fock method
**Return type**
`str`
</Attribute>
### molecule
<Attribute id="qiskit.chemistry.drivers.FermionicDriver.molecule">
return molecule
**Return type**
`Optional`\[`Molecule`]
</Attribute>
### run
<Function id="qiskit.chemistry.drivers.FermionicDriver.run" signature="run()" modifiers="abstract">
Runs driver to produce a QMolecule output.
**Return type**
`QMolecule`
**Returns**
A QMolecule containing the molecular data.
</Function>
### supports\_molecule
<Attribute id="qiskit.chemistry.drivers.FermionicDriver.supports_molecule">
True for derived classes that support Molecule.
**Return type**
`bool`
**Returns**
True if Molecule is supported.
</Attribute>
</Class>