qiskit-documentation/docs/api/qiskit/0.26/qiskit.chemistry.algorithms...

125 lines
6.1 KiB
Plaintext
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
title: EnergySurfaceBase (v0.26)
description: API reference for qiskit.chemistry.algorithms.pes_samplers.EnergySurfaceBase in qiskit v0.26
in_page_toc_min_heading_level: 1
python_api_type: class
python_api_name: qiskit.chemistry.algorithms.pes_samplers.EnergySurfaceBase
---
<span id="qiskit-chemistry-algorithms-pes-samplers-energysurfacebase" />
# qiskit.chemistry.algorithms.pes\_samplers.EnergySurfaceBase
<Class id="qiskit.chemistry.algorithms.pes_samplers.EnergySurfaceBase" isDedicatedPage={true} github="https://github.com/qiskit-community/qiskit-aqua/tree/stable/0.9/qiskit/chemistry/algorithms/pes_samplers/potentials/potential_base.py" signature="EnergySurfaceBase" modifiers="class">
Class to hold a potential energy surface
### \_\_init\_\_
<Function id="qiskit.chemistry.algorithms.pes_samplers.EnergySurfaceBase.__init__" signature="__init__()">
Initialize self. See help(type(self)) for accurate signature.
</Function>
## Methods
| | |
| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------- |
| [`__init__`](#qiskit.chemistry.algorithms.pes_samplers.EnergySurfaceBase.__init__ "qiskit.chemistry.algorithms.pes_samplers.EnergySurfaceBase.__init__")() | Initialize self. |
| [`eval`](#qiskit.chemistry.algorithms.pes_samplers.EnergySurfaceBase.eval "qiskit.chemistry.algorithms.pes_samplers.EnergySurfaceBase.eval")(x) | After fitting the data to the fit function, predict the energy at a point x. |
| [`fit`](#qiskit.chemistry.algorithms.pes_samplers.EnergySurfaceBase.fit "qiskit.chemistry.algorithms.pes_samplers.EnergySurfaceBase.fit")(xdata, ydata\[, initial\_vals, bounds\_list]) | Fits surface to data |
| [`get_equilibrium_geometry`](#qiskit.chemistry.algorithms.pes_samplers.EnergySurfaceBase.get_equilibrium_geometry "qiskit.chemistry.algorithms.pes_samplers.EnergySurfaceBase.get_equilibrium_geometry")(\[scaling]) | Get the equilibrium energy. |
| [`get_minimal_energy`](#qiskit.chemistry.algorithms.pes_samplers.EnergySurfaceBase.get_minimal_energy "qiskit.chemistry.algorithms.pes_samplers.EnergySurfaceBase.get_minimal_energy")(\[scaling]) | Get the minimal energy. |
| [`get_trust_region`](#qiskit.chemistry.algorithms.pes_samplers.EnergySurfaceBase.get_trust_region "qiskit.chemistry.algorithms.pes_samplers.EnergySurfaceBase.get_trust_region")() | Get the trust region. |
### eval
<Function id="qiskit.chemistry.algorithms.pes_samplers.EnergySurfaceBase.eval" signature="eval(x)" modifiers="abstract">
After fitting the data to the fit function, predict the energy at a point x.
**Parameters**
**x** (`float`) value to evaluate surface in
**Return type**
`float`
**Returns**
value of surface in point x
</Function>
### fit
<Function id="qiskit.chemistry.algorithms.pes_samplers.EnergySurfaceBase.fit" signature="fit(xdata, ydata, initial_vals=None, bounds_list=None)" modifiers="abstract">
Fits surface to data
**Parameters**
* **xdata** (`List`\[`float`]) x data to be fitted
* **ydata** (`List`\[`float`]) y data to be fitted
* **initial\_vals** (`Optional`\[`List`\[`float`]]) 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** (`Optional`\[`Tuple`\[`List`\[`float`], `List`\[`float`]]]) Bounds for the fit parameters. None for default. Order of parameters is d\_e, alpha, r\_0 and m\_shift (see fit\_function implementation)
**Return type**
`None`
</Function>
### get\_equilibrium\_geometry
<Function id="qiskit.chemistry.algorithms.pes_samplers.EnergySurfaceBase.get_equilibrium_geometry" signature="get_equilibrium_geometry(scaling=1.0)" modifiers="abstract">
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.
**Parameters**
**scaling** (`float`) scaling factor
**Return type**
`float`
**Returns**
equilibrium geometry
</Function>
### get\_minimal\_energy
<Function id="qiskit.chemistry.algorithms.pes_samplers.EnergySurfaceBase.get_minimal_energy" signature="get_minimal_energy(scaling=1.0)" modifiers="abstract">
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.
**Parameters**
**scaling** (`float`) scaling factor
**Return type**
`float`
**Returns**
minimum energy
</Function>
### get\_trust\_region
<Function id="qiskit.chemistry.algorithms.pes_samplers.EnergySurfaceBase.get_trust_region" signature="get_trust_region()" modifiers="abstract">
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().
**Return type**
`Tuple`\[`float`, `float`]
**Returns**
the trust region between bounds
</Function>
</Class>