Source code for qiskit.chemistry.algorithms.pes_samplers.potentials.potential_base
# This code is part of Qiskit.
#
# (C) Copyright IBM 2020.
#
# This code is licensed under the Apache License, Version 2.0. You may
# obtain a copy of this license in the LICENSE.txt file in the root directory
# of this source tree or at http://www.apache.org/licenses/LICENSE-2.0.
#
# Any modifications or derivative works of this code must retain this
# copyright notice, and modified files need to carry a notice indicating
# that they have been altered from the originals.
"""
This module declares interfaces for implementing potential energy surface
and vibrational structure of a given molecule.
"""
from abc import ABC, abstractmethod
from typing import Tuple, List, Optional
from qiskit.chemistry.drivers import Molecule
[docs]class EnergySurfaceBase(ABC):
""" Class to hold a potential energy surface """
[docs] @abstractmethod
def eval(self, x: float) -> float:
"""
After fitting the data to the fit function, predict the energy at a point x.
Args:
x: value to evaluate surface in
Returns:
value of surface in point x
"""
raise NotImplementedError
[docs] @abstractmethod
def fit(self, xdata: List[float], ydata: List[float],
initial_vals: Optional[List[float]] = None,
bounds_list: Optional[Tuple[List[float], List[float]]] = None
) -> None:
"""Fits surface to data
Args:
xdata: x data to be fitted
ydata: y data to be fitted
initial_vals: Initial values for fit parameters. None for default.
Order of parameters is d_e, alpha, r_0 and m_shift
(see fit_function implementation)
bounds_list: Bounds for the fit parameters. None for default.
Order of parameters is d_e, alpha, r_0 and m_shift
(see fit_function implementation)
"""
raise NotImplementedError
[docs] @abstractmethod
def get_equilibrium_geometry(self, scaling: float = 1.0) -> float:
"""Get the equilibrium energy.
Returns the geometry for the minimal energy (scaled by 'scaling')
Default units (scaling=1.0) are Angstroms. Scale by 1E-10 to get
meters.
Args:
scaling: scaling factor
Returns:
equilibrium geometry
"""
raise NotImplementedError
[docs] @abstractmethod
def get_minimal_energy(self, scaling: float = 1.0) -> float:
"""Get the minimal energy.
Returns the value of the minimal energy (scaled by 'scaling')
Default units (scaling=1.0) are J/mol. Scale appropriately for
Hartrees.
Args:
scaling: scaling factor
Returns:
minimum energy
"""
raise NotImplementedError
[docs] @abstractmethod
def get_trust_region(self) -> Tuple[float, float]:
"""Get the trust region.
Returns the bounds of the region (in space) where the energy
surface implementation can be trusted. When doing spline
interpolation, for example, that would be the region where data
is interpolated (vs. extrapolated) from the arguments of
fit().
Returns:
the trust region between bounds
"""
raise NotImplementedError
[docs]class VibronicStructureBase(ABC):
"""
Class to hold a molecular vibronic structure providing access to
vibrational modes and energy levels.
"""
def __init__(self, molecule: Molecule) -> None:
self.update_molecule(molecule)
[docs] def update_molecule(self, molecule: Molecule) -> Molecule:
"""
Wipe state if molecule changes, and check validity of molecule
for potential.
Args:
molecule: chemistry molecule
Returns:
molecule used
"""
self.molecule = molecule
[docs] @abstractmethod
def get_num_modes(self) -> float:
"""Returns the number of vibrational modes for the molecule.
Returns:
the number of vibrational modes
"""
raise NotImplementedError
[docs] @abstractmethod
def vibrational_energy_level(self, n: int) -> float:
"""Returns the n-th vibrational energy level for a given mode.
Args:
n: number of vibrational mode
Returns:
n-th vibrational energy level for a given mode
"""
raise NotImplementedError
[docs] def get_maximum_trusted_level(self, n: int = 0) -> float: # pylint: disable=unused-argument
"""
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).
Args:
n: vibronic mode
Returns:
maximum_trusted_level setted
"""
return 100
[docs]class PotentialBase(EnergySurfaceBase, VibronicStructureBase):
"""Class to hold prescribed 1D potentials (e.g. Morse/Harmonic) over a degree of freedom."""
[docs] def get_num_modes(self) -> int:
""" This (1D) potential represents a single vibrational mode """
return 1
[docs] def get_trust_region(self) -> Tuple[float, float]:
"""
The potential will usually be well-defined (even if not useful) for
arbitrary x so we return a fairly large interval here.
Redefine in derived classes if needed.
"""
return (-100, 100)
[docs] @abstractmethod
def dissociation_energy(self, scaling: float = 1.0) -> float:
"""Returns the dissociation energy (scaled by 'scaling')"""
raise NotImplementedError