Japanese
言語
English
Japanese
German
Korean
Portuguese, Brazilian
French
Shortcuts

qiskit.chemistry.drivers.FCIDumpDriver

class FCIDumpDriver(fcidump_input, atoms=None)[ソース]

Qiskit chemistry driver reading an FCIDump file.

The FCIDump format is partially defined in Knowles1989.

参照

Knowles1989: Peter J. Knowles, Nicholas C. Handy,

A determinant based full configuration interaction program, Computer Physics Communications, Volume 54, Issue 1, 1989, Pages 75-83, ISSN 0010-4655, https://doi.org/10.1016/0010-4655(89)90033-7.

パラメータ
  • fcidump_input (str) – Path to the FCIDump file.

  • atoms (Optional[List[str]]) – Allows to specify the atom list of the molecule. If it is provided, the created QMolecule instance will permit frozen core Hamiltonians. This list must consist of valid atom symbols.

例外

QiskitChemistryError – If fcidump_input is not a string or if atoms is not a list of valid atomic symbols as specified in QMolecule.

__init__(fcidump_input, atoms=None)[ソース]
パラメータ
  • fcidump_input (str) – Path to the FCIDump file.

  • atoms (Optional[List[str]]) – Allows to specify the atom list of the molecule. If it is provided, the created QMolecule instance will permit frozen core Hamiltonians. This list must consist of valid atom symbols.

例外

QiskitChemistryError – If fcidump_input is not a string or if atoms is not a list of valid atomic symbols as specified in QMolecule.

Methods

__init__(fcidump_input[, atoms])

type fcidump_input

str

dump(q_mol, outpath[, orbsym, isym])

Convenience method to produce an FCIDump output file.

run()

Constructs a QMolecule instance out of a FCIDump file.

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

static dump(q_mol, outpath, orbsym=None, isym=1)[ソース]

Convenience method to produce an FCIDump output file.

パラメータ
  • outpath (str) – Path to the output file.

  • q_mol (QMolecule) – QMolecule data to be dumped. It is assumed that the nuclear_repulsion_energy in this QMolecule instance contains the inactive core energy.

  • orbsym (Optional[List[str]]) – A list of spatial symmetries of the orbitals.

  • isym (int) – The spatial symmetry of the wave function.

戻り値の型

None

property hf_method

return Hartree-Fock method

戻り値の型

str

property molecule

return molecule

戻り値の型

Optional[Molecule]

run()[ソース]

Constructs a QMolecule instance out of a FCIDump file.

戻り値の型

QMolecule

戻り値

A QMolecule instance populated with a minimal set of required data.

property supports_molecule

True for derived classes that support Molecule.

戻り値の型

bool

戻り値

True if Molecule is supported.