Source code for pina._src.equation.zoo.fixed_flux
"""Module for defining the fixed flux equation."""
from pina._src.equation.equation import Equation
from pina._src.core.operator import div
from pina._src.core.utils import check_consistency
[docs]
class FixedFlux(Equation):
"""
Equation to enforce a fixed flux, or divergence, for a specific condition.
"""
def __init__(self, value, components=None, d=None):
"""
Initialization of the :class:`FixedFlux` class.
:param value: The fixed value to be enforced to the flux.
:type value: float | int
:param components: The name of the output variables for which the fixed
flux condition is applied. It should be a subset of the output
labels. If ``None``, all output variables are considered. Default is
``None``.
:type components: str | list[str]
:param d: The name of the input variables on which the flux is computed.
It should be a subset of the input labels. If ``None``, all the
input variables are considered. Default is ``None``.
:type d: str | list[str]
:raises ValueError: If ``value`` is neither a float nor an integer.
:raises ValueError: If, when provided, ``components`` is neither a
string nor a list of strings.
:raises ValueError: If, when provided, ``d`` is neither a string nor a
list of strings.
"""
# Check consistency
check_consistency(value, (float, int))
if components is not None:
check_consistency(components, str)
if d is not None:
check_consistency(d, str)
def equation(input_, output_):
"""
Definition of the equation to enforce a fixed flux.
:param LabelTensor input_: The input points where the residual is
computed.
:param LabelTensor output_: The output tensor, potentially produced
by a :class:`torch.nn.Module` instance.
:return: The residual values of the equation.
:rtype: LabelTensor
"""
return div(output_, input_, components=components, d=d) - value
super().__init__(equation)