qiskit.chemistry.drivers.PySCFDriver¶
-
class
PySCFDriver
(atom='H 0.0 0.0 0.0; H 0.0 0.0 0.735', unit=<UnitsType.ANGSTROM: 'Angstrom'>, charge=0, spin=0, basis='sto3g', hf_method=<HFMethodType.RHF: 'rhf'>, conv_tol=1e-09, max_cycle=50, init_guess=<InitialGuess.MINAO: 'minao'>, max_memory=None, molecule=None)[ソース]¶ Qiskit chemistry driver using the PySCF library.
See https://sunqm.github.io/pyscf/
- パラメータ
atom (
Union
[str
,List
[str
]]) – Atom list or string separated by semicolons or line breaks. Each element in the list is an atom followed by position e.g. H 0.0 0.0 0.5. The preceding example shows the XYZ format for position but Z-Matrix format is supported too here.unit (
UnitsType
) – Angstrom or Bohrcharge (
int
) – Charge on the moleculespin (
int
) – Spin (2S), in accordance with how PySCF defines a molecule in pyscf.gto.mole.Molebasis (
str
) – Basis sethf_method (
HFMethodType
) – Hartree-Fock Method typeconv_tol (
float
) – Convergence tolerance see PySCF docs and pyscf/scf/hf.pymax_cycle (
int
) – Max convergence cycles see PySCF docs and pyscf/scf/hf.py, has a min. value of 1.init_guess (
InitialGuess
) – See PySCF pyscf/scf/hf.py init_guess_by_minao/1e/atom methodsmax_memory (
Optional
[int
]) – Maximum memory that PySCF should usemolecule (
Optional
[Molecule
]) – A driver independent Molecule definition instance may be provided. When a molecule is supplied the atom, unit, charge and spin parameters are all ignored as the Molecule instance now defines these instead. The Molecule object is read when the driver is run and converted to the driver dependent configuration for the computation. This allows, for example, the Molecule geometry to be updated to compute different points.
- 例外
QiskitChemistryError – Invalid Input
-
__init__
(atom='H 0.0 0.0 0.0; H 0.0 0.0 0.735', unit=<UnitsType.ANGSTROM: 'Angstrom'>, charge=0, spin=0, basis='sto3g', hf_method=<HFMethodType.RHF: 'rhf'>, conv_tol=1e-09, max_cycle=50, init_guess=<InitialGuess.MINAO: 'minao'>, max_memory=None, molecule=None)[ソース]¶ - パラメータ
atom (
Union
[str
,List
[str
]]) – Atom list or string separated by semicolons or line breaks. Each element in the list is an atom followed by position e.g. H 0.0 0.0 0.5. The preceding example shows the XYZ format for position but Z-Matrix format is supported too here.unit (
UnitsType
) – Angstrom or Bohrcharge (
int
) – Charge on the moleculespin (
int
) – Spin (2S), in accordance with how PySCF defines a molecule in pyscf.gto.mole.Molebasis (
str
) – Basis sethf_method (
HFMethodType
) – Hartree-Fock Method typeconv_tol (
float
) – Convergence tolerance see PySCF docs and pyscf/scf/hf.pymax_cycle (
int
) – Max convergence cycles see PySCF docs and pyscf/scf/hf.py, has a min. value of 1.init_guess (
InitialGuess
) – See PySCF pyscf/scf/hf.py init_guess_by_minao/1e/atom methodsmax_memory (
Optional
[int
]) – Maximum memory that PySCF should usemolecule (
Optional
[Molecule
]) – A driver independent Molecule definition instance may be provided. When a molecule is supplied the atom, unit, charge and spin parameters are all ignored as the Molecule instance now defines these instead. The Molecule object is read when the driver is run and converted to the driver dependent configuration for the computation. This allows, for example, the Molecule geometry to be updated to compute different points.
- 例外
QiskitChemistryError – Invalid Input
Methods
__init__
([atom, unit, charge, spin, basis, …])- type atom
Union
[str
,List
[str
]]
run
()Runs driver to produce a QMolecule 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
]
-
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.