Source code for nifty8.minimization.energy

# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
#
# Copyright(C) 2013-2019 Max-Planck-Society
#
# NIFTy is being developed at the Max-Planck-Institut fuer Astrophysik.

from ..utilities import NiftyMeta


[docs] class Energy(metaclass=NiftyMeta): """Provides the functional used by minimization schemes. The Energy object is an implementation of a scalar function including its gradient and metric at some position. Parameters ---------- position : :class:`nifty8.field.Field` The input parameter of the scalar function. Notes ----- An instance of the Energy class is defined at a certain location. If one is interested in the value, gradient or metric of the abstract energy functional one has to 'jump' to the new position using the `at` method. This method returns a new energy instance residing at the new position. By this approach, intermediate results from computing e.g. the gradient can safely be reused for e.g. the value or the metric. Memorizing the evaluations of some quantities minimizes the computational effort for multiple calls. """
[docs] def __init__(self, position): self._position = position self._gradnorm = None
[docs] def at(self, position): """Returns a new Energy object, initialized at `position`. Parameters ---------- position : :class:`nifty8.field.Field` Location in parameter space for the new Energy object. Returns ------- Energy Energy object at new position. """ return self.__class__(position)
@property def position(self): """ field : selected location in parameter space. The Field location in parameter space where value, gradient and metric are evaluated. """ return self._position @property def value(self): """ float : value of the functional. The value of the energy functional at given `position`. """ raise NotImplementedError @property def gradient(self): """ field : The gradient at given `position`. """ raise NotImplementedError @property def gradient_norm(self): """ float : L2-norm of the gradient at given `position`. """ if self._gradnorm is None: self._gradnorm = self.gradient.norm() return self._gradnorm @property def metric(self): """ LinearOperator : implicitly defined metric. A positive semi-definite operator or function describing the metric of the potential at the given `position`. """ raise NotImplementedError
[docs] def apply_metric(self, x): """ Parameters ---------- x : :class:`nifty8.field.Field` or :class:`nifty8.multi_field.MultiField` Argument for the metric operator Returns ------- :class:`nifty8.field.Field` or :class:`nifty8.multi_field.MultiField` Output of the metric operator """ raise NotImplementedError
[docs] def longest_step(self, direction): """Returns the longest allowed step size along `direction` Parameters ---------- direction : :class:`nifty8.field.Field` the search direction Returns ------- float or None the longest allowed step when starting from `self.position` along `direction`. If None, the step size is not limited. """ return None