/usr/include/dolfin/function/Function.h is in libdolfin1.0-dev 1.0.0-1.
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 | // Copyright (C) 2003-2009 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.
// Modified by Andre Massing, 2009.
//
// First added: 2003-11-28
// Last changed: 2011-03-15
#ifndef __FUNCTION_H
#define __FUNCTION_H
#include <utility>
#include <vector>
#include <boost/ptr_container/ptr_map.hpp>
#include <boost/scoped_ptr.hpp>
#include <boost/shared_ptr.hpp>
#include <dolfin/common/Hierarchical.h>
#include "GenericFunction.h"
namespace ufc
{
// Forward declarations
class cell;
}
namespace dolfin
{
// Forward declarations
class DirichletBC;
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:
/// Create function on given function space
///
/// *Arguments*
/// V (_FunctionSpace_)
/// The function space.
///
/// *Example*
/// .. code-block:: c++
///
/// Function u(V);
///
explicit Function(const FunctionSpace& V);
/// Create function on given function space (shared data)
///
/// *Arguments*
/// V (_FunctionSpace_)
/// The function space.
explicit Function(boost::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(boost::shared_ptr<const FunctionSpace> V,
boost::shared_ptr<GenericVector> x);
/// Create function from vector of dofs stored to file
///
/// *Arguments*
/// V (_FunctionSpace_)
/// The function space.
/// filename_vector (std::string)
/// The name of the file containing the vector.
/// filename_dofdata (std::string)
/// The name of the file containing the dofmap data.
Function(const FunctionSpace& V, std::string filename);
/// 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(boost::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 (uint)
/// Index of subfunction.
///
Function(const Function& v, uint 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);
/// Extract subfunction
///
/// *Arguments*
/// i (uint)
/// Index of subfunction.
Function& operator[] (uint i) const;
/// Return shared pointer to function space
///
/// *Returns*
/// _FunctionSpace_
/// Return the shared pointer.
boost::shared_ptr<const FunctionSpace> function_space() const;
/// Return vector of expansion coefficients (non-const version)
///
/// *Returns*
/// _GenericVector_
/// The vector of expansion coefficients.
boost::shared_ptr<GenericVector> vector();
/// Return vector of expansion coefficients (const version)
///
/// *Returns*
/// _GenericVector_
/// The vector of expansion coefficients (const).
boost::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*
/// uint
/// The geometric dimension.
uint geometric_dimension() const;
/// Evaluate function at given coordinates
///
/// *Arguments*
/// values (_Array_ <double>)
/// The values.
/// x (_Array_ <double>)
/// The coordinates.
void eval(Array<double>& values, const Array<double>& x) const;
/// Evaluate function at given coordinates in given cell
///
/// *Arguments*
/// values (_Array_ <double>)
/// The values.
/// x (_Array_ <double>)
/// The coordinates.
/// dolfin_cell (_Cell_)
/// The cell.
/// 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;
/// Interpolate function (on possibly non-matching meshes)
///
/// *Arguments*
/// 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*
/// uint
/// The value rank.
virtual uint value_rank() const;
/// Return value dimension for given axis
///
/// *Arguments*
/// i (uint)
/// The index of the axis.
///
/// *Returns*
/// uint
/// The value dimension.
virtual uint value_dimension(uint i) const;
/// Evaluate at given point in given cell
///
/// *Arguments*
/// values (_Array_ <double>)
/// The values at the point.
/// x (_Array_ <double>)
/// The coordinates of the point.
/// 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;
/// Evaluate function for given data (non-matching meshes)
///
/// *Arguments*
/// values (_Array_ <double>)
/// The values at the point.
/// x (_Array_ <double>)
/// The coordinates of the point.
/// cell (ufc::cell)
/// The cell.
void non_matching_eval(Array<double>& values, const Array<double>& x,
const ufc::cell& ufc_cell) const;
/// Restrict function to local cell (compute expansion coefficients w)
///
/// *Arguments*
/// w (list of doubles)
/// Expansion coefficients.
/// element (_FiniteElement_)
/// The element.
/// dolfin_cell (_Cell_)
/// The cell.
/// ufc_cell (ufc::cell).
/// The ufc::cell.
virtual void restrict(double* w,
const FiniteElement& element,
const Cell& dolfin_cell,
const ufc::cell& ufc_cell) const;
/// Compute values at all mesh vertices
///
/// *Arguments*
/// vertex_values (_Array_ <double>)
/// The values at all vertices.
/// mesh (_Mesh_)
/// The mesh.
virtual void compute_vertex_values(Array<double>& vertex_values,
const Mesh& mesh) const;
/// Collect off-process coefficients to prepare for interpolation
virtual void gather() const;
private:
// Friends
friend class FunctionSpace;
// Collection of sub-functions which share data with the function
mutable boost::ptr_map<uint, Function> sub_functions;
// Compute lists of off-process dofs
void compute_off_process_dofs() const;
// Initialize vector
void init_vector();
// Get coefficients from the vector(s)
void compute_ghost_indices(std::pair<uint, uint> range,
std::vector<uint>& ghost_indices) const;
// The function space
boost::shared_ptr<const FunctionSpace> _function_space;
// The vector of expansion coefficients (local)
boost::shared_ptr<GenericVector> _vector;
// True if extrapolation should be allowed
bool allow_extrapolation;
};
}
#endif
|