qiskit.chemistry.drivers.BosonicDriver¶
-
class
BosonicDriver
(molecule=None, basis='sto3g', hf_method='rhf', supports_molecule=False)[ソース]¶ Base class for Qiskit’s chemistry bosonic drivers.
- パラメータ
molecule (
Optional
[Molecule
]) – moleculebasis (
str
) – basis sethf_method (
str
) – Hartree-Fock Method typesupports_molecule (
bool
) – Indicates if driver supports molecule
- 例外
QiskitChemistryError – Molecule passed but driver doesn’t support it.
-
abstract
__init__
(molecule=None, basis='sto3g', hf_method='rhf', supports_molecule=False)¶ - パラメータ
molecule (
Optional
[Molecule
]) – moleculebasis (
str
) – basis sethf_method (
str
) – Hartree-Fock Method typesupports_molecule (
bool
) – Indicates if driver supports molecule
- 例外
QiskitChemistryError – Molecule passed but driver doesn’t support it.
Methods
__init__
([molecule, basis, hf_method, …])- type molecule
Optional
[Molecule
]
run
()Runs driver to produce a WatsonHamiltonian output.
Attributes
return basis
return Hartree-Fock method
return molecule
True for derived classes that support Molecule.
-
property
basis
¶ return basis
- 戻り値の型
str
-
property
hf_method
¶ return Hartree-Fock method
- 戻り値の型
str
-
property
molecule
¶ return molecule
- 戻り値の型
Optional
[Molecule
]
-
abstract
run
()[ソース]¶ Runs driver to produce a WatsonHamiltonian output.
- 戻り値の型
WatsonHamiltonian
- 戻り値
A WatsonHamiltonian comprising the bosonic data.
-
property
supports_molecule
¶ True for derived classes that support Molecule.
- 戻り値の型
bool
- 戻り値
True if Molecule is supported.