1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202
|
// ------------------------------------------------------------------------
//
// SPDX-License-Identifier: LGPL-2.1-or-later
// Copyright (C) 1999 - 2025 by the deal.II authors
//
// This file is part of the deal.II library.
//
// Part of the source code is dual licensed under Apache-2.0 WITH
// LLVM-exception OR LGPL-2.1-or-later. Detailed license information
// governing the source code and code contributions can be found in
// LICENSE.md and CONTRIBUTING.md at the top level directory of deal.II.
//
// ------------------------------------------------------------------------
#ifndef dealii_tensor_function_h
#define dealii_tensor_function_h
#include <deal.II/base/config.h>
#include <deal.II/base/enable_observer_pointer.h>
#include <deal.II/base/exceptions.h>
#include <deal.II/base/function.h>
#include <deal.II/base/function_time.h>
#include <deal.II/base/observer_pointer.h>
#include <deal.II/base/point.h>
#include <vector>
DEAL_II_NAMESPACE_OPEN
/**
* This class is a model for a tensor valued function. The interface of the
* class is mostly the same as that for the Function class, with the exception
* that it does not support vector-valued functions with several components,
* but that the return type is always tensor-valued. The returned values of
* the evaluation of objects of this type are always whole tensors, while for
* the <tt>Function</tt> class, one can ask for a specific component only, or
* use the <tt>vector_value</tt> function, which however does not return the
* value, but rather writes it into the address provided by its second
* argument. The reason for the different behavior of the classes is that in
* the case of tensor valued functions, the size of the argument is known to
* the compiler a priori, such that the correct amount of memory can be
* allocated on the stack for the return value; on the other hand, for the
* vector valued functions, the size is not known to the compiler, so memory
* has to be allocated on the heap, resulting in relatively expensive copy
* operations. One can therefore consider this class a specialization of the
* <tt>Function</tt> class for which the size is known. An additional benefit
* is that tensors of arbitrary rank can be returned, not only vectors, as for
* them the size can be determined similarly simply.
*
* @ingroup functions
*/
template <int rank, int dim, typename Number = double>
class TensorFunction
: public FunctionTime<typename numbers::NumberTraits<Number>::real_type>,
public EnableObserverPointer
{
public:
/**
* Alias for the return types of the <tt>value</tt> function.
*/
using value_type = Tensor<rank, dim, Number>;
/**
* Alias for the return types of the <tt>gradient</tt> functions.
*/
using gradient_type = Tensor<rank + 1, dim, Number>;
/**
* The scalar-valued real type used for representing time.
*/
using time_type = typename FunctionTime<
typename numbers::NumberTraits<Number>::real_type>::time_type;
/**
* Constructor. May take an initial value for the time variable, which
* defaults to zero.
*/
TensorFunction(const time_type initial_time = time_type(0.0));
/**
* Virtual destructor; absolutely necessary in this case, as classes are
* usually not used by their true type, but rather through pointers to this
* base class.
*/
virtual ~TensorFunction() override = default;
/**
* Return the value of the function at the given point.
*/
virtual value_type
value(const Point<dim> &p) const;
/**
* Set <tt>values</tt> to the point values of the function at the
* <tt>points</tt>. It is assumed that <tt>values</tt> already has the
* right size, i.e. the same size as the <tt>points</tt> array.
*/
virtual void
value_list(const std::vector<Point<dim>> &points,
std::vector<value_type> &values) const;
/**
* Return the gradient of the function at the given point.
*/
virtual gradient_type
gradient(const Point<dim> &p) const;
/**
* Set <tt>gradients</tt> to the gradients of the function at the
* <tt>points</tt>. It is assumed that <tt>values</tt> already has the
* right size, i.e. the same size as the <tt>points</tt> array.
*/
virtual void
gradient_list(const std::vector<Point<dim>> &points,
std::vector<gradient_type> &gradients) const;
};
/**
* Provide a tensor valued function which always returns a constant tensor
* value. Obviously, all derivatives of this function are zero.
*
* @ingroup functions
*/
template <int rank, int dim, typename Number = double>
class ConstantTensorFunction : public TensorFunction<rank, dim, Number>
{
public:
/**
* The scalar-valued real type used for representing time.
*/
using time_type = typename TensorFunction<rank, dim, Number>::time_type;
/**
* Constructor; takes the constant tensor value as an argument. The
* reference value is copied internally.
*
* An initial value for the time variable may be specified, otherwise it
* defaults to zero.
*/
ConstantTensorFunction(const dealii::Tensor<rank, dim, Number> &value,
const time_type initial_time = 0.0);
virtual ~ConstantTensorFunction() override = default;
virtual typename dealii::TensorFunction<rank, dim, Number>::value_type
value(const Point<dim> &p) const override;
virtual void
value_list(
const std::vector<Point<dim>> &points,
std::vector<typename dealii::TensorFunction<rank, dim, Number>::value_type>
&values) const override;
virtual typename dealii::TensorFunction<rank, dim, Number>::gradient_type
gradient(const Point<dim> &p) const override;
virtual void
gradient_list(
const std::vector<Point<dim>> &points,
std::vector<
typename dealii::TensorFunction<rank, dim, Number>::gradient_type>
&gradients) const override;
private:
const dealii::Tensor<rank, dim, Number> _value;
};
/**
* Provide a tensor valued function which always returns zero. Obviously, all
* derivatives of this function are zero.
*
* @ingroup functions
*/
template <int rank, int dim, typename Number = double>
class ZeroTensorFunction : public ConstantTensorFunction<rank, dim, Number>
{
public:
/**
* The scalar-valued real type used for representing time.
*/
using time_type =
typename ConstantTensorFunction<rank, dim, Number>::time_type;
/**
* Constructor.
*
* An initial value for the time variable may be specified, otherwise it
* defaults to zero.
*/
ZeroTensorFunction(const time_type initial_time = 0.0);
};
DEAL_II_NAMESPACE_CLOSE
#endif
|