|
dune-fem 2.12-git
|
Default implementation for local matrix classes. More...
#include <dune/fem/operator/common/localmatrix.hh>

Public Types | |
| typedef LocalMatrixTraits | Traits |
| typedef BaseType::DomainSpaceType | DomainSpaceType |
| typedef BaseType::RangeSpaceType | RangeSpaceType |
| typedef BaseType::DomainBasisFunctionSetType | DomainBasisFunctionSetType |
| typedef BaseType::RangeBasisFunctionSetType | RangeBasisFunctionSetType |
| typedef BaseType::DomainEntityType | DomainEntityType |
| typedef BaseType::RangeEntityType | RangeEntityType |
| typedef ThisType | LocalMatrixInterfaceType |
| type of this interface | |
| typedef Traits::LocalMatrixType | LocalMatrixType |
| type of local matrix implementation | |
| typedef Traits::RangeFieldType | RangeFieldType |
| type of range field | |
| typedef Traits::LittleBlockType | LittleBlockType |
| typedef MatrixColumnObject< Traits > | MatrixColumnType |
Public Member Functions | |
| void | init (const DomainEntityType &domainEntity, const RangeEntityType &rangeEntity) |
| initialize the local matrix to entities | |
| void | bind (const DomainEntityType &domainEntity, const RangeEntityType &rangeEntity) |
| initialize the local matrix to entities | |
| void | unbind () |
| clear local matrix from entities | |
| void | resort () |
| resort ordering in global matrix (if possible) | |
| void | finalize () |
| finalize local matrix setup and possibly add values to real matrix | |
| int | rows () const |
| get number of rows within the matrix | |
| int | columns () const |
| get number of columns within the matrix | |
| const DomainSpaceType & | domainSpace () const |
| access to the domain space | |
| const RangeSpaceType & | rangeSpace () const |
| access to the range space | |
| const DomainBasisFunctionSetType & | domainBasisFunctionSet () const |
| access to the base function set within the domain space | |
| const RangeBasisFunctionSetType & | rangeBasisFunctionSet () const |
| access to the base function set within the range space | |
| const DomainEntityType & | domainEntity () const |
| const RangeEntityType & | rangeEntity () const |
| template<class DomainLocalFunctionType , class RangeLocalFunctionType > | |
| void | multiplyAdd (const DomainLocalFunctionType &lhs, RangeLocalFunctionType &rhs) const |
| multiply left hand side with local matrix and add to right hand side rhs += Matrix * lhs | |
| void | clearRow (const int localRow) |
| set row to zero values | |
| void | clearCol (const int localCol) |
| ser column entries to zero | |
| void | add (const int localRow, const int localCol, const RangeFieldType &value) |
| add value to matrix entry (row,col) where row and col are local row and local column | |
| void | set (const int localRow, const int localCol, const RangeFieldType &value) |
| set value of matrix entry (row,col) where row and col are local row and local column | |
| const RangeFieldType | get (const int localRow, const int localCol) const |
| get value of matrix entry (row,col) where row and col are local row and local column | |
| void | scale (const RangeFieldType &scalar) |
| scale matrix with scalar value | |
| void | clear () |
| set all entries of local matrix to zero | |
| MatrixColumnType | column (const unsigned int col) |
| return column object for local matrix which contains axpy methods for convenience | |
Protected Member Functions | |
| LocalMatrixDefault (const DomainSpaceType &domainSpace, const RangeSpaceType &rangeSpace) | |
| template<class DomainEntityType , class RangeEntityType > | |
| LocalMatrixDefault (const DomainSpaceType &domainSpace, const RangeSpaceType &rangeSpace, const DomainEntityType &domainEntity, const RangeEntityType &rangeEntity) | |
| LocalMatrixDefault (const LocalMatrixDefault &org) | |
| const Implementation & | asImp () const |
| Implementation & | asImp () |
Static Protected Member Functions | |
| static const Implementation & | asImp (const ThisType &other) |
| static Implementation & | asImp (ThisType &other) |
| static const LocalMatrixTraits::LocalMatrixType & | asImp (const ThisType &other) |
| static LocalMatrixTraits::LocalMatrixType & | asImp (ThisType &other) |
Protected Attributes | |
| const DomainSpaceType & | domainSpace_ |
| const RangeSpaceType & | rangeSpace_ |
| DomainBasisFunctionSetType | domainBaseSet_ |
| RangeBasisFunctionSetType | rangeBaseSet_ |
| std::optional< DomainEntityType > | domainEntity_ |
| std::optional< RangeEntityType > | rangeEntity_ |
Detailed Description
class Dune::Fem::LocalMatrixDefault< LocalMatrixTraits >
Default implementation for local matrix classes.
Member Typedef Documentation
◆ DomainBasisFunctionSetType
| typedef BaseType::DomainBasisFunctionSetType Dune::Fem::LocalMatrixDefault< LocalMatrixTraits >::DomainBasisFunctionSetType |
◆ DomainEntityType
| typedef BaseType::DomainEntityType Dune::Fem::LocalMatrixDefault< LocalMatrixTraits >::DomainEntityType |
◆ DomainSpaceType
| typedef BaseType::DomainSpaceType Dune::Fem::LocalMatrixDefault< LocalMatrixTraits >::DomainSpaceType |
◆ LittleBlockType
|
inherited |
type of block (i.e. FieldMatrix for BlockMatrices
◆ LocalMatrixInterfaceType
|
inherited |
type of this interface
◆ LocalMatrixType
|
inherited |
type of local matrix implementation
◆ MatrixColumnType
|
inherited |
◆ RangeBasisFunctionSetType
| typedef BaseType::RangeBasisFunctionSetType Dune::Fem::LocalMatrixDefault< LocalMatrixTraits >::RangeBasisFunctionSetType |
◆ RangeEntityType
| typedef BaseType::RangeEntityType Dune::Fem::LocalMatrixDefault< LocalMatrixTraits >::RangeEntityType |
◆ RangeFieldType
|
inherited |
type of range field
◆ RangeSpaceType
| typedef BaseType::RangeSpaceType Dune::Fem::LocalMatrixDefault< LocalMatrixTraits >::RangeSpaceType |
◆ Traits
| typedef LocalMatrixTraits Dune::Fem::LocalMatrixDefault< LocalMatrixTraits >::Traits |
Constructor & Destructor Documentation
◆ LocalMatrixDefault() [1/3]
|
inlineprotected |
◆ LocalMatrixDefault() [2/3]
|
inlineprotected |
◆ LocalMatrixDefault() [3/3]
|
inlineprotected |
Member Function Documentation
◆ add()
|
inlineinherited |
add value to matrix entry (row,col) where row and col are local row and local column
- Parameters
-
[in] localRow local row [in] localCol local column [in] value value to add
◆ asImp() [1/6]
|
inlineprotectedinherited |
◆ asImp() [2/6]
|
inlineprotectedinherited |
◆ asImp() [3/6]
|
inlinestaticprotectedinherited |
◆ asImp() [4/6]
|
inlinestaticprotectedinherited |
◆ asImp() [5/6]
|
inlinestaticprotectedinherited |
◆ asImp() [6/6]
|
inlinestaticprotectedinherited |
◆ bind()
|
inline |
initialize the local matrix to entities
- Parameters
-
[in] domainEntity entity within grid of domain space, [in] rangeEntity entity within grid of range space
◆ clear()
|
inlineinherited |
set all entries of local matrix to zero
◆ clearCol()
|
inline |
ser column entries to zero
- Parameters
-
[in] localCol local column that is set to zero
◆ clearRow()
|
inline |
set row to zero values
- Parameters
-
[in] localRow local row that is set to zero
◆ column()
|
inlineinherited |
return column object for local matrix which contains axpy methods for convenience
- Parameters
-
col local column number
- Returns
- object of type MatrixColumnObject
◆ columns()
|
inline |
get number of columns within the matrix
◆ domainBasisFunctionSet()
|
inline |
access to the base function set within the domain space
◆ domainEntity()
|
inline |
◆ domainSpace()
|
inline |
access to the domain space
◆ finalize()
|
inline |
finalize local matrix setup and possibly add values to real matrix
◆ get()
|
inlineinherited |
get value of matrix entry (row,col) where row and col are local row and local column
- Parameters
-
[in] localRow local row [in] localCol local column
- Returns
- value of matrix entry
◆ init()
|
inline |
initialize the local matrix to entities
- Parameters
-
[in] domainEntity entity within grid of domain space, [in] rangeEntity entity within grid of range space
◆ multiplyAdd()
|
inline |
multiply left hand side with local matrix and add to right hand side rhs += Matrix * lhs
- Parameters
-
[in] lhs left hand side [out] rhs right hand side
◆ rangeBasisFunctionSet()
|
inline |
access to the base function set within the range space
◆ rangeEntity()
|
inline |
◆ rangeSpace()
|
inline |
access to the range space
◆ resort()
|
inline |
resort ordering in global matrix (if possible)
◆ rows()
|
inline |
get number of rows within the matrix
◆ scale()
|
inlineinherited |
scale matrix with scalar value
- Parameters
-
[in] scalar scalar value that scales the matrix
◆ set()
|
inlineinherited |
set value of matrix entry (row,col) where row and col are local row and local column
- Parameters
-
[in] localRow local row [in] localCol local column [in] value value to set
◆ unbind()
|
inline |
clear local matrix from entities
Member Data Documentation
◆ domainBaseSet_
|
protected |
◆ domainEntity_
|
protected |
◆ domainSpace_
|
protected |
◆ rangeBaseSet_
|
protected |
◆ rangeEntity_
|
protected |
◆ rangeSpace_
|
protected |
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