/usr/include/dune/pdelab/common/geometrywrapper.hh is in libdune-pdelab-dev 2.4.1-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 | // -*- tab-width: 4; indent-tabs-mode: nil -*-
#ifndef DUNE_PDELAB_GEOMETRYWRAPPER_HH
#define DUNE_PDELAB_GEOMETRYWRAPPER_HH
#include <dune/common/fvector.hh>
namespace Dune {
namespace PDELab {
//! Wrap element
/**
* \todo Please doc me!
*/
template<typename E>
class ElementGeometry
{
public:
//! \todo Please doc me!
typedef typename E::Geometry Geometry;
//! \todo Please doc me!
typedef E Entity;
//! \todo Please doc me!
ElementGeometry (const E& e_)
: e(e_)
{}
//! \todo Please doc me!
Geometry geometry () const
{
return e.geometry();
}
//! \todo Please doc me!
const Entity& entity () const
{
return e;
}
//! \todo Please doc me!
const Entity& hostEntity () const
{
return e;
}
private:
const E& e;
};
//! Wrap intersection
/**
* \todo Please doc me!
*/
template<typename I>
class IntersectionGeometry
{
private:
const I& i;
const unsigned int index;
public:
//! \todo Please doc me!
typedef typename I::Geometry Geometry;
//! \todo Please doc me!
typedef typename I::LocalGeometry LocalGeometry;
//! \todo Please doc me!
typedef typename I::Entity Entity;
//! \todo Please doc me!
typedef typename I::EntityPointer EntityPointer;
//! \todo Please doc me!
typedef typename Geometry::ctype ctype;
//! \todo Please doc me!
enum { dimension=Entity::dimension };
//! \todo Please doc me!
static const int DUNE_DEPRECATED_MSG("Geometry::dimensionworld is deprecated in dune-grid 2.4") dimensionworld=Geometry::coorddimension;
/** \brief Dimension of the image space of the geometry */
enum { coorddimension=Geometry::coorddimension };
//! \todo Please doc me!
IntersectionGeometry (const I& i_, unsigned int index_)
: i(i_), index(index_)
{}
//! \todo Please doc me!
int insideDomainIndex() const
{
return 0;
}
//! \todo Please doc me!
int outsideDomainIndex() const
{
const bool is_boundary = i.boundary();
return 0 - int(is_boundary);
}
//! return true if intersection is with interior or exterior boundary (see the cases above)
bool boundary () const
{
return i.boundary();
}
/**
\brief Identifier for boundary segment from macro grid.
One can attach a boundary Id to a boundary segment on the macro
grid. This Id will also be used for all fragments of these
boundary segments.
The numbering is defined as:
- Id==0 for all intersections without boundary()==false
- Id>=0 for all intersections without boundary()==true
The way the Identifiers are attached to the grid may differ
between the different grid implementations.
*/
int boundaryId () const
{
return i.boundaryId();
}
//! @brief return true if intersection is shared with another element.
bool neighbor () const
{
return i.neighbor();
}
/*! @brief geometrical information about this intersection in local
coordinates of the inside() entity.
This method returns a Geometry object that provides a mapping from
local coordinates of the intersection to local coordinates of the
inside() entity.
*/
LocalGeometry geometryInInside () const
{
return i.geometryInInside();
}
/*! @brief geometrical information about this intersection in local
coordinates of the outside() entity.
This method returns a Geometry object that provides a mapping from
local coordinates of the intersection to local coordinates of the
outside() entity.
*/
LocalGeometry geometryInOutside () const
{
return i.geometryInOutside();
}
/*! @brief geometrical information about this intersection in global coordinates.
This method returns a Geometry object that provides a mapping from
local coordinates of the intersection to global (world) coordinates.
*/
Geometry geometry () const
{
return i.geometry();
}
//! Local number of codim 1 entity in the inside() Entity where intersection is contained in
int indexInInside () const
{
return i.indexInInside ();
}
//! Local number of codim 1 entity in outside() Entity where intersection is contained in
int indexInOutside () const
{
return i.indexInOutside ();
}
/*! @brief Return an outer normal (length not necessarily 1)
The returned vector may depend on local position within the intersection.
*/
Dune::FieldVector<ctype, coorddimension> outerNormal (const Dune::FieldVector<ctype, dimension-1>& local) const
{
return i.outerNormal(local);
}
/*! @brief return outer normal scaled with the integration element
@copydoc outerNormal
The normal is scaled with the integration element of the intersection. This
method is redundant but it may be more efficent to use this function
rather than computing the integration element via intersectionGlobal().
*/
Dune::FieldVector<ctype, coorddimension> integrationOuterNormal (const Dune::FieldVector<ctype, dimension-1>& local) const
{
return i.integrationOuterNormal(local);
}
/*! @brief Return unit outer normal (length == 1)
The returned vector may depend on the local position within the intersection.
It is scaled to have unit length.
*/
Dune::FieldVector<ctype, coorddimension> unitOuterNormal (const Dune::FieldVector<ctype, dimension-1>& local) const
{
return i.unitOuterNormal(local);
}
/*! @brief Return unit outer normal (length == 1)
The returned vector may depend on the local position within the intersection.
It is scaled to have unit length.
*/
Dune::FieldVector<ctype, coorddimension> centerUnitOuterNormal () const
{
return i.centerUnitOuterNormal();
}
/*! @brief return EntityPointer to the Entity on the inside of this
intersection. That is the Entity where we started this .
*/
#ifdef DOXYGEN
Entity
#else
typename std::conditional<
std::is_same<
decltype(i.inside()),
Entity
>::value,
Entity,
EntityPointer
>::type
#endif
inside() const
{
return i.inside();
}
/*! @brief return EntityPointer to the Entity on the inside of this
intersection. That is the Entity where we started this .
*/
EntityPointer insideHostEntity() const
{
DUNE_THROW(Dune::Exception,"This should never be called.");
return i.inside();
}
/*! @brief return EntityPointer to the Entity on the outside of this
intersection. That is the neighboring Entity.
@warning Don't call this method if there is no neighboring Entity
(neighbor() returns false). In this case the result is undefined.
*/
#ifdef DOXYGEN
Entity
#else
typename std::conditional<
std::is_same<
decltype(i.inside()),
Entity
>::value,
Entity,
EntityPointer
>::type
#endif
outside() const
{
return i.outside();
}
//! \todo Please doc me!
const I& intersection () const
{
return i;
}
unsigned int intersectionIndex() const
{
return index;
}
};
}
}
#endif
|