An abstract class for an S matrix. More...
#include <smatrix.hh>


Public Member Functions | |
| virtual void | operator() (const TColumn< F > &src, TColumn< F > &dest) const =0 |
| Application operator. | |
| virtual uint | size () const =0 |
| Returns the size of the S matrix. | |
Protected Member Functions | |
| virtual std::ostream & | info (std::ostream &os) const |
| Returns information in an output stream. | |
An abstract class for an S matrix.
An S matrix describes how a T matrix has to be changed to reflect a refinement of an element.
The definition of an S matrix is as follows:
Let
be the result of a refinement of element
. The S matrix
describes how the restriction of the shape functions
onto
are constructed from the shape functions
of
:
and in vector notation:
In the trivial case
(i. e. no refinement), the S matrix
is defined as the identity matrix.
Definition at line 52 of file smatrix.hh.
| virtual std::ostream& concepts::SMatrixBase< F >::info | ( | std::ostream & | os | ) | const [protected, virtual] |
Returns information in an output stream.
Reimplemented from concepts::OutputOperator.
Reimplemented in concepts::SMatrix1D, concepts::SMatrixTensor< F, dim >, concepts::SMatrixCompose< F >, concepts::SMatrixGeneralTensor< F, dim >, and concepts::SMatrixBlock< F, dim >.
| virtual void concepts::SMatrixBase< F >::operator() | ( | const TColumn< F > & | src, |
| TColumn< F > & | dest | ||
| ) | const [pure virtual] |
Application operator.
Implemented in concepts::SMatrix1D, concepts::SMatrixTensor< F, dim >, concepts::SMatrixCompose< F >, concepts::SMatrixGeneralTensor< F, dim >, and concepts::SMatrixBlock< F, dim >.
| virtual uint concepts::SMatrixBase< F >::size | ( | ) | const [pure virtual] |
Returns the size of the S matrix.
Implemented in concepts::SMatrix1D, concepts::SMatrixTensor< F, dim >, concepts::SMatrixCompose< F >, concepts::SMatrixGeneralTensor< F, dim >, and concepts::SMatrixBlock< F, dim >.