|
dune-fem 2.12-git
|
#include <dune/fem/function/combinedfunction/combinedfunction.hh>

Public Types | |
| typedef ContainedDiscreteFunctionImp | ContainedDiscreteFunctionType |
| Discrete function this discrete function belongs to. | |
| typedef ContainedDiscreteFunctionType | SubDiscreteFunctionType |
| typedef DiscreteFunctionTraits< ThisType > | Traits |
| Traits class with all necessary type definitions. | |
| typedef BaseType::GridType | GridType |
| Grid implementation. | |
| typedef BaseType::GridPartType | GridPartType |
| GridPart implementation. | |
| typedef BaseType::DiscreteFunctionType | DiscreteFunctionType |
| typedef BaseType::DiscreteFunctionSpaceType | DiscreteFunctionSpaceType |
| the combined discrete function type | |
| typedef Traits::ContainedDiscreteFunctionSpaceType | ContainedDiscreteFunctionSpaceType |
| Contained discrete function space. | |
| typedef ContainedDiscreteFunctionSpaceType | SubDiscreteFunctionSpaceType |
| typedef BaseType::DofType | DofType |
| Intrinsic type used for dofs (typically a float type) | |
| typedef BaseType::RangeFieldType | RangeFieldType |
| Intrinsic type used for range field (like DofType) | |
| typedef BaseType::DomainFieldType | DomainFieldType |
| Intrinsic type used for the domain field. | |
| typedef BaseType::RangeType | RangeType |
| Vector type used for the range field. | |
| typedef BaseType::DomainType | DomainType |
| Vector type used for the domain field. | |
| typedef Traits::MapperType | MapperType |
| Mapper type (from the space) | |
| typedef BaseType::DofIteratorType | DofIteratorType |
| Iterator over dof container. | |
| typedef BaseType::ConstDofIteratorType | ConstDofIteratorType |
| Read-only iterator over dof container. | |
| typedef BaseType::DofBlockPtrType | DofBlockPtrType |
| typedef BaseType::ConstDofBlockPtrType | ConstDofBlockPtrType |
| typedef BaseType::LocalDofVectorAllocatorType | LocalDofVectorAllocatorType |
| typedef BaseType::DiscreteFunctionInterfaceType | DiscreteFunctionInterfaceType |
| typedef DiscreteFunctionSpaceType::JacobianRangeType | JacobianRangeType |
| type of jacobian | |
| typedef DiscreteFunctionSpaceType::HessianRangeType | HessianRangeType |
| type of hessian | |
| typedef Traits::DofVectorType | DofVectorType |
| type of DofVector | |
| typedef Traits::LocalDofVectorType | LocalDofVectorType |
| type of LocalDofVector | |
| typedef BaseType::LocalFunctionType | LocalFunctionType |
| type of local functions | |
| typedef LocalFunctionType::LocalCoordinateType | LocalCoordinateType |
| typedef BaseType::DofBlockType | DofBlockType |
| typedef BaseType::ConstDofBlockType | ConstDofBlockType |
| typedef BaseType::EntityType | EntityType |
| typedef DofVectorType::SizeType | SizeType |
| size type of the block vector | |
| typedef DiscreteFunctionSpaceType::FunctionSpaceType | FunctionSpaceType |
| type of associated function space | |
| typedef GridPartType::GridViewType | GridView |
| typedef BaseType::MappingType | MappingType |
| type of mapping base class for this discrete function | |
| typedef DiscreteFunctionSpaceType::LocalBlockIndices | BlockIndices |
| typedef LoadBalanceLeafData< ThisType > | DefaultLoadBalanceContainsCheckType |
Public Member Functions | |
| CombinedDiscreteFunction (const ContainedDiscreteFunctionType &func) | |
| Constructor. | |
| CombinedDiscreteFunction (const std::string &name, const ContainedDiscreteFunctionSpaceType &spc) | |
| CombinedDiscreteFunction (const std::string &name, const DiscreteFunctionSpaceType &spc) | |
| CombinedDiscreteFunction (const ThisType &other) | |
| ~CombinedDiscreteFunction () | |
| Destructor. | |
| CombinedDiscreteFunction ()=delete | |
| ThisType & | operator= (const ThisType &)=delete |
| ThisType & | operator= (ThisType &&)=delete |
| void | clear () |
| set all degrees of freedom to zero | |
| void | assign (const ThisType &g) |
| int | size () const |
| obtain total number of DoFs | |
| ThisType & | operator+= (const ThisType &g) |
| ThisType & | operator-= (const ThisType &g) |
| DiscreteFunctionType & | operator*= (const RangeFieldType &scalar) |
| multiply all DoFs by a scalar factor | |
| DiscreteFunctionType & | operator/= (const RangeFieldType &scalar) |
| multiply all DoFs by a scalar factor | |
| void | addScaled (const ThisType &g, const RangeFieldType &s) |
| void | axpy (const RangeFieldType &s, const ThisType &g) |
| axpy operation | |
| RangeFieldType | scalarProductDofs (const ThisType &other) const |
| template<class StreamTraits > | |
| void | read (InStreamInterface< StreamTraits > &in) |
| read the discrete function from a stream | |
| template<class StreamTraits > | |
| void | write (OutStreamInterface< StreamTraits > &out) const |
| write the discrete function into a stream | |
| void | print (std ::ostream &out) const |
| bool | dofsValid () const |
| check for NaNs | |
| ConstDofBlockPtrType | block (unsigned int index) const |
| DofBlockPtrType | block (unsigned int index) |
| const RangeFieldType & | dof (unsigned int index) const |
| RangeFieldType & | dof (unsigned int index) |
| ConstDofIteratorType | dbegin () const |
| obtain an iterator pointing to the first DoF (read-only) | |
| ConstDofIteratorType | dend () const |
| obtain an iterator pointing behind the last DoF (read-only) | |
| DofIteratorType | dbegin () |
| obtain an iterator pointing to the first DoF (read-write) | |
| DofIteratorType | dend () |
| obtain an iterator pointing behind the last DoF (read-write) | |
| ContainedDiscreteFunctionType & | subFunction (const int i) |
| const ContainedDiscreteFunctionType & | subFunction (const int i) const |
| ContainedDiscreteFunctionSpaceType & | subSpace () |
| const std::string & | name () const |
| obtain the name of the discrete function | |
| std::string & | name () |
| obtain the name of the discrete function | |
| constexpr int | order () const |
| obtain an upper bound on the polynomial order of the underlying space. | |
| bool | continuous () const |
| returns true if the space contains only globally continuous functions | |
| const DiscreteFunctionSpaceType & | space () const |
| obtain a reference to the corresponding DiscreteFunctionSpace | |
| const GridPartType & | gridPart () const |
| obtain a reference to the underlying grid part | |
| LocalFunctionType | localFunction (const EntityType &entity) |
| obtain a local function for an entity (read-write) | |
| const LocalFunctionType | localFunction (const EntityType &entity) const |
| obtain a local function for an entity (read-write) | |
| LocalFunctionType | localFunction () |
| obtain an uninitialized local function (read-write) | |
| const LocalFunctionType | localFunction () const |
| obtain an uninitialized local function (read-write) | |
| DofVectorType & | dofVector () |
| const DofVectorType & | dofVector () const |
| int | blocks () const |
| obtain total number of blocks, i.e. size / blockSize. | |
| void | axpy (const RangeFieldType &s, const DiscreteFunctionInterface< DFType > &g) |
| void | axpy (const RangeFieldType &s, const DiscreteFunctionInterfaceType &g) |
| void | axpy (const RangeFieldType &s, const DiscreteFunctionInterfaceType &g) |
| axpy operation | |
| RangeFieldType | scalarProductDofs (const DiscreteFunctionInterface< DFType > &other) const |
| Scalar product between the DoFs of two discrete functions. | |
| Dune::FieldTraits< RangeFieldType >::real_type | normSquaredDofs () const |
| Squared small l^2 norm of all dofs. | |
| void | assign (const DiscreteFunctionInterface< DFType > &g) |
| CommDataHandle< Operation >::Type | dataHandle (const Operation &operation) |
| return reference to data handle object | |
| DiscreteFunctionDefault< CombinedDiscreteFunction< ContainedDiscreteFunctionImp, N > >::template CommDataHandle< Operation >::Type | dataHandle (const Operation &operation) |
| void | communicate () |
| do default communication of space for this discrete function | |
| void | evaluate (const DomainType &x, RangeType &value) const |
| void | jacobian (const DomainType &x, JacobianRangeType &jacobian) const |
| void | hessian (const DomainType &x, HessianRangeType &hessian) const |
| evaluate the hessian of the function (const DomainType &x,HessianRangeType &hessian) const | |
| DiscreteFunctionType & | operator+= (const DiscreteFunctionInterface< DFType > &g) |
| add another discrete function to this one | |
| DiscreteFunctionType & | operator-= (const DiscreteFunctionInterface< DFType > &g) |
| substract all degrees of freedom from given discrete function using the dof iterators | |
| void | enableDofCompression () |
| Enable this discrete function for dof compression, i.e. during grid changes a dof compression is done when the DofManagers compress is called. | |
| void | addScaledLocalDofs (const EntityType &entity, const RangeFieldType &s, const LocalDofs &localDofs) |
| add scaled local Dofs to dof vector associated with the entity | |
| void | addLocalDofs (const EntityType &entity, const LocalDofs &localDofs) |
| add local Dofs to dof vector associated with the entity | |
| void | setLocalDofs (const EntityType &entity, const LocalDofs &localDofs) |
| set local Dofs to dof vector associated with the entity | |
| void | getLocalDofs (const EntityType &entity, Vector &localDofs) const |
| fill local Dofs to dof vector associated with the entity | |
| bool | compare (const DiscreteFunctionInterface< DFType > &g) const |
| LocalDofVectorAllocatorType & | localDofVectorAllocator () const |
| obtain the local function storage | |
| void | beginAssemble () |
| Initiate the assemble of values using the LocalContribution concept. | |
| void | endAssemble (const bool communicate=true) |
| Finalize the assemble of values using the LocalContribution concept. | |
| void | getLocalDofReferences (const EntityType &entity, LocalDofVectorType &localDofs) |
| get local Dofs and store a reference to it in the LocalDofVector | |
| DefaultLoadBalanceContainsCheckType | defaultLoadBalanceContainsCheck () const |
| void | operator() (const DomainType &arg, RangeType &dest) const |
| Application operator that applies all operators in the linear combination stack. | |
Static Public Attributes | |
| static constexpr std::size_t | blockSize |
| size of the dof blocks | |
Protected Types | |
| typedef ParallelScalarProduct< DiscreteFunctionInterfaceType > | ScalarProductType |
| typedef TemporaryLocalFunction< DiscreteFunctionSpaceType > | TemporaryLocalFunctionType |
Protected Member Functions | |
| virtual void | backup () const |
| virtual void | restore () |
| virtual void | insertSubData () |
| virtual void | removeSubData () |
| void | evaluateGlobal (const DomainType &x, Functor functor) const |
| evaluate functor in global coordinate | |
| const Implementation & | asImp () const |
| Implementation & | asImp () |
| virtual void * | pointer () |
Static Protected Member Functions | |
| static const Implementation & | asImp (const ThisType &other) |
| static Implementation & | asImp (ThisType &other) |
Friends | |
| class | CombinedDiscreteFunctionDofIterator< ContainedDiscreteFunctionType, N > |
Related Symbols | |
(Note that these are not member symbols.) | |
| template<class Impl > | |
| std::ostream & | operator<< (std::ostream &out, const DiscreteFunctionInterface< Impl > &df) |
| write a discrete function into an STL stream | |
| template<class DFieldType , class RFieldType , class DType , class RType > | |
| static Mapping< DFieldType, RFieldType, DType, RType > | operator+ (const Mapping< DFieldType, RFieldType, DType, RType > &a, const Mapping< DFieldType, RFieldType, DType, RType > &b) |
| add two mappings | |
| template<class DFieldType , class RFieldType , class DType , class RType > | |
| static Mapping< DFieldType, RFieldType, DType, RType > | operator- (const Mapping< DFieldType, RFieldType, DType, RType > &a, const Mapping< DFieldType, RFieldType, DType, RType > &b) |
| substract two mappings | |
| template<class DFieldType , class RFieldType , class DType , class RType > | |
| static Mapping< DFieldType, RFieldType, DType, RType > | operator* (const Mapping< DFieldType, RFieldType, DType, RType > &mapping, const RFieldType &factor) |
| scale mapping with factor | |
| template<class DFieldType , class RFieldType , class DType , class RType > | |
| static Mapping< DFieldType, RFieldType, DType, RType > | operator* (const RFieldType &factor, const Mapping< DFieldType, RFieldType, DType, RType > &mapping) |
| scale mapping with factor | |
| template<class DFieldType , class RFieldType , class DType , class RType > | |
| static Mapping< DFieldType, RFieldType, DType, RType > | operator/ (const Mapping< DFieldType, RFieldType, DType, RType > &mapping, const RFieldType &factor) |
| operator / for mappings | |
| template<class DFieldType , class RFieldType , class DType , class RType > | |
| static Mapping< DFieldType, RFieldType, DType, RType > | operator/ (const RFieldType &factor, const Mapping< DFieldType, RFieldType, DType, RType > &mapping) |
| operator / for mappings | |
Detailed Description
class Dune::Fem::CombinedDiscreteFunction< ContainedDiscreteFunctionImp, N >
A class for combining N discrete function of the same type to a vector valued function
Member Typedef Documentation
◆ BlockIndices
|
inherited |
◆ ConstDofBlockPtrType
| typedef BaseType::ConstDofBlockPtrType Dune::Fem::CombinedDiscreteFunction< ContainedDiscreteFunctionImp, N >::ConstDofBlockPtrType |
◆ ConstDofBlockType
|
inherited |
◆ ConstDofIteratorType
| typedef BaseType::ConstDofIteratorType Dune::Fem::CombinedDiscreteFunction< ContainedDiscreteFunctionImp, N >::ConstDofIteratorType |
Read-only iterator over dof container.
◆ ContainedDiscreteFunctionSpaceType
| typedef Traits::ContainedDiscreteFunctionSpaceType Dune::Fem::CombinedDiscreteFunction< ContainedDiscreteFunctionImp, N >::ContainedDiscreteFunctionSpaceType |
Contained discrete function space.
◆ ContainedDiscreteFunctionType
| typedef ContainedDiscreteFunctionImp Dune::Fem::CombinedDiscreteFunction< ContainedDiscreteFunctionImp, N >::ContainedDiscreteFunctionType |
Discrete function this discrete function belongs to.
◆ DefaultLoadBalanceContainsCheckType
|
inherited |
◆ DiscreteFunctionInterfaceType
|
inherited |
◆ DiscreteFunctionSpaceType
| typedef BaseType::DiscreteFunctionSpaceType Dune::Fem::CombinedDiscreteFunction< ContainedDiscreteFunctionImp, N >::DiscreteFunctionSpaceType |
the combined discrete function type
◆ DiscreteFunctionType
| typedef BaseType::DiscreteFunctionType Dune::Fem::CombinedDiscreteFunction< ContainedDiscreteFunctionImp, N >::DiscreteFunctionType |
Discrete function type (identical to this type, needed as Barton-Nackman parameter
◆ DofBlockPtrType
| typedef BaseType::DofBlockPtrType Dune::Fem::CombinedDiscreteFunction< ContainedDiscreteFunctionImp, N >::DofBlockPtrType |
◆ DofBlockType
|
inherited |
◆ DofIteratorType
| typedef BaseType::DofIteratorType Dune::Fem::CombinedDiscreteFunction< ContainedDiscreteFunctionImp, N >::DofIteratorType |
Iterator over dof container.
◆ DofType
| typedef BaseType::DofType Dune::Fem::CombinedDiscreteFunction< ContainedDiscreteFunctionImp, N >::DofType |
Intrinsic type used for dofs (typically a float type)
◆ DofVectorType
|
inherited |
type of DofVector
◆ DomainFieldType
| typedef BaseType::DomainFieldType Dune::Fem::CombinedDiscreteFunction< ContainedDiscreteFunctionImp, N >::DomainFieldType |
Intrinsic type used for the domain field.
◆ DomainType
| typedef BaseType::DomainType Dune::Fem::CombinedDiscreteFunction< ContainedDiscreteFunctionImp, N >::DomainType |
Vector type used for the domain field.
◆ EntityType
|
inherited |
◆ FunctionSpaceType
|
inherited |
type of associated function space
◆ GridPartType
| typedef BaseType::GridPartType Dune::Fem::CombinedDiscreteFunction< ContainedDiscreteFunctionImp, N >::GridPartType |
GridPart implementation.
◆ GridType
| typedef BaseType::GridType Dune::Fem::CombinedDiscreteFunction< ContainedDiscreteFunctionImp, N >::GridType |
Grid implementation.
◆ GridView
|
inherited |
◆ HessianRangeType
|
inherited |
type of hessian
◆ JacobianRangeType
|
inherited |
type of jacobian
◆ LocalCoordinateType
|
inherited |
◆ LocalDofVectorAllocatorType
| typedef BaseType::LocalDofVectorAllocatorType Dune::Fem::CombinedDiscreteFunction< ContainedDiscreteFunctionImp, N >::LocalDofVectorAllocatorType |
◆ LocalDofVectorType
|
inherited |
type of LocalDofVector
◆ LocalFunctionType
|
inherited |
type of local functions
◆ MapperType
| typedef Traits::MapperType Dune::Fem::CombinedDiscreteFunction< ContainedDiscreteFunctionImp, N >::MapperType |
Mapper type (from the space)
◆ MappingType
|
inherited |
type of mapping base class for this discrete function
◆ RangeFieldType
| typedef BaseType::RangeFieldType Dune::Fem::CombinedDiscreteFunction< ContainedDiscreteFunctionImp, N >::RangeFieldType |
Intrinsic type used for range field (like DofType)
◆ RangeType
| typedef BaseType::RangeType Dune::Fem::CombinedDiscreteFunction< ContainedDiscreteFunctionImp, N >::RangeType |
Vector type used for the range field.
◆ ScalarProductType
|
protectedinherited |
◆ SizeType
|
inherited |
size type of the block vector
◆ SubDiscreteFunctionSpaceType
| typedef ContainedDiscreteFunctionSpaceType Dune::Fem::CombinedDiscreteFunction< ContainedDiscreteFunctionImp, N >::SubDiscreteFunctionSpaceType |
◆ SubDiscreteFunctionType
| typedef ContainedDiscreteFunctionType Dune::Fem::CombinedDiscreteFunction< ContainedDiscreteFunctionImp, N >::SubDiscreteFunctionType |
◆ TemporaryLocalFunctionType
|
protectedinherited |
◆ Traits
| typedef DiscreteFunctionTraits< ThisType > Dune::Fem::CombinedDiscreteFunction< ContainedDiscreteFunctionImp, N >::Traits |
Traits class with all necessary type definitions.
Constructor & Destructor Documentation
◆ CombinedDiscreteFunction() [1/5]
|
inline |
Constructor.
◆ CombinedDiscreteFunction() [2/5]
|
inline |
◆ CombinedDiscreteFunction() [3/5]
|
inline |
◆ CombinedDiscreteFunction() [4/5]
|
inline |
Copy constructor The copy constructor copies the dofs
◆ ~CombinedDiscreteFunction()
|
inline |
Destructor.
◆ CombinedDiscreteFunction() [5/5]
|
delete |
Member Function Documentation
◆ addLocalDofs()
|
inlineinherited |
add local Dofs to dof vector associated with the entity
- Parameters
-
[in] entity Entity to focus view of discrete function [in] localDofs the local dofs vector to be added
◆ addScaled()
|
inline |
◆ addScaledLocalDofs()
|
inlineinherited |
add scaled local Dofs to dof vector associated with the entity
- Parameters
-
[in] entity Entity to focus view of discrete function [in] s scaling factor [in] localDofs the local dofs vector to be added
◆ asImp() [1/4]
|
inlineprotectedinherited |
◆ asImp() [2/4]
|
inlineprotectedinherited |
◆ asImp() [3/4]
|
inlinestaticprotectedinherited |
◆ asImp() [4/4]
|
inlinestaticprotectedinherited |
◆ assign() [1/2]
|
inlineinherited |
◆ assign() [2/2]
|
inline |
◆ axpy() [1/4]
|
inlineinherited |
◆ axpy() [2/4]
|
inlineinherited |
axpy operation
Adds s * g to this discrete function.
- Parameters
-
[in] s scalar value to scale g with [in] g discrete function to add
◆ axpy() [3/4]
|
inlineinherited |
◆ axpy() [4/4]
|
inline |
axpy operation
Adds s * g to this discrete function.
- Parameters
-
[in] s scalar value to scale g with [in] g discrete function to add
◆ backup()
|
inlineprotectedvirtualinherited |
Implements Dune::Fem::PersistentObject.
◆ beginAssemble()
|
inlineinherited |
Initiate the assemble of values using the LocalContribution concept.
- Template Parameters
-
AssembleOperation the specific operation (Add, Set, ...)
◆ block() [1/2]
|
inline |
◆ block() [2/2]
|
inline |
◆ blocks()
|
inlineinherited |
obtain total number of blocks, i.e. size / blockSize.
The number of blocks of DoFs (degrees of freedom) can also be seen as the size of the discrete function divided by the blockSize.
- Returns
- total number of DoFs blocks
◆ clear()
|
inline |
set all degrees of freedom to zero
◆ communicate()
|
inlineinherited |
do default communication of space for this discrete function
◆ compare()
|
inlineinherited |
◆ continuous()
|
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
◆ dataHandle() [1/2]
|
inherited |
return reference to data handle object
◆ dataHandle() [2/2]
|
inlineinherited |
◆ dbegin() [1/2]
|
inline |
obtain an iterator pointing to the first DoF (read-write)
- Returns
- a DoF iterator pointing to first DoF (degre of freedom)
◆ dbegin() [2/2]
|
inline |
obtain an iterator pointing to the first DoF (read-only)
- Returns
- a DoF iterator pointing to first DoF (degre of freedom)
◆ defaultLoadBalanceContainsCheck()
|
inlineinherited |
◆ dend() [1/2]
|
inline |
obtain an iterator pointing behind the last DoF (read-write)
- Returns
- a DoF iterator pointing behind the last DoF (degree of freedom)
◆ dend() [2/2]
|
inline |
obtain an iterator pointing behind the last DoF (read-only)
- Returns
- a DoF iterator pointing behind the last DoF (degree of freedom)
◆ dof() [1/2]
|
inline |
◆ dof() [2/2]
|
inline |
◆ dofsValid()
|
inline |
check for NaNs
- Returns
- if one of the DoFs is NaN false is returned, otherwise true
◆ dofVector() [1/2]
|
inlineinherited |
◆ dofVector() [2/2]
|
inlineinherited |
◆ enableDofCompression()
|
inlineinherited |
Enable this discrete function for dof compression, i.e. during grid changes a dof compression is done when the DofManagers compress is called.
- Note
- The default implementation does nothing.
◆ endAssemble()
|
inlineinherited |
Finalize the assemble of values using the LocalContribution concept.
- Template Parameters
-
AssembleOperation the specific operation (Add, Set, ...)
◆ evaluate()
|
inlineinherited |
◆ evaluateGlobal()
|
inlineprotectedinherited |
evaluate functor in global coordinate
◆ getLocalDofReferences()
|
inlineinherited |
get local Dofs and store a reference to it in the LocalDofVector
◆ getLocalDofs()
|
inlineinherited |
fill local Dofs to dof vector associated with the entity
- Parameters
-
[in] entity Entity to focus view of discrete function [out] localDofs the local dofs vector to be set
- Note
- localDofs should have sufficient size to store the dof values
◆ gridPart()
|
inlineinherited |
obtain a reference to the underlying grid part
◆ hessian()
|
inlineinherited |
evaluate the hessian of the function (const DomainType &x,HessianRangeType &hessian) const
- Parameters
-
[in] x evaluation point [out] hessian value of the hessian in x (const DomainType &x,HessianRangeType &hessian) const
◆ insertSubData()
|
protectedvirtualinherited |
Reimplemented from Dune::Fem::PersistentObject.
◆ jacobian()
|
inlineinherited |
◆ localDofVectorAllocator()
|
inlineinherited |
obtain the local function storage
- Returns
- a reference to the local function storage
◆ localFunction() [1/4]
|
inlineinherited |
obtain an uninitialized local function (read-write)
- Note
- before calling any method of the local function initialize it passing an entity
- Returns
- an uninitialized local function
◆ localFunction() [2/4]
|
inlineinherited |
obtain an uninitialized local function (read-write)
- Note
- before calling any method of the local function initialize it passing an entity
- Returns
- an uninitialized local function
◆ localFunction() [3/4]
|
inlineinherited |
◆ localFunction() [4/4]
|
inlineinherited |
◆ name() [1/2]
|
inlineinherited |
obtain the name of the discrete function
- Returns
- string holding name of discrete function
◆ name() [2/2]
|
inlineinherited |
obtain the name of the discrete function
- Returns
- string holding name of discrete function
◆ normSquaredDofs()
|
inlineinherited |
Squared small l^2 norm of all dofs.
- Note
- This is already parallel, so do not sum over all processes after calling scalarProductDofs!
- It is assumed that the discrete function has been communicated (i.e., every local DoF hat the value of the corresponding global DoF).
- Returns
- the squared norm of the DoF-vectors
◆ operator()()
|
inlineinherited |
Application operator that applies all operators in the linear combination stack.
- Parameters
-
[in] arg argument [out] dest destination
◆ operator*=()
|
inline |
multiply all DoFs by a scalar factor
- Parameters
-
[in] scalar factor to muliply all DoFs by
- Returns
- a reference to this discrete function (i.e. *this)
◆ operator+=() [1/2]
|
inlineinherited |
add another discrete function to this one
- Parameters
-
[in] g discrete function to add
- Returns
- a reference to this discrete function (i.e. *this)
◆ operator+=() [2/2]
|
inline |
◆ operator-=() [1/2]
|
inlineinherited |
substract all degrees of freedom from given discrete function using the dof iterators
- Parameters
-
[in] g discrete function which is substracted from this discrete function
- Returns
- reference to this (i.e. *this)
◆ operator-=() [2/2]
|
inline |
◆ operator/=()
|
inline |
multiply all DoFs by a scalar factor
- Parameters
-
[in] scalar factor to muliply all DoFs by
- Returns
- a reference to this discrete function (i.e. *this)
◆ operator=() [1/2]
|
delete |
◆ operator=() [2/2]
|
delete |
◆ order()
|
inlineconstexprinherited |
obtain an upper bound on the polynomial order of the underlying space.
◆ pointer()
|
inlineprotectedvirtualinherited |
Reimplemented in Dune::Fem::PersistenceManager::WrapObject< ObjectType, false >.
◆ print()
|
inline |
◆ read()
|
inline |
read the discrete function from a stream
- Parameters
-
[in] in stream to read the discrete function from
- Note
- This call will automatically enable dof compression for this discrete function.
◆ removeSubData()
|
protectedvirtualinherited |
Reimplemented from Dune::Fem::PersistentObject.
◆ restore()
|
inlineprotectedvirtualinherited |
Implements Dune::Fem::PersistentObject.
◆ scalarProductDofs() [1/2]
|
inlineinherited |
Scalar product between the DoFs of two discrete functions.
- Note
- This is a parallel scalar product, so do not sum over all processes after calling scalarProductDofs!
- It is assumed that the discrete function has been communicated (i.e., every local DoF hat the value of the corresponding global DoF).
- Parameters
-
[in] other discrete function to evaluate the scalar product with
- Returns
- the scalar product of the DoF-vectors
◆ scalarProductDofs() [2/2]
|
inline |
◆ setLocalDofs()
|
inlineinherited |
set local Dofs to dof vector associated with the entity
- Parameters
-
[in] entity Entity to focus view of discrete function [in] localDofs the local dofs vector to be set
◆ size()
|
inline |
obtain total number of DoFs
The number of DoFs (degrees of freedom) can also be seen as the size of the discrete function, i.e., the size of the vector that forms this discrete funciton.
- Returns
- total number of DoFs for this discrete function
◆ space()
|
inlineinherited |
obtain a reference to the corresponding DiscreteFunctionSpace
◆ subFunction() [1/2]
|
inline |
◆ subFunction() [2/2]
|
inline |
◆ subSpace()
|
inline |
◆ write()
|
inline |
write the discrete function into a stream
- Parameters
-
[in] out stream to write the discrete function to
Friends And Related Symbol Documentation
◆ CombinedDiscreteFunctionDofIterator< ContainedDiscreteFunctionType, N >
|
friend |
◆ operator*() [1/2]
|
related |
scale mapping with factor
- Parameters
-
[in] mapping Mapping which is scaled [in] factor factor with which mapping is scaled
- Returns
- new object mapping
◆ operator*() [2/2]
|
related |
scale mapping with factor
- Parameters
-
[in] factor factor with which mapping is scaled [in] mapping Mapping which is scaled
- Returns
- new object mapping
◆ operator+()
|
related |
add two mappings
- Parameters
-
[in] a mapping 1 [in] b mapping 2
- Returns
- new object mapping
◆ operator-()
|
related |
substract two mappings
- Parameters
-
[in] a mapping 1 [in] b mapping 2
- Returns
- new object mapping
◆ operator/() [1/2]
|
related |
operator / for mappings
- Parameters
-
[in] mapping mapping which is divided [in] factor f factor by which result of mapping is divided
- Returns
- new object mapping
◆ operator/() [2/2]
|
related |
operator / for mappings
- Parameters
-
[in] factor by which result of mapping is divided [in] mapping which is divided
- Returns
- new object mapping
◆ operator<<()
|
related |
write a discrete function into an STL stream
- Parameters
-
[in] out STL stream to write to [in] df discrete function to write
- Returns
- the STL stream (for concatenation)
Member Data Documentation
◆ assembleCount_
|
protectedinherited |
◆ assembleOperation_
|
protectedinherited |
◆ blockSize
|
staticconstexprinherited |
size of the dof blocks
◆ dfSpace_
|
protectedinherited |
◆ ldvAllocator_
|
mutableprotectedinherited |
◆ localFunction_
|
mutableprotectedinherited |
◆ name_
|
protectedinherited |
◆ scalarProduct_
|
protectedinherited |
The documentation for this class was generated from the following file:
Legal Statements / Impressum | Hosted by TU Dresden & Uni Heidelberg | Generated by
1.9.8