qiskit.chemistry.algorithms.pes_samplers.VibronicStructureBase¶
-
class
VibronicStructureBase
(molecule)[código fonte]¶ Class to hold a molecular vibronic structure providing access to vibrational modes and energy levels.
-
__init__
(molecule)[código fonte]¶ Initialize self. See help(type(self)) for accurate signature.
Methods
__init__
(molecule)Initialize self.
Returns the maximum energy level for which the particular implementation still provides a good approximation of reality.
Returns the number of vibrational modes for the molecule.
update_molecule
(molecule)Wipe state if molecule changes, and check validity of molecule for potential.
Returns the n-th vibrational energy level for a given mode.
-
get_maximum_trusted_level
(n=0)[código fonte]¶ Returns the maximum energy level for which the particular implementation still provides a good approximation of reality. Default value of 100. Redefined where needed (see e.g. Morse).
- Parâmetros
n (
int
) – vibronic mode- Tipo de retorno
float
- Retorna
maximum_trusted_level setted
-
abstract
get_num_modes
()[código fonte]¶ Returns the number of vibrational modes for the molecule.
- Tipo de retorno
float
- Retorna
the number of vibrational modes
-
update_molecule
(molecule)[código fonte]¶ Wipe state if molecule changes, and check validity of molecule for potential.
- Parâmetros
molecule (
Molecule
) – chemistry molecule- Tipo de retorno
Molecule
- Retorna
molecule used
-
abstract
vibrational_energy_level
(n)[código fonte]¶ Returns the n-th vibrational energy level for a given mode.
- Parâmetros
n (
int
) – number of vibrational mode- Tipo de retorno
float
- Retorna
n-th vibrational energy level for a given mode
-