/usr/include/dolfin/function/Expression.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 | // Copyright (C) 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/>.
//
// First added: 2009-09-28
// Last changed: 2011-08-15
#ifndef __EXPRESSION_H
#define __EXPRESSION_H
#include <vector>
#include <ufc.h>
#include <dolfin/common/Array.h>
#include "GenericFunction.h"
namespace dolfin
{
class Mesh;
/// This class represents a user-defined expression. Expressions can
/// be used as coefficients in variational forms or interpolated
/// into finite element spaces.
///
/// An expression is defined by overloading the eval() method. Users
/// may choose to overload either a simple version of eval(), in the
/// case of expressions only depending on the coordinate x, or an
/// optional version for expressions depending on x and mesh data
/// like cell indices or facet normals.
///
/// The geometric dimension (the size of x) and the value rank and
/// dimensions of an expression must supplied as arguments to the
/// constructor.
class Expression : public GenericFunction
{
public:
/// Create scalar expression.
Expression();
/// Create vector-valued expression with given dimension.
///
/// *Arguments*
/// dim (uint)
/// Dimension of the vector-valued expression.
Expression(uint dim);
/// Create matrix-valued expression with given dimensions.
///
/// *Arguments*
/// dim0 (uint)
/// Dimension (rows).
/// dim1 (uint)
/// Dimension (columns).
Expression(uint dim0, uint dim1);
/// Create tensor-valued expression with given shape.
///
/// *Arguments*
/// value_shape (std::vector<uint>)
/// Shape of expression.
Expression(std::vector<uint> value_shape);
/// Copy constructor
///
/// *Arguments*
/// expression (_Expression_)
/// Object to be copied.
Expression(const Expression& expression);
/// Destructor
virtual ~Expression();
//--- Implementation of GenericFunction interface ---
/// Note: The reimplementation of eval is needed for the Python interface.
/// 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 at given point.
///
/// *Arguments*
/// values (_Array_ <double>)
/// The values at the point.
/// x (_Array_ <double>)
/// The coordinates of the point.
virtual void eval(Array<double>& values, const Array<double>& x) const;
/// Return value rank.
///
/// *Returns*
/// uint
/// The value rank.
virtual uint value_rank() const;
/// Return value dimension for given axis.
///
/// *Arguments*
/// i (uint)
/// Integer denoting the axis to use.
///
/// *Returns*
/// uint
/// The value dimension (for the given axis).
virtual uint value_dimension(uint i) 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;
protected:
// Value shape
std::vector<uint> value_shape;
};
}
#endif
|