/usr/include/dolfin/function/Function.h is in libdolfin-dev 2017.2.0.post0-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 | // Copyright (C) 2003-2012 Anders Logg
//
// This file is part of DOLFIN.
//
// DOLFIN is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// DOLFIN 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 Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with DOLFIN. If not, see <http://www.gnu.org/licenses/>.
//
// Modified by Garth N. Wells, 2005-2010.
// Modified by Kristian B. Oelgaard, 2007.
// Modified by Martin Sandve Alnes, 2008-2014.
// Modified by Andre Massing, 2009.
#ifndef __FUNCTION_H
#define __FUNCTION_H
#include <memory>
#include <string>
#include <utility>
#include <vector>
#include <boost/ptr_container/ptr_map.hpp>
#include <Eigen/Dense>
#include <dolfin/common/types.h>
#include <dolfin/common/Hierarchical.h>
#include "GenericFunction.h"
#include "FunctionAXPY.h"
namespace ufc
{
// Forward declarations
class cell;
}
namespace dolfin
{
// Forward declarations
class Cell;
class Expression;
class FunctionSpace;
class GenericVector;
class SubDomain;
template<typename T> class Array;
/// This class represents a function :math:`u_h` in a finite
/// element function space :math:`V_h`, given by
///
/// .. math::
///
/// u_h = \sum_{i=1}^{n} U_i \phi_i
///
/// where :math:`\{\phi_i\}_{i=1}^{n}` is a basis for :math:`V_h`,
/// and :math:`U` is a vector of expansion coefficients for :math:`u_h`.
class Function : public GenericFunction, public Hierarchical<Function>
{
public:
Function() : Hierarchical<Function>(*this) {}
/// Create function on given function space (shared data)
///
/// *Arguments*
/// V (_FunctionSpace_)
/// The function space.
explicit Function(std::shared_ptr<const FunctionSpace> V);
/// Create function on given function space with a given vector
/// (shared data)
///
/// *Warning: This constructor is intended for internal library use only*
///
/// *Arguments*
/// V (_FunctionSpace_)
/// The function space.
/// x (_GenericVector_)
/// The vector.
Function(std::shared_ptr<const FunctionSpace> V,
std::shared_ptr<GenericVector> x);
/// Create function from vector of dofs stored to file (shared data)
///
/// *Arguments*
/// V (_FunctionSpace_)
/// The function space.
/// filename_dofdata (std::string)
/// The name of the file containing the dofmap data.
Function(std::shared_ptr<const FunctionSpace> V,
std::string filename);
/// Copy constructor
///
/// *Arguments*
/// v (_Function_)
/// The object to be copied.
Function(const Function& v);
/// Sub-function constructor with shallow copy of vector (used in Python
/// interface)
///
/// *Arguments*
/// v (_Function_)
/// The function to be copied.
/// i (std::size_t)
/// Index of subfunction.
///
Function(const Function& v, std::size_t i);
/// Destructor
virtual ~Function();
/// Assignment from function
///
/// *Arguments*
/// v (_Function_)
/// Another function.
const Function& operator= (const Function& v);
/// Assignment from expression using interpolation
///
/// *Arguments*
/// v (_Expression_)
/// The expression.
const Function& operator= (const Expression& v);
/// Assignment from linear combination of function
///
/// *Arguments*
/// v (_FunctionAXPY_)
/// A linear combination of other Functions
void operator=(const FunctionAXPY& axpy);
/// Extract subfunction
///
/// *Arguments*
/// i (std::size_t)
/// Index of subfunction.
/// *Returns*
/// _Function_
/// The subfunction.
Function& operator[] (std::size_t i) const;
/// Return shared pointer to function space
///
/// *Returns*
/// _FunctionSpace_
/// Return the shared pointer.
virtual std::shared_ptr<const FunctionSpace> function_space() const override
{
dolfin_assert(_function_space);
return _function_space;
}
/// Return vector of expansion coefficients (non-const version)
///
/// *Returns*
/// _GenericVector_
/// The vector of expansion coefficients.
std::shared_ptr<GenericVector> vector();
/// Return vector of expansion coefficients (const version)
///
/// *Returns*
/// _GenericVector_
/// The vector of expansion coefficients (const).
std::shared_ptr<const GenericVector> vector() const;
/// Check if function is a member of the given function space
///
/// *Arguments*
/// V (_FunctionSpace_)
/// The function space.
///
/// *Returns*
/// bool
/// True if the function is in the function space.
bool in(const FunctionSpace& V) const;
/// Return geometric dimension
///
/// *Returns*
/// std::size_t
/// The geometric dimension.
std::size_t geometric_dimension() const;
/// Evaluate function at given coordinates
///
/// @param values (Array<double>)
/// The values.
/// @param x (Array<double>)
/// The coordinates.
void eval(Array<double>& values, const Array<double>& x) const override;
/// Evaluate function at given coordinates in given cell
///
/// *Arguments*
/// @param values (Array<double>)
/// The values.
/// @param x (Array<double>)
/// The coordinates.
/// @param dolfin_cell (_Cell_)
/// The cell.
/// @param ufc_cell (ufc::cell)
/// The ufc::cell.
void eval(Array<double>& values, const Array<double>& x,
const Cell& dolfin_cell, const ufc::cell& ufc_cell) const;
/// Evaluate function at given coordinates
///
/// @param values (Eigen::Ref<Eigen::VectorXd> values)
/// The values.
/// @param x (Eigen::Ref<const Eigen::VectorXd> x)
/// The coordinates.
void eval(Eigen::Ref<Eigen::VectorXd> values,
Eigen::Ref<const Eigen::VectorXd> x) const override;
/// Evaluate function at given coordinates in given cell
///
/// *Arguments*
/// @param values (Eigen::Ref<Eigen::VectorXd>)
/// The values.
/// @param x (Eigen::Ref<const Eigen::VectorXd>)
/// The coordinates.
/// @param dolfin_cell (_Cell_)
/// The cell.
/// @param ufc_cell (ufc::cell)
/// The ufc::cell.
void eval(Eigen::Ref<Eigen::VectorXd> values,
Eigen::Ref<const Eigen::VectorXd> x,
const dolfin::Cell& dolfin_cell, const ufc::cell& ufc_cell) const;
/// Interpolate function (on possibly non-matching meshes)
///
/// @param v (GenericFunction)
/// The function to be interpolated.
void interpolate(const GenericFunction& v);
/// Extrapolate function (from a possibly lower-degree function space)
///
/// *Arguments*
/// v (_Function_)
/// The function to be extrapolated.
void extrapolate(const Function& v);
//--- Implementation of GenericFunction interface ---
/// Return value rank
///
/// *Returns*
/// std::size_t
/// The value rank.
virtual std::size_t value_rank() const override;
/// Return value dimension for given axis
///
/// *Arguments*
/// i (std::size_t)
/// The index of the axis.
///
/// *Returns*
/// std::size_t
/// The value dimension.
virtual std::size_t value_dimension(std::size_t i) const override;
/// Return value shape
///
/// *Returns*
/// std::vector<std::size_t>
/// The value shape.
virtual std::vector<std::size_t> value_shape() const override;
/// Evaluate at given point in given cell
///
/// @param values (Array<double>)
/// The values at the point.
/// @param x (Array<double>)
/// The coordinates of the point.
/// @param cell (ufc::cell)
/// The cell which contains the given point.
virtual void eval(Array<double>& values, const Array<double>& x,
const ufc::cell& cell) const override;
/// Evaluate at given point in given cell
///
/// @param values (Eigen::Ref<Eigen::VectorXd>)
/// The values at the point.
/// @param x (Eigen::Ref<const Eigen::VectorXd>
/// The coordinates of the point.
/// @param cell (ufc::cell)
/// The cell which contains the given point.
virtual void eval(Eigen::Ref<Eigen::VectorXd> values,
Eigen::Ref<const Eigen::VectorXd> x,
const ufc::cell& cell) const override;
/// Restrict function to local cell (compute expansion coefficients w)
///
/// @param w (list of doubles)
/// Expansion coefficients.
/// @param element (_FiniteElement_)
/// The element.
/// @param dolfin_cell (_Cell_)
/// The cell.
/// @param coordinate_dofs (double *)
/// The coordinates
/// @param ufc_cell (ufc::cell).
/// The ufc::cell.
virtual void restrict(double* w,
const FiniteElement& element,
const Cell& dolfin_cell,
const double* coordinate_dofs,
const ufc::cell& ufc_cell) const override;
/// Compute values at all mesh vertices
///
/// @param vertex_values (Array<double>)
/// The values at all vertices.
/// @param mesh (_Mesh_)
/// The mesh.
virtual void compute_vertex_values(std::vector<double>& vertex_values,
const Mesh& mesh) const override;
/// Compute values at all mesh vertices
///
/// @param vertex_values (Array<double>)
/// The values at all vertices.
void compute_vertex_values(std::vector<double>& vertex_values);
/// Allow extrapolation when evaluating the Function
///
/// @param allow_extrapolation (bool)
/// Whether or not permit extrapolation.
void set_allow_extrapolation(bool allow_extrapolation)
{ _allow_extrapolation = allow_extrapolation; }
/// Check if extrapolation is permitted when evaluating the Function
///
/// @return bool
/// True if extrapolation is permitted, otherwise false
bool get_allow_extrapolation() const
{ return _allow_extrapolation; }
private:
// Friends
friend class FunctionSpace;
friend class FunctionAssigner;
// Collection of sub-functions which share data with the function
mutable boost::ptr_map<std::size_t, Function> _sub_functions;
// Initialize vector
void init_vector();
// The function space
std::shared_ptr<const FunctionSpace> _function_space;
// The vector of expansion coefficients (local)
std::shared_ptr<GenericVector> _vector;
// True if extrapolation should be allowed
bool _allow_extrapolation;
};
}
#endif
|