dune-fem 2.8.0
Loading...
Searching...
No Matches
Public Types | Public Member Functions | Static Public Attributes | Protected Types | Protected Member Functions | Protected Attributes | Related Functions | List of all members
Dune::Fem::GenericDiscontinuousGalerkinSpace< Traits > Class Template Reference

generic implementation of a Discontinuous Galerkin space based on a fixed family of basis function sets More...

#include <dune/fem/space/discontinuousgalerkin/generic.hh>

Inheritance diagram for Dune::Fem::GenericDiscontinuousGalerkinSpace< Traits >:
Inheritance graph

Public Types

typedef BaseType::GridPartType GridPartType
 type of underlying grid part
 
typedef BaseType::EntityType EntityType
 type of entity of codimension 0
 
typedef BaseType::IntersectionType IntersectionType
 type of the intersections
 
typedef Traits::BasisFunctionSetsType BasisFunctionSetsType
 basis function sets
 
typedef BaseType::BasisFunctionSetType BasisFunctionSetType
 type of basis function set of this space
 
typedef BaseType::BlockMapperType BlockMapperType
 type of block mapper of this space
 
typedef Traits::DiscreteFunctionSpaceType DiscreteFunctionSpaceType
 
typedef LocalMassMatrix< DiscreteFunctionSpaceType, VolumeQuadratureTypeLocalMassMatrixType
 
typedef std::vector< typename BaseType::RangeType > VectorType
 
typedef std::pair< LocalMassMatrixType, VectorTypeLocalMassMatrixStorageType
 
typedef Traits Traits
 
typedef BaseType::GridType GridType
 
typedef BaseType::IndexSetType IndexSetType
 
typedef BaseType::IteratorType IteratorType
 
typedef DofManager< GridTypeDofManagerType
 type of DoF manager
 
typedef CommunicationManager< DiscreteFunctionSpaceTypeCommunicationManagerType
 type of communication manager
 
typedef BaseType::AuxiliaryDofsType AuxiliaryDofsType
 
typedef Traits::FunctionSpaceType FunctionSpaceType
 type of function space
 
typedef Traits::LocalBlockIndices LocalBlockIndices
 
typedef AuxiliaryDofsType SlaveDofsType
 deprecated type
 

Public Member Functions

const BasisFunctionSetsTypebasisFunctionSets () const
 
BasisFunctionSetsTypebasisFunctionSets ()
 
LocalMassMatrixStorageTypelocalMassMatrixStorage () const
 
int sequence () const
 get index of the sequence in grid sequences
 
int order (const EntityType &entity) const
 default implementation of the method order
 
const GridTypegrid () const
 get reference to grid this discrete function space belongs to
 
GridTypegrid ()
 get reference to grid this discrete function space belongs to
 
GridPartTypegridPart () const
 
GridPartTypegridPart ()
 get a reference to the associated grid partition
 
const IndexSetTypeindexSet () const
 Get a reference to the associated index set.
 
int size () const
 get number of DoFs for this space
 
int maxNumDofs () const
 return the maximal number of dofs on entities
 
IteratorType begin () const
 get iterator pointing to the first entity of the associated grid partition
 
IteratorType end () const
 get iterator pointing behind the last entity of the associated grid partition
 
void forEach (FunctorType &f) const
 apply a functor to each entity in the associated grid partition
 
bool multipleGeometryTypes () const
 returns true if the grid has more than one geometry type
 
bool multipleBasisFunctionSets () const
 returns true if base function sets depend on the entity
 
InterfaceType communicationInterface () const
 return the communication interface appropriate for this space
 
CommunicationDirection communicationDirection () const
 return the communication interface appropriate for this space
 
const CommunicationManagerTypecommunicator () const
 return reference to communicator (see CommunicationManager)
 
void communicate (DiscreteFunction &discreteFunction) const
 communicate data for given discrete function using the space's default communication operation
 
void communicate (DiscreteFunction &discreteFunction, const Operation &op) const
 communicate data for given discrete function
 
BaseType::template CommDataHandle< DiscreteFunction, Operation >::Type createDataHandle (DiscreteFunction &discreteFunction, const Operation &operation) const
 
const AuxiliaryDofsTypeauxiliaryDofs () const
 get auxiliary dofs
 
void addFunction (DiscreteFunction &df) const
 default implementation of addFunction does nothing at the moment
 
void removeFunction (DiscreteFunction &df) const
 default implementation of removeFunction does nothing at the moment
 
void adapt (const Vector &polynomialOrders, const int polOrderShift=0) const
 default implementation of adapt does nothing, its only used in PAdaptiveLagrangeSpace
 
DFSpaceIdentifier type () const
 return type identifier of discrete function space
 
const BasisFunctionSetType basisFunctionSet (const EntityType &entity) const
 get basis function set for given entity
 
bool continuous () const
 returns true if the space contains only globally continuous functions
 
bool continuous (const IntersectionType &intersection) const
 returns true if discrete functions over this space have zero jump over the given intersection.
 
const AuxiliaryDofsTypeslaveDofs () const
 deprecated method, use auxiliaryDofs
 
Construction
 GenericDiscontinuousGalerkinSpace (GridPartType &gridPart, BasisFunctionSetsType &&basisFunctionSets, const InterfaceType commInterface=InteriorBorder_All_Interface, const CommunicationDirection commDirection=ForwardCommunication)
 
Copying and assignment
 GenericDiscontinuousGalerkinSpace (const ThisType &)=delete
 
 GenericDiscontinuousGalerkinSpace (ThisType &&other)=default
 move constructor
 
GenericDiscontinuousGalerkinSpaceoperator= (const ThisType &)=default
 

Static Public Attributes

static const int codimension = Traits::codimension
 
static constexpr std::size_t localBlockSize = Hybrid::size( LocalBlockIndices() )
 size of local blocks
 

Protected Types

typedef SingletonList< const typename GridPartType::IndexSetType *, BlockMapperTypeBlockMapperProdiverType
 
typedef CachingQuadrature< GridPartType, EntityType::codimension > VolumeQuadratureType
 
typedef SingletonList< std::pair< GridPartType *, BlockMapperType * >, std::pair< AuxiliaryDofsType, int >, AuxiliaryDofsFactory > AuxiliaryDofsProviderType
 
typedef ThreadSafeValue< UninitializedObjectStackLocalDofVectorStackType
 
typedef StackAllocator< typename BaseType::RangeFieldType, LocalDofVectorStackType * > LocalDofVectorAllocatorType
 
typedef Dune::DynamicVector< typename BaseType::RangeFieldType, LocalDofVectorAllocatorTypeLocalDofVectorType
 
typedef BasicTemporaryLocalFunction< ThisType, LocalDofVectorTypeLocalFunctionType
 
typedef AllGeomTypes< IndexSetType, GridTypeAllGeometryTypes
 

Protected Member Functions

const std::vector< GeometryType > & geomTypes (int codim) const
 returns true if the grid has more than one geometry type
 
const DiscreteFunctionSpaceTypeasImp () const
 
DiscreteFunctionSpaceTypeasImp ()
 

Protected Attributes

GridPartTypegridPart_
 
LocalDofVectorStackType ldvStack_
 
LocalDofVectorAllocatorType ldvAllocator_
 
const AllGeometryTypes allGeomTypes_
 
DofManagerTypedofManager_
 
const InterfaceType commInterface_
 
const CommunicationDirection commDirection_
 
std::unique_ptr< CommunicationManagerTypecommunicator_
 
std::unique_ptr< std::pair< AuxiliaryDofsType, int >, typename AuxiliaryDofsProviderType::DeleterauxiliaryDofs_
 

Related Functions

(Note that these are not member functions.)

template<class Traits >
bool operator== (const DiscreteFunctionSpaceInterface< Traits > &X, const DiscreteFunctionSpaceInterface< Traits > &Y)
 check two spaces for equality
 

Public member methods

BasisFunctionSetType basisFunctionSet (const EntityType &entity) const
 get basis function set for given entity
 
int order () const
 get global order of space
 
int order (const EntityType &entity) const
 get global order of space
 
BlockMapperTypeblockMapper () const
 get a reference to the block mapper
 
static DFSpaceIdentifier type ()
 return type identifier of discrete function space
 
static constexpr bool continuous ()
 returns true if the space contains only globally continuous functions
 
static constexpr bool continuous (const IntersectionType &intersection)
 returns true if the space contains only globally continuous functions
 

Detailed Description

template<class Traits>
class Dune::Fem::GenericDiscontinuousGalerkinSpace< Traits >

generic implementation of a Discontinuous Galerkin space based on a fixed family of basis function sets

Template Parameters
Traitstraits class

Member Typedef Documentation

◆ AllGeometryTypes

typedef AllGeomTypes< IndexSetType, GridType > Dune::Fem::DiscreteFunctionSpaceDefault< Traits >::AllGeometryTypes
protectedinherited

◆ AuxiliaryDofsProviderType

typedef SingletonList< std::pair< GridPartType *, BlockMapperType * >, std::pair< AuxiliaryDofsType, int >, AuxiliaryDofsFactory > Dune::Fem::DiscreteFunctionSpaceDefault< Traits >::AuxiliaryDofsProviderType
protectedinherited

◆ AuxiliaryDofsType

◆ BasisFunctionSetsType

template<class Traits >
typedef Traits::BasisFunctionSetsType Dune::Fem::GenericDiscontinuousGalerkinSpace< Traits >::BasisFunctionSetsType

basis function sets

◆ BasisFunctionSetType

type of basis function set of this space

◆ BlockMapperProdiverType

template<class Traits >
typedef SingletonList< const typename GridPartType::IndexSetType*, BlockMapperType > Dune::Fem::GenericDiscontinuousGalerkinSpace< Traits >::BlockMapperProdiverType
protected

◆ BlockMapperType

type of block mapper of this space

◆ CommunicationManagerType

type of communication manager

◆ DiscreteFunctionSpaceType

template<class Traits >
typedef Traits::DiscreteFunctionSpaceType Dune::Fem::GenericDiscontinuousGalerkinSpace< Traits >::DiscreteFunctionSpaceType

type of discrete function space implementation

◆ DofManagerType

typedef DofManager< GridType > Dune::Fem::DiscreteFunctionSpaceDefault< Traits >::DofManagerType
inherited

type of DoF manager

◆ EntityType

type of entity of codimension 0

◆ FunctionSpaceType

template<class FunctionSpaceTraits >
typedef Traits::FunctionSpaceType Dune::Fem::DiscreteFunctionSpaceInterface< FunctionSpaceTraits >::FunctionSpaceType
inherited

type of function space

◆ GridPartType

type of underlying grid part

◆ GridType

◆ IndexSetType

◆ IntersectionType

type of the intersections

◆ IteratorType

◆ LocalBlockIndices

template<class FunctionSpaceTraits >
typedef Traits::LocalBlockIndices Dune::Fem::DiscreteFunctionSpaceInterface< FunctionSpaceTraits >::LocalBlockIndices
inherited

◆ LocalDofVectorAllocatorType

typedef StackAllocator< typename BaseType::RangeFieldType, LocalDofVectorStackType* > Dune::Fem::DiscreteFunctionSpaceDefault< Traits >::LocalDofVectorAllocatorType
protectedinherited

◆ LocalDofVectorStackType

typedef ThreadSafeValue< UninitializedObjectStack > Dune::Fem::DiscreteFunctionSpaceDefault< Traits >::LocalDofVectorStackType
protectedinherited

◆ LocalDofVectorType

typedef Dune::DynamicVector< typename BaseType::RangeFieldType, LocalDofVectorAllocatorType > Dune::Fem::DiscreteFunctionSpaceDefault< Traits >::LocalDofVectorType
protectedinherited

◆ LocalFunctionType

◆ LocalMassMatrixStorageType

template<class Traits >
typedef std::pair< LocalMassMatrixType, VectorType > Dune::Fem::GenericDiscontinuousGalerkinSpace< Traits >::LocalMassMatrixStorageType

◆ LocalMassMatrixType

◆ SlaveDofsType

template<class FunctionSpaceTraits >
typedef AuxiliaryDofsType Dune::Fem::DiscreteFunctionSpaceInterface< FunctionSpaceTraits >::SlaveDofsType
inherited

deprecated type

◆ Traits

◆ VectorType

template<class Traits >
typedef std::vector< typename BaseType::RangeType > Dune::Fem::GenericDiscontinuousGalerkinSpace< Traits >::VectorType

◆ VolumeQuadratureType

template<class Traits >
typedef CachingQuadrature<GridPartType, EntityType::codimension> Dune::Fem::GenericDiscontinuousGalerkinSpace< Traits >::VolumeQuadratureType
protected

Constructor & Destructor Documentation

◆ GenericDiscontinuousGalerkinSpace() [1/3]

template<class Traits >
Dune::Fem::GenericDiscontinuousGalerkinSpace< Traits >::GenericDiscontinuousGalerkinSpace ( GridPartType gridPart,
BasisFunctionSetsType &&  basisFunctionSets,
const InterfaceType  commInterface = InteriorBorder_All_Interface,
const CommunicationDirection  commDirection = ForwardCommunication 
)
inlineexplicit

◆ GenericDiscontinuousGalerkinSpace() [2/3]

template<class Traits >
Dune::Fem::GenericDiscontinuousGalerkinSpace< Traits >::GenericDiscontinuousGalerkinSpace ( const ThisType )
delete

◆ GenericDiscontinuousGalerkinSpace() [3/3]

template<class Traits >
Dune::Fem::GenericDiscontinuousGalerkinSpace< Traits >::GenericDiscontinuousGalerkinSpace ( ThisType &&  other)
default

move constructor

Member Function Documentation

◆ adapt()

void Dune::Fem::DiscreteFunctionSpaceDefault< Traits >::adapt ( const Vector &  polynomialOrders,
const int  polOrderShift = 0 
) const
inlineinherited

default implementation of adapt does nothing, its only used in PAdaptiveLagrangeSpace

◆ addFunction()

void Dune::Fem::DiscreteFunctionSpaceDefault< Traits >::addFunction ( DiscreteFunction &  df) const
inlineinherited

default implementation of addFunction does nothing at the moment

◆ asImp() [1/2]

template<class FunctionSpaceTraits >
DiscreteFunctionSpaceType & Dune::Fem::DiscreteFunctionSpaceInterface< FunctionSpaceTraits >::asImp ( )
inlineprotectedinherited

◆ asImp() [2/2]

template<class FunctionSpaceTraits >
const DiscreteFunctionSpaceType & Dune::Fem::DiscreteFunctionSpaceInterface< FunctionSpaceTraits >::asImp ( ) const
inlineprotectedinherited

◆ auxiliaryDofs()

const AuxiliaryDofsType & Dune::Fem::DiscreteFunctionSpaceDefault< Traits >::auxiliaryDofs ( ) const
inlineinherited

get auxiliary dofs

◆ basisFunctionSet() [1/2]

template<class FunctionSpaceTraits >
const BasisFunctionSetType Dune::Fem::DiscreteFunctionSpaceInterface< FunctionSpaceTraits >::basisFunctionSet ( const EntityType entity) const
inlineinherited

get basis function set for given entity

Parameters
[in]entityentity (of codim 0) for which base function is requested
Returns
BasisFunctionSet for the entity

◆ basisFunctionSet() [2/2]

template<class Traits >
BasisFunctionSetType Dune::Fem::GenericDiscontinuousGalerkinSpace< Traits >::basisFunctionSet ( const EntityType entity) const
inline

get basis function set for given entity

Parameters
[in]entityentity (of codim 0) for which base function is requested
Returns
BasisFunctionSet for the entity

◆ basisFunctionSets() [1/2]

template<class Traits >
BasisFunctionSetsType & Dune::Fem::GenericDiscontinuousGalerkinSpace< Traits >::basisFunctionSets ( )
inline

◆ basisFunctionSets() [2/2]

template<class Traits >
const BasisFunctionSetsType & Dune::Fem::GenericDiscontinuousGalerkinSpace< Traits >::basisFunctionSets ( ) const
inline

◆ begin()

IteratorType Dune::Fem::DiscreteFunctionSpaceDefault< Traits >::begin ( ) const
inlineinherited

get iterator pointing to the first entity of the associated grid partition

Returns
iterator pointing to first entity
Note
The default implementation uses the codim 0 iterators of the associated grid partition.

◆ blockMapper()

template<class Traits >
BlockMapperType & Dune::Fem::GenericDiscontinuousGalerkinSpace< Traits >::blockMapper ( ) const
inline

get a reference to the block mapper

Returns
refernce to the block mapper

◆ communicate() [1/2]

void Dune::Fem::DiscreteFunctionSpaceDefault< Traits >::communicate ( DiscreteFunction &  discreteFunction) const
inlineinherited

communicate data for given discrete function using the space's default communication operation

Parameters
discreteFunctiondiscrete function to be communicated

◆ communicate() [2/2]

void Dune::Fem::DiscreteFunctionSpaceDefault< Traits >::communicate ( DiscreteFunction &  discreteFunction,
const Operation &  op 
) const
inlineinherited

communicate data for given discrete function

Parameters
discreteFunctiondiscrete function to be communicated
[in]opcommunication operation to use (see DFCommunicationOperation)

◆ communicationDirection()

CommunicationDirection Dune::Fem::DiscreteFunctionSpaceDefault< Traits >::communicationDirection ( ) const
inlineinherited

return the communication interface appropriate for this space

Returns
communication interface

◆ communicationInterface()

InterfaceType Dune::Fem::DiscreteFunctionSpaceDefault< Traits >::communicationInterface ( ) const
inlineinherited

return the communication interface appropriate for this space

Returns
communication interface

◆ communicator()

const CommunicationManagerType & Dune::Fem::DiscreteFunctionSpaceDefault< Traits >::communicator ( ) const
inlineinherited

return reference to communicator (see CommunicationManager)

Returns
reference to communicator

◆ continuous() [1/4]

template<class Traits >
static constexpr bool Dune::Fem::GenericDiscontinuousGalerkinSpace< Traits >::continuous ( )
inlinestaticconstexpr

returns true if the space contains only globally continuous functions

For example, a Lagrange space returns true while a discontiuous Galerkin space returns false.

Returns
true if the space contians only globally continous functions, false otherwise

◆ continuous() [2/4]

template<class FunctionSpaceTraits >
bool Dune::Fem::DiscreteFunctionSpaceInterface< FunctionSpaceTraits >::continuous ( ) const
inlineinherited

returns true if the space contains only globally continuous functions

For example, a Lagrange space returns true while a discontiuous Galerkin space returns false.

Returns
true if the space contians only globally continous functions, false otherwise

◆ continuous() [3/4]

template<class Traits >
static constexpr bool Dune::Fem::GenericDiscontinuousGalerkinSpace< Traits >::continuous ( const IntersectionType intersection)
inlinestaticconstexpr

returns true if the space contains only globally continuous functions

For example, a Lagrange space returns true while a discontiuous Galerkin space returns false.

Returns
true if the space contians only globally continous functions, false otherwise

◆ continuous() [4/4]

template<class FunctionSpaceTraits >
bool Dune::Fem::DiscreteFunctionSpaceInterface< FunctionSpaceTraits >::continuous ( const IntersectionType intersection) const
inlineinherited

returns true if discrete functions over this space have zero jump over the given intersection.

For example, a Lagrange space returns true iff the intersection is conforming while a discontiuous Galerkin space always returns false.

Parameters
intersectionIntersection for which we want to know the continuety
Returns
true if the space contians functions which are continuous over the intersection, false otherwise

◆ createDataHandle()

BaseType::template CommDataHandle< DiscreteFunction, Operation >::Type Dune::Fem::DiscreteFunctionSpaceDefault< Traits >::createDataHandle ( DiscreteFunction &  discreteFunction,
const Operation &  operation 
) const
inlineinherited

Note
The default implementation is
defines type of data handle for communication
Definition: discretefunctionspace.hh:244

◆ end()

IteratorType Dune::Fem::DiscreteFunctionSpaceDefault< Traits >::end ( ) const
inlineinherited

get iterator pointing behind the last entity of the associated grid partition

Returns
iterator pointing behind last entity
Note
The default implementation uses the codim 0 iterators of the associated grid partition.

◆ forEach()

void Dune::Fem::DiscreteFunctionSpaceDefault< Traits >::forEach ( FunctorType &  f) const
inlineinherited

apply a functor to each entity in the associated grid partition

The functor must provide an the following operator

template< class EntityType >
void operator() ( const EntityType & );
BaseType::EntityType EntityType
type of entity of codimension 0
Definition: discontinuousgalerkin/generic.hh:42
Parameters
[in]ffunctor to apply
Note
The default implementation simply does the following:
const IteratorType end = asImp().end();
for( IteratorType it = asImp().begin(); it != end; ++it )
f( *it );
const DiscreteFunctionSpaceType & asImp() const
Definition: discretefunctionspace.hh:576
BaseType::IteratorType IteratorType
Definition: discretefunctionspace.hh:643
IteratorType end() const
get iterator pointing behind the last entity of the associated grid partition
Definition: discretefunctionspace.hh:783
IteratorType begin() const
get iterator pointing to the first entity of the associated grid partition
Definition: discretefunctionspace.hh:773

◆ geomTypes()

const std::vector< GeometryType > & Dune::Fem::DiscreteFunctionSpaceDefault< Traits >::geomTypes ( int  codim) const
inlineprotectedinherited

returns true if the grid has more than one geometry type

Returns
true if the underlying grid has more than one geometry type (hybrid grid), false otherwise

◆ grid() [1/2]

get reference to grid this discrete function space belongs to

Returns
reference to grid

◆ grid() [2/2]

const GridType & Dune::Fem::DiscreteFunctionSpaceDefault< Traits >::grid ( ) const
inlineinherited

get reference to grid this discrete function space belongs to

Returns
constant reference to grid

◆ gridPart() [1/2]

template<class FunctionSpaceTraits >
GridPartType & Dune::Fem::DiscreteFunctionSpaceInterface< FunctionSpaceTraits >::gridPart ( )
inlineinherited

get a reference to the associated grid partition

Returns
reference to the grid partition

◆ gridPart() [2/2]

GridPartType & Dune::Fem::DiscreteFunctionSpaceDefault< Traits >::gridPart ( ) const
inlineinherited

◆ indexSet()

const IndexSetType & Dune::Fem::DiscreteFunctionSpaceDefault< Traits >::indexSet ( ) const
inlineinherited

Get a reference to the associated index set.

Returns
const reference to index set

◆ localMassMatrixStorage()

template<class Traits >
LocalMassMatrixStorageType & Dune::Fem::GenericDiscontinuousGalerkinSpace< Traits >::localMassMatrixStorage ( ) const
inline

◆ maxNumDofs()

int Dune::Fem::DiscreteFunctionSpaceDefault< Traits >::maxNumDofs ( ) const
inlineinherited

return the maximal number of dofs on entities

◆ multipleBasisFunctionSets()

bool Dune::Fem::DiscreteFunctionSpaceDefault< Traits >::multipleBasisFunctionSets ( ) const
inlineinherited

returns true if base function sets depend on the entity

Returns
true if base function set depend on entities, false otherwise
Note
The default implementation returns false.

◆ multipleGeometryTypes()

bool Dune::Fem::DiscreteFunctionSpaceDefault< Traits >::multipleGeometryTypes ( ) const
inlineinherited

returns true if the grid has more than one geometry type

Returns
true if the underlying grid has more than one geometry type (hybrid grid), false otherwise

◆ operator=()

◆ order() [1/3]

template<class Traits >
int Dune::Fem::GenericDiscontinuousGalerkinSpace< Traits >::order ( ) const
inline

get global order of space

Returns
order of space, i.e., the maximal polynomial order of base functions

◆ order() [2/3]

int Dune::Fem::DiscreteFunctionSpaceDefault< Traits >::order ( const EntityType entity) const
inlineinherited

default implementation of the method order

Returns
returns max polynomial order for each entity using the method order()

◆ order() [3/3]

template<class Traits >
int Dune::Fem::GenericDiscontinuousGalerkinSpace< Traits >::order ( const EntityType entity) const
inline

get global order of space

Returns
order of space, i.e., the maximal polynomial order of base functions

◆ removeFunction()

void Dune::Fem::DiscreteFunctionSpaceDefault< Traits >::removeFunction ( DiscreteFunction &  df) const
inlineinherited

default implementation of removeFunction does nothing at the moment

◆ sequence()

int Dune::Fem::DiscreteFunctionSpaceDefault< Traits >::sequence ( ) const
inlineinherited

get index of the sequence in grid sequences

Returns
number of current sequence

◆ size()

int Dune::Fem::DiscreteFunctionSpaceDefault< Traits >::size ( ) const
inlineinherited

get number of DoFs for this space

Returns
number of DoFs (degrees of freedom)

◆ slaveDofs()

template<class FunctionSpaceTraits >
const AuxiliaryDofsType & Dune::Fem::DiscreteFunctionSpaceInterface< FunctionSpaceTraits >::slaveDofs ( ) const
inlineinherited

deprecated method, use auxiliaryDofs

◆ type() [1/2]

template<class Traits >
static DFSpaceIdentifier Dune::Fem::GenericDiscontinuousGalerkinSpace< Traits >::type ( )
inlinestatic

return type identifier of discrete function space

Returns
return type identifier of discrete function space

◆ type() [2/2]

template<class FunctionSpaceTraits >
DFSpaceIdentifier Dune::Fem::DiscreteFunctionSpaceInterface< FunctionSpaceTraits >::type ( ) const
inlineinherited

return type identifier of discrete function space

Returns
return type identifier of discrete function space

Member Data Documentation

◆ allGeomTypes_

const AllGeometryTypes Dune::Fem::DiscreteFunctionSpaceDefault< Traits >::allGeomTypes_
protectedinherited

◆ auxiliaryDofs_

std::unique_ptr< std::pair< AuxiliaryDofsType, int >, typename AuxiliaryDofsProviderType::Deleter > Dune::Fem::DiscreteFunctionSpaceDefault< Traits >::auxiliaryDofs_
mutableprotectedinherited

◆ codimension

template<class Traits >
const int Dune::Fem::GenericDiscontinuousGalerkinSpace< Traits >::codimension = Traits::codimension
static

◆ commDirection_

const CommunicationDirection Dune::Fem::DiscreteFunctionSpaceDefault< Traits >::commDirection_
protectedinherited

◆ commInterface_

const InterfaceType Dune::Fem::DiscreteFunctionSpaceDefault< Traits >::commInterface_
protectedinherited

◆ communicator_

std::unique_ptr< CommunicationManagerType > Dune::Fem::DiscreteFunctionSpaceDefault< Traits >::communicator_
mutableprotectedinherited

◆ dofManager_

DofManagerType& Dune::Fem::DiscreteFunctionSpaceDefault< Traits >::dofManager_
protectedinherited

◆ gridPart_

GridPartType& Dune::Fem::DiscreteFunctionSpaceDefault< Traits >::gridPart_
protectedinherited

◆ ldvAllocator_

LocalDofVectorAllocatorType Dune::Fem::DiscreteFunctionSpaceDefault< Traits >::ldvAllocator_
mutableprotectedinherited

◆ ldvStack_

◆ localBlockSize

template<class FunctionSpaceTraits >
constexpr std::size_t Dune::Fem::DiscreteFunctionSpaceInterface< FunctionSpaceTraits >::localBlockSize = Hybrid::size( LocalBlockIndices() )
staticconstexprinherited

size of local blocks


The documentation for this class was generated from the following file: