/usr/include/dune/geometry/referenceelements.hh is in libdune-geometry-dev 2.2.1-2ubuntu2.
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 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 | // -*- tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*-
// vi: set et ts=8 sw=2 sts=2:
#ifndef DUNE_GEOMETRY_REFERENCEELEMENTS_HH
#define DUNE_GEOMETRY_REFERENCEELEMENTS_HH
#include <dune/common/forloop.hh>
#include <dune/common/typetraits.hh>
#include <dune/geometry/genericgeometry/subtopologies.hh>
#include <dune/geometry/genericgeometry/referencedomain.hh>
#include <dune/geometry/genericgeometry/conversion.hh>
#include <dune/geometry/genericgeometry/hybridmapping.hh>
#include <dune/geometry/genericgeometry/mappingprovider.hh>
namespace Dune
{
// Internal Forward Declarations
// -----------------------------
template< class ctype, int dim >
class GenericReferenceElementContainer;
// GenericReferenceElement
// -----------------------
/** \class GenericReferenceElement
* \ingroup GeometryGenericReferenceElements
* \brief This class provides access to geometric and topological
* properties of a reference element. This includes its type,
* the number of subentities, the volume, and a method for checking
* if a point is inside.
* The embedding of each subentity into the reference element is also
* provided.
*
* A singleton of this class for a given geometry type can be accessed
* through the GenericReferenceElements class.
* \tparam ctype field type for coordinates
* \tparam dim dimension of the reference element
*
*/
template< class ctype, int dim >
class GenericReferenceElement
{
typedef GenericReferenceElement< ctype, dim > This;
friend class GenericReferenceElementContainer< ctype, dim >;
// make copy constructor private
GenericReferenceElement(const GenericReferenceElement &);
GenericReferenceElement () {}
~GenericReferenceElement ()
{
ForLoop< Destroy, 0, dim >::apply( mappings_ );
integral_constant< int, 0 > codim0Variable;
if(mappings_[ codim0Variable ].size())
delete mappings_[ codim0Variable ][ 0 ];
}
class SubEntityInfo;
template< class Topology > class CornerStorage;
template< class Topology > struct Initialize;
template< int codim > struct Destroy;
struct GeometryTraits
: public GenericGeometry::DefaultGeometryTraits< ctype, dim, dim >
{
typedef GenericGeometry::DefaultGeometryTraits< ctype, dim, dim > Base;
typedef typename Base::CoordTraits CoordTraits;
template< class Topology >
struct Mapping
{
typedef GenericGeometry::CornerMapping< CoordTraits, Topology, dim, CornerStorage< Topology >, true > type;
};
struct Caching
{
static const GenericGeometry::EvaluationType evaluateJacobianTransposed = GenericGeometry::PreCompute;
static const GenericGeometry::EvaluationType evaluateJacobianInverseTransposed = GenericGeometry::PreCompute;
static const GenericGeometry::EvaluationType evaluateIntegrationElement = GenericGeometry::PreCompute;
static const GenericGeometry::EvaluationType evaluateNormal = GenericGeometry::PreCompute;
};
};
public:
/** \brief Collection of types depending on the codimension */
template< int codim >
struct Codim
{
//! type of mapping embedding a subentity into the reference element
typedef GenericGeometry::HybridMapping< dim-codim, GeometryTraits > Mapping;
};
private:
/** \brief Stores all subentities of a given codimension */
template< int codim >
struct MappingArray
: public std::vector< typename Codim< codim >::Mapping * >
{};
/** \brief Type to store all subentities of all codimensions */
typedef GenericGeometry::CodimTable< MappingArray, dim > MappingsTable;
std::vector< SubEntityInfo > info_[ dim+1 ];
/** \brief The reference element volume */
ctype volume_;
std::vector< FieldVector< ctype, dim > > volumeNormals_;
/** \brief Stores all subentities of all codimensions */
MappingsTable mappings_;
public:
/** \brief number of subentities of codimension c
*
* \param[in] c codimension whose size is desired
*/
int size ( int c ) const
{
assert( (c >= 0) && (c <= dim) );
return info_[ c ].size();
}
/** \brief number of subentities of codimension cc of subentity (i,c)
*
* Denote by E the i-th subentity of codimension c of the current
* reference element. This method returns the number of subentities
* of codimension cc of the current reference element, that are also
* a subentity of E.
*
* \param[in] i number of subentity E (0 <= i < size( c ))
* \param[in] c codimension of subentity E
* \param[in] cc codimension whose size is desired (c <= cc <= dim)
*/
int size ( int i, int c, int cc ) const
{
assert( (c >= 0) && (c <= dim) );
return info_[ c ][ i ].size( cc );
}
/** \brief obtain number of ii-th subentity with codim cc of (i,c)
*
* Denote by E the i-th subentity of codimension c of the current
* reference element. And denote by S the ii-th subentity of codimension
* (cc-c) of E. Then, S is a also a subentity of codimension c of the current
* reference element. This method returns the number of S with respect
* to the current reference element.
*
* \param[in] i number of subentity E (0 <= i < size( c ))
* \param[in] c codimension of subentity E
* \param[in] ii number of subentity S (with respect to E)
* \param[in] cc codimension of subentity S (c <= cc <= dim)
*/
int subEntity ( int i, int c, int ii, int cc ) const
{
assert( (c >= 0) && (c <= dim) );
return info_[ c ][ i ].number( ii, cc );
}
/** \brief position of the barycenter of entity (i,c)
*
* Denote by E the i-th subentity of codimension c of the current
* reference element. This method returns the coordinates of
* the center of gravity of E within the current reference element.
*
* \param[in] i number of subentity E (0 <= i < size( c ))
* \param[in] c codimension of subentity E
*/
const FieldVector< ctype, dim > &position( int i, int c ) const
{
assert( (c >= 0) && (c <= dim) );
return info_[ c ][ i ].position();
}
/** \brief check if a coordinate is in the reference element
*
* This method returns true if the given local coordinate is within this
* reference element.
*
* \param[in] local coordinates of the point
*/
bool checkInside ( const FieldVector< ctype, dim > &local ) const
{
return checkInside< 0 >( local, 0 );
}
/** \brief check if a local coordinate is in the reference element of
* the i-th subentity E with codimension c of the current
* reference element.
*
* Denote by E the i-th subentity of codimension codim of the current
* reference element. This method return true, if the given local
* coordinate is within the reference element for the entity E.
*
* \tparam codim codimension of subentity E
*
* \param[in] local coordinates of the point with respect to the
* reference element of E
* \param[in] i number of subentity E (0 <= i < size( c ))
*/
template< int codim >
bool checkInside ( const FieldVector< ctype, dim-codim > &local, int i ) const
{
return mapping< codim >( i ).checkInside( local );
}
/** \brief map a local coordinate on subentity (i,codim) into the reference
* element
*
* Denote by E the i-th subentity of codimension codim of the current
* reference element. This method maps a point within the reference
* element of E into the current reference element.
*
* \tparam codim codimension of subentity E
*
* \param[in] local coordinates of the point with respect to the reference
* element of E
* \param[in] i number of subentity E (0 <= i < size( c ))
* \param[in] c codimension of subentity E
*
* \note The runtime argument c is redundant and must equal codim.
*
* \note This method is just an alias for
* \code
* mapping< codim >( i ).global( local );
* \endcode
*/
template< int codim >
FieldVector< ctype, dim >
global( const FieldVector< ctype, dim-codim > &local, int i, int c ) const
{
if( c != codim )
DUNE_THROW( Exception, "Local Coordinate Type does not correspond to codimension c." );
assert( c == codim );
return mapping< codim >( i ).global( local );
}
/** \brief map a local coordinate on subentity (i,codim) into the reference
* element
*
* Denote by E the i-th subentity of codimension codim of the current
* reference element. This method maps a point within the reference
* element of E into the current reference element.
*
* \tparam codim codimension of subentity E
*
* \param[in] local coordinates of the point with respect to the reference
* element of E
* \param[in] i number of subentity E (0 <= i < size( codim ))
*
* \note This method is just an alias for
* \code
* mapping< codim >( i ).global( local );
* \endcode
*/
template< int codim >
FieldVector< ctype, dim >
global( const FieldVector< ctype, dim-codim > &local, int i ) const
{
return mapping< codim >( i ).global( local );
}
/** \brief obtain the embedding of subentity (i,codim) into the reference
* element
*
* Denote by E the i-th subentity of codimension codim of the current
* reference element. This method returns a
* \ref Dune::GenericGeometry::HybridMapping HybridMapping that maps
* the reference element of E into the current reference element.
*
* This method can be used in a GenericGeometry to represent subentities
* of the current reference element.
*
* \tparam codim codimension of subentity E
*
* \param[in] i number of subentity E (0 <= i < size( codim ))
*/
template< int codim >
typename Codim< codim >::Mapping &mapping( int i ) const
{
integral_constant< int, codim > codimVariable;
return *(mappings_[ codimVariable ][ i ]);
}
/** \brief obtain the type of subentity (i,c)
*
* Denote by E the i-th subentity of codimension c of the current
* reference element. This method returns the GeometryType of E.
*
* \param[in] i number of subentity E (0 <= i < size( c ))
* \param[in] c codimension of subentity E
*/
const GeometryType &type ( int i, int c ) const
{
assert( (c >= 0) && (c <= dim) );
return info_[ c ][ i ].type();
}
/** \brief obtain the type of this reference element */
const GeometryType &type () const { return type( 0, 0 ); }
unsigned int topologyId ( int i, int c ) const DUNE_DEPRECATED
{
assert( (c >= 0) && (c <= dim) );
return info_[ c ][ i ].topologyId();
}
/** \brief obtain the volume of the reference element */
ctype volume () const
{
return volume_;
}
/** \brief obtain the volume outer normal of the reference element
*
* The volume outer normal is the outer normal whose length coincides
* with the face's volume.
*
* \param[in] face index of the face, whose normal is desired
*/
const FieldVector< ctype, dim > &volumeOuterNormal ( int face ) const
{
assert( (face >= 0) && (face < int( volumeNormals_.size())) );
return volumeNormals_[ face ];
}
/** \brief initialize the reference element
*
* \tparam Topology topology of the desired reference element
*
* \note The dimension of the topology must match dim.
*/
template< class Topology >
void initializeTopology ()
{
dune_static_assert( (Topology::dimension == dim),
"Cannot initialize reference element for different dimension." );
typedef Initialize< Topology > Init;
typedef GenericGeometry::VirtualMapping< Topology, GeometryTraits > VirtualMapping;
// set up subentities
integral_constant< int, 0 > codim0Variable;
mappings_[ codim0Variable ].resize( 1 );
mappings_[ codim0Variable ][ 0 ] = new VirtualMapping( codim0Variable );
Dune::ForLoop< Init::template Codim, 0, dim >::apply( info_, mappings_ );
// compute reference element volume
typedef GenericGeometry::ReferenceDomain< Topology > ReferenceDomain;
volume_ = ReferenceDomain::template volume< ctype >();
// compute normals
volumeNormals_.resize( ReferenceDomain::numNormals );
for( unsigned int i = 0; i < ReferenceDomain::numNormals; ++i )
ReferenceDomain::integrationOuterNormal( i ,volumeNormals_[ i ] );
}
};
/** \brief Topological and geometric information about the subentities
* of a reference element
*/
template< class ctype, int dim >
class GenericReferenceElement< ctype, dim >::SubEntityInfo
{
template< class Topology, int codim > struct Initialize
{
template< int subcodim > struct SubCodim;
};
int codim_;
std::vector< int > numbering_[ dim+1 ];
FieldVector< ctype, dim > baryCenter_;
GeometryType type_;
public:
int size ( int cc ) const
{
assert( (cc >= codim_) && (cc <= dim) );
return numbering_[ cc ].size();
}
int number ( int ii, int cc ) const
{
assert( (cc >= codim_) && (cc <= dim) );
return numbering_[ cc ][ ii ];
}
const FieldVector< ctype, dim > &position () const
{
return baryCenter_;
}
const GeometryType &type () const
{
return type_;
}
unsigned int topologyId () const DUNE_DEPRECATED
{
return type_.id();
}
template< class Topology, unsigned int codim, unsigned int i >
void initialize ()
{
typedef Initialize< Topology, codim > Init;
typedef GenericGeometry::ReferenceDomain< Topology > RefDomain;
codim_ = codim;
const unsigned int iVariable = i;
Dune::ForLoop< Init::template SubCodim, 0, dim-codim >::apply( iVariable, numbering_ );
baryCenter_ = ctype( 0 );
static const unsigned int numCorners = size( dim );
for( unsigned int j = 0; j < numCorners; ++j )
{
FieldVector< ctype, dim > corner;
RefDomain::corner( number( j, dim ), corner );
baryCenter_ += corner;
}
baryCenter_ *= ctype( 1 ) / ctype( numCorners );
typedef typename GenericGeometry::SubTopology< Topology, codim, i >::type SubTopology;
type_ = GeometryType( SubTopology::id, SubTopology::dimension );
// type_ = GenericGeometry::DuneGeometryType< SubTopology, GeometryType::simplex >::type();
}
};
template< class ctype, int dim >
template< class Topology >
class GenericReferenceElement< ctype, dim >::CornerStorage
{
typedef GenericGeometry::ReferenceDomain< Topology > RefDomain;
public:
static const unsigned int size = Topology::numCorners;
template< class SubTopology >
struct SubStorage
{
typedef CornerStorage< SubTopology > type;
};
explicit CornerStorage ( const integral_constant< int, 0 > & )
{
for( unsigned int i = 0; i < size; ++i )
RefDomain::corner( i, coords_[ i ] );
}
template< class Mapping, unsigned int codim >
explicit
CornerStorage ( const GenericGeometry::SubMappingCoords< Mapping, codim > &coords )
{
for( unsigned int i = 0; i < size; ++i )
coords_[ i ] = coords[ i ];
}
const FieldVector< ctype, dim > &operator[] ( unsigned int i ) const
{
return coords_[ i ];
}
private:
FieldVector< ctype, dim > coords_[ size ];
};
template< class ctype, int dim >
template< class Topology, int codim >
template< int subcodim >
struct GenericReferenceElement< ctype, dim >::SubEntityInfo::Initialize< Topology, codim >::SubCodim
{
typedef GenericGeometry::SubTopologySize< Topology, codim, subcodim > SubSize;
typedef GenericGeometry::GenericSubTopologyNumbering< Topology, codim, subcodim > SubNumbering;
static void apply ( unsigned int i, std::vector< int > (&numbering)[ dim+1 ] )
{
const unsigned int size = SubSize::size( i );
numbering[ codim+subcodim ].resize( size );
for( unsigned int j = 0; j < size; ++j )
numbering[ codim+subcodim ][ j ] = SubNumbering::number( i, j );
}
};
template< class ctype, int dim >
template< class Topology >
struct GenericReferenceElement< ctype, dim >::Initialize
{
typedef Dune::GenericReferenceElement< ctype, dim > GenericReferenceElement;
typedef typename GenericReferenceElement::template Codim< 0 >::Mapping ReferenceMapping;
template< int codim >
struct Codim
{
template< int i >
struct SubTopology
{
static void apply ( std::vector< SubEntityInfo > &info )
{
info[ i ].template initialize< Topology, codim, i >();
}
};
static void
apply ( std::vector< SubEntityInfo > (&info)[ dim+1 ],
MappingsTable &mappings )
{
const unsigned int size = GenericGeometry::Size< Topology, codim >::value;
info[ codim ].resize( size );
Dune::ForLoop< SubTopology, 0, size-1 >::apply( info[ codim ] );
if( codim > 0 )
{
integral_constant< int, 0 > codim0Variable;
const ReferenceMapping &refMapping = *(mappings[ codim0Variable ][ 0 ]);
typedef typename GenericGeometry::MappingProvider< ReferenceMapping, codim > MappingProvider;
integral_constant< int, codim > codimVariable;
mappings[ codimVariable ].resize( size );
for( unsigned int i = 0; i < size; ++i ) {
char* storage = new char[MappingProvider::maxMappingSize];
mappings[ codimVariable ][ i ] = refMapping.template trace< codim >( i, storage );
}
}
}
};
};
template< class ctype, int dim >
template< int codim >
struct GenericReferenceElement< ctype, dim >::Destroy
{
static void apply ( MappingsTable &mappings )
{
if (codim > 0 )
{
integral_constant< int, codim > codimVariable;
for( size_t i = 0; i < mappings[ codimVariable ].size(); ++i ) {
typedef typename Codim<codim>::Mapping Mapping;
mappings[ codimVariable ][ i ]->~Mapping();
char* storage = (char*)mappings[ codimVariable ][ i ];
delete[](storage);
}
}
}
};
// GenericReferenceElementContainer
// --------------------------------
template< class ctype, int dim >
class GenericReferenceElementContainer
{
static const unsigned int numTopologies = (1u << dim);
public:
typedef GenericReferenceElement< ctype, dim > value_type;
typedef const value_type *const_iterator;
GenericReferenceElementContainer ()
{
ForLoop< Builder, 0, numTopologies-1 >::apply( values_ );
}
const value_type &operator() ( const unsigned int topologyId ) const DUNE_DEPRECATED
{
return values_[ topologyId ];
}
const value_type &operator() ( const GeometryType &type ) const
{
assert( type.dim() == dim );
return values_[ type.id() ];
}
const value_type &simplex () const
{
return values_[ GenericGeometry::SimplexTopology< dim >::type::id ];
}
const value_type &cube () const
{
return values_[ GenericGeometry::CubeTopology< dim >::type::id ];
}
const value_type &pyramid () const
{
return values_[ GenericGeometry::PyramidTopology< dim >::type::id ];
}
const value_type &prism () const
{
return values_[ GenericGeometry::PrismTopology< dim >::type::id ];
}
const_iterator begin () const { return values_; }
const_iterator end () const { return values_ + numTopologies; }
static const GenericReferenceElementContainer &instance () DUNE_DEPRECATED
{
static GenericReferenceElementContainer inst;
return inst;
}
private:
template< int topologyId >
struct Builder
{
static void apply ( value_type (&values)[ numTopologies ] )
{
typedef typename GenericGeometry::Topology< topologyId, dim >::type Topology;
values[ topologyId ].template initializeTopology< Topology >();
}
};
value_type values_[ numTopologies ];
};
// GenericReferenceElements
// ------------------------
/** \brief Class providing access to the singletons of the generic
* reference elements. Special methods are available for
* simplex and cube elements of any dimension.
* The method general can be used to obtain the reference element
* for a given geometry type.
*
* \ingroup GeometryGenericReferenceElements
*/
template< class ctype, int dim >
struct GenericReferenceElements
{
typedef typename GenericReferenceElementContainer< ctype, dim >::const_iterator Iterator;
//! get general generic reference elements
static const GenericReferenceElement< ctype, dim > &
general ( const GeometryType &type )
{
return container()( type );
}
//! get simplex generic reference elements
static const GenericReferenceElement< ctype, dim > &simplex ()
{
return container().simplex();
}
//! get hypercube generic reference elements
static const GenericReferenceElement< ctype, dim > &cube ()
{
return container().cube();
}
static Iterator begin () { return container().begin(); }
static Iterator end () { return container().end(); }
private:
static const GenericReferenceElementContainer< ctype, dim > &container ()
{
static GenericReferenceElementContainer< ctype, dim > container;
return container;
}
};
} // namespace Dune
#endif // #ifndef DUNE_GEOMETRY_REFERENCEELEMENTS_HH
|