Korean
언어
English
Japanese
German
Korean
Portuguese, Brazilian
French
Shortcuts

qiskit.chemistry.drivers.FermionicDriver

class FermionicDriver(molecule=None, basis='sto3g', hf_method='rhf', supports_molecule=False)[소스]

Base class for Qiskit’s chemistry fermionic drivers.

매개변수
  • molecule (Optional[Molecule]) – molecule

  • basis (str) – basis set

  • hf_method (str) – Hartree-Fock Method type

  • supports_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]) – molecule

  • basis (str) – basis set

  • hf_method (str) – Hartree-Fock Method type

  • supports_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 QMolecule output.

Attributes

basis

return basis

hf_method

return Hartree-Fock method

molecule

return molecule

supports_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 QMolecule output.

반환 형식

QMolecule

반환값

A QMolecule containing the molecular data.

property supports_molecule

True for derived classes that support Molecule.

반환 형식

bool

반환값

True if Molecule is supported.