/usr/include/dune/localfunctions/raviartthomas.hh is in libdune-localfunctions-dev 2.2.1-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 | #ifndef DUNE_RAVIARTTHOMASFINITEELEMENT_HH
#define DUNE_RAVIARTTHOMASFINITEELEMENT_HH
#include <dune/localfunctions/utility/localfiniteelement.hh>
#include <dune/localfunctions/raviartthomas/raviartthomasbasis.hh>
namespace Dune
{
/**
* @brief Raviart-Thomas basis functions
*
* These basis functions are at the moment only available
* for simplex geometry types.
*
* \tparam dimDomain dimension of reference elements
* \tparam D domain for basis functions
* \tparam R range for basis functions
* \tparam SF storage field for basis matrix
* \tparam CF compute field for basis matrix
**/
template< unsigned int dimDomain, class D, class R,
class SF=R, class CF=SF >
class RaviartThomasLocalFiniteElement
: public GenericLocalFiniteElement< RaviartThomasBasisFactory< dimDomain, SF, CF >,
RaviartThomasCoefficientsFactory< dimDomain >,
RaviartThomasL2InterpolationFactory< dimDomain, SF > >
{
typedef GenericLocalFiniteElement< RaviartThomasBasisFactory< dimDomain, SF, CF >,
RaviartThomasCoefficientsFactory< dimDomain >,
RaviartThomasL2InterpolationFactory< dimDomain, SF > > Base;
public:
using typename Base::Traits;
/** \todo Please doc me */
RaviartThomasLocalFiniteElement ( unsigned int topologyId, unsigned int order ) DUNE_DEPRECATED
: Base( topologyId, order )
{}
/** \todo Please doc me */
RaviartThomasLocalFiniteElement ( const GeometryType >, unsigned int order )
: Base( gt, order )
{}
};
} // namespace Dune
#endif // #ifndef DUNE_RAVIARTTHOMASFINITEELEMENT_HH
|