To handle square matrices in skyline storage format. More...
Public Member Functions | |
SkMatrix () | |
Default constructor. More... | |
SkMatrix (size_t size, int is_diagonal=false) | |
Constructor that initializes a dense symmetric matrix. More... | |
SkMatrix (Mesh &mesh, size_t dof=0, int is_diagonal=false) | |
Constructor using mesh to initialize skyline structure of matrix. More... | |
SkMatrix (const vector< size_t > &ColHt) | |
Constructor that initializes skyline structure of matrix using vector of column heights. More... | |
SkMatrix (const SkMatrix< T_ > &m) | |
Copy Constructor. | |
~SkMatrix () | |
Destructor. | |
void | setMesh (Mesh &mesh, size_t dof=0) |
Determine mesh graph and initialize matrix. More... | |
void | setSkyline (Mesh &mesh) |
Determine matrix structure. More... | |
void | setDiag () |
Store diagonal entries in a separate internal vector. | |
void | setDOF (size_t i) |
Choose DOF to activate. More... | |
void | set (size_t i, size_t j, const T_ &val) |
Assign a value to an entry ofthe matrix. More... | |
void | Axpy (T_ a, const SkMatrix< T_ > &m) |
Add to matrix the product of a matrix by a scalar. More... | |
void | Axpy (T_ a, const Matrix< T_ > *m) |
Add to matrix the product of a matrix by a scalar. More... | |
void | MultAdd (const Vect< T_ > &x, Vect< T_ > &y) const |
Multiply matrix by vector x and add to y . More... | |
void | TMultAdd (const Vect< T_ > &x, Vect< T_ > &y) const |
Multiply transpose of matrix by vector x and add to y . More... | |
void | MultAdd (T_ a, const Vect< T_ > &x, Vect< T_ > &y) const |
Multiply matrix by a vector and add to another one. More... | |
void | Mult (const Vect< T_ > &x, Vect< T_ > &y) const |
Multiply matrix by vector x and save in y . More... | |
void | TMult (const Vect< T_ > &x, Vect< T_ > &y) const |
Multiply transpose of matrix by vector x and save in y . More... | |
void | add (size_t i, size_t j, const T_ &val) |
Add a constant value to an entry ofthe matrix. More... | |
size_t | getColHeight (size_t i) const |
Return column height. More... | |
T_ | at (size_t i, size_t j) |
Return a value of a matrix entry. More... | |
T_ | operator() (size_t i, size_t j) const |
Operator () (Constant version). More... | |
T_ & | operator() (size_t i, size_t j) |
Operator () (Non constant version). More... | |
void | DiagPrescribe (Mesh &mesh, Vect< T_ > &b, const Vect< T_ > &u, int flag=0) |
Impose an essential boundary condition. More... | |
void | DiagPrescribe (Vect< T_ > &b, const Vect< T_ > &u, int flag=0) |
Impose an essential boundary condition using the Mesh instance provided by the constructor. More... | |
SkMatrix< T_ > & | operator= (const SkMatrix< T_ > &m) |
Operator =. More... | |
SkMatrix< T_ > & | operator= (const T_ &x) |
Operator =. More... | |
SkMatrix< T_ > & | operator+= (const SkMatrix< T_ > &m) |
Operator +=. More... | |
SkMatrix< T_ > & | operator+= (const T_ &x) |
Operator +=. More... | |
SkMatrix< T_ > & | operator*= (const T_ &x) |
Operator *=. More... | |
int | setLU () |
Factorize the matrix (LU factorization) More... | |
int | solve (Vect< T_ > &b, bool fact=true) |
Solve linear system. More... | |
int | solve (const Vect< T_ > &b, Vect< T_ > &x, bool fact=true) |
Solve linear system. More... | |
T_ * | get () const |
Return C-Array. More... | |
T_ | get (size_t i, size_t j) const |
Return entry (i,j) of matrix if this one is stored, 0 else. | |
void | add (size_t i, const T_ &val) |
Add val to entry i . | |
Public Member Functions inherited from Matrix< T_ > | |
Matrix () | |
Default constructor. More... | |
Matrix (const Matrix< T_ > &m) | |
Copy Constructor. | |
virtual | ~Matrix () |
Destructor. | |
virtual void | reset () |
Set matrix to 0 and reset factorization parameter. More... | |
size_t | getNbRows () const |
Return number of rows. | |
size_t | getNbColumns () const |
Return number of columns. | |
string | getName () const |
Return name of matrix. | |
MatrixSize | getMatrixSize () const |
Return storage type. | |
void | setPenal (real_t p) |
Set Penalty Parameter (For boundary condition prescription). | |
void | setDiagonal () |
Set the matrix as diagonal. | |
T_ | getDiag (size_t k) const |
Return k -th diagonal entry of matrix. More... | |
size_t | size () const |
Return matrix dimension (Number of rows and columns). | |
void | setDiagonal (Mesh &mesh) |
Initialize matrix storage in the case where only diagonal terms are stored. More... | |
virtual void | clear () |
brief Set all matrix entries to zero | |
void | Assembly (const Element &el, T_ *a) |
Assembly of element matrix into global matrix. More... | |
void | Assembly (const Side &sd, T_ *a) |
Assembly of side matrix into global matrix. More... | |
void | Prescribe (Vect< T_ > &b, const Vect< T_ > &u, int flag=0) |
Impose by a penalty method an essential boundary condition, using the Mesh instance provided by the constructor. More... | |
void | Prescribe (int dof, int code, Vect< T_ > &b, const Vect< T_ > &u, int flag=0) |
Impose by a penalty method an essential boundary condition to a given degree of freedom for a given code. More... | |
void | Prescribe (Vect< T_ > &b, int flag=0) |
Impose by a penalty method a homegeneous (=0) essential boundary condition. More... | |
void | Prescribe (size_t dof, Vect< T_ > &b, const Vect< T_ > &u, int flag=0) |
Impose by a penalty method an essential boundary condition when only one DOF is treated. More... | |
void | PrescribeSide () |
Impose by a penalty method an essential boundary condition when DOFs are supported by sides. More... | |
virtual int | Factor ()=0 |
Factorize matrix. Available only if the storage class enables it. | |
int | FactorAndSolve (Vect< T_ > &b) |
Factorize matrix and solve the linear system. More... | |
int | FactorAndSolve (const Vect< T_ > &b, Vect< T_ > &x) |
Factorize matrix and solve the linear system. More... | |
size_t | getLength () const |
Return number of stored terms in matrix. | |
int | isDiagonal () const |
Say if matrix is diagonal or not. | |
int | isFactorized () const |
Say if matrix is factorized or not. More... | |
virtual size_t | getColInd (size_t i) const |
Return Column index for column i (See the description for class SpMatrix). | |
virtual size_t | getRowPtr (size_t i) const |
Return Row pointer for row i (See the description for class SpMatrix). | |
T_ | operator() (size_t i) const |
Operator () with one argument (Constant version). More... | |
T_ & | operator() (size_t i) |
Operator () with one argument (Non Constant version). More... | |
T_ & | operator[] (size_t k) |
Operator [] (Non constant version). More... | |
T_ | operator[] (size_t k) const |
Operator [] (Constant version). More... | |
Matrix & | operator= (Matrix< T_ > &m) |
Operator =. More... | |
Matrix & | operator+= (const Matrix< T_ > &m) |
Operator +=. More... | |
Matrix & | operator-= (const Matrix< T_ > &m) |
Operator -=. More... | |
Matrix & | operator= (const T_ &x) |
Operator =. More... | |
Matrix & | operator*= (const T_ &x) |
Operator *=. More... | |
Matrix & | operator+= (const T_ &x) |
Operator +=. More... | |
Matrix & | operator-= (const T_ &x) |
Operator -=. More... | |
To handle square matrices in skyline storage format.
This template class allows storing and manipulating a matrix in skyline storage format.
The matrix entries are stored in 2 vectors column by column as in the following example:
/ \ / \ | l0 . | | u0 u1 0 0 u7 | | l1 l2 . | | u2 u3 0 u8 | | 0 l3 l4 . | | ... u4 u5 u9 | | 0 0 l5 l6 | | u6 u10 | | l7 l8 l9 l10 l11 | | u11 | \ / \ /
T_ | Data type (double, float, complex<double>, ...) |
SkMatrix | ( | ) |
Default constructor.
Initializes a zero-dimension matrix
SkMatrix | ( | size_t | size, |
int | is_diagonal = false |
||
) |
Constructor that initializes a dense symmetric matrix.
Normally, for a dense matrix this is not the right class.
[in] | size | Number of matrix rows (and columns). |
[in] | is_diagonal | Boolean to select if the matrix is diagonal or not [Default: false] |
Constructor using mesh to initialize skyline structure of matrix.
[in] | mesh | Mesh instance for which matrix graph is determined. |
[in] | dof | Option parameter, with default value 0 .dof=1 means that only one degree of freedom for each node (or element or side) is taken to determine matrix structure. The value dof=0 means that matrix structure is determined using all DOFs. |
[in] | is_diagonal | Boolean argument to say is the matrix is actually a diagonal matrix or not. |
SkMatrix | ( | const vector< size_t > & | ColHt | ) |
Constructor that initializes skyline structure of matrix using vector of column heights.
[in] | ColHt | Vect instance that contains rows lengths of matrix. |
|
virtual |
Add a constant value to an entry ofthe matrix.
[in] | i | Row index |
[in] | j | Column index |
[in] | val | Constant value to add to a(i,j) |
Implements Matrix< T_ >.
|
virtual |
Return a value of a matrix entry.
[in] | i | Row index (starts at 1) |
[in] | j | Column index (starts at 1) |
Implements Matrix< T_ >.
void Axpy | ( | T_ | a, |
const SkMatrix< T_ > & | m | ||
) |
Add to matrix the product of a matrix by a scalar.
[in] | a | Scalar to premultiply |
[in] | m | Matrix by which a is multiplied. The result is added to current instance |
|
virtual |
Add to matrix the product of a matrix by a scalar.
[in] | a | Scalar to premultiply |
[in] | m | Matrix by which a is multiplied. The result is added to current instance |
Implements Matrix< T_ >.
Impose an essential boundary condition.
This member function modifies diagonal terms in matrix and terms in vector that correspond to degrees of freedom with nonzero code in order to impose a boundary condition. It can be modified by member function setPenal(..).
[in] | mesh | Mesh instance from which information is extracted. |
[in] | b | Vect instance that contains right-hand side. |
[in] | u | Vect instance that conatins imposed valued at DOFs where they are to be imposed. |
[in] | flag | Parameter to determine whether only the right-hand side is to be modified (dof>0 )or both matrix and right-hand side ( dof=0 , default value). |
Impose an essential boundary condition using the Mesh instance provided by the constructor.
This member function modifies diagonal terms in matrix and terms in vector that correspond to degrees of freedom with nonzero code in order to impose a boundary condition. It can be modified by member function setPenal(..).
T_* get | ( | ) | const |
Return C-Array.
Skyline of matrix is stored row by row.
size_t getColHeight | ( | size_t | i | ) | const |
Return column height.
Column height at entry i
is returned.
Multiply matrix by vector x
and save in y
.
[in] | x | Vector to multiply by matrix |
[out] | y | Vector that contains on output the result. |
Implements Matrix< T_ >.
Multiply matrix by vector x
and add to y
.
[in] | x | Vector to multiply by matrix |
[in,out] | y | Vector to add to the result. y contains on output the result. |
Implements Matrix< T_ >.
Multiply matrix by a vector and add to another one.
[in] | a | Constant to multiply by matrix |
[in] | x | Vector to multiply by matrix |
[in,out] | y | Vector to add to the result. y contains on output the result. |
Implements Matrix< T_ >.
|
virtual |
Operator () (Constant version).
[in] | i | Row index |
[in] | j | Column index |
Implements Matrix< T_ >.
|
virtual |
Operator () (Non constant version).
[in] | i | Row index |
[in] | j | Column index |
Implements Matrix< T_ >.
SkMatrix<T_>& operator*= | ( | const T_ & | x | ) |
Operator *=.
Premultiply matrix entries by constant value x
.
Operator +=.
Add matrix m
to current matrix instance.
SkMatrix<T_>& operator+= | ( | const T_ & | x | ) |
Operator +=.
Add constant value x
to matrix entries.
Operator =.
Copy matrix m
to current matrix instance.
SkMatrix<T_>& operator= | ( | const T_ & | x | ) |
Operator =.
define the matrix as a diagonal one with all diagonal entries equal to x
.
|
virtual |
Assign a value to an entry ofthe matrix.
[in] | i | Row index (starting at i=1 ) |
[in] | j | Column index (starting at i=1 ) |
[in] | val | Value to assign to entry a(i,j) |
Implements Matrix< T_ >.
void setDOF | ( | size_t | i | ) |
Choose DOF to activate.
This function is available only if variable dof
is equal to 1 in the constructor
[in] | i | Index of the DOF |
int setLU | ( | ) |
Factorize the matrix (LU factorization)
LU factorization of the matrix is realized. Note that since this is an in place factorization, the contents of the matrix are modified.
0
if factorization was normally performed, n
if the n
-th pivot is null. void setMesh | ( | Mesh & | mesh, |
size_t | dof = 0 |
||
) |
Determine mesh graph and initialize matrix.
This member function is called by constructor with the same arguments
[in] | mesh | Mesh instance for which matrix graph is determined. |
[in] | dof | Option parameter, with default value 0 .dof=1 means that only one degree of freedom for each node (or element or side) is taken to determine matrix structure. The value dof=0 means that matrix structure is determined using all DOFs. |
void setSkyline | ( | Mesh & | mesh | ) |
|
virtual |
Solve linear system.
The linear system having the current instance as a matrix is solved by using the LU decomposition. Solution is thus realized after a factorization step and a forward/backward substitution step. The factorization step is realized only if this was not already done.
Note that this function modifies the matrix contents is a factorization is performed. Naturally, if the the matrix has been modified after using this function, the user has to refactorize it using the function setLU. This is because the class has no non-expensive way to detect if the matrix has been modified. The function setLU realizes the factorization step only.
[in,out] | b | Vect instance that contains right-hand side on input and solution on output. |
[in] | fact | Set true if matrix is to be factorized (Default value), false if not |
0
if solution was normally performed, n
if the n
-th pivot is null. Implements Matrix< T_ >.
Solve linear system.
The linear system having the current instance as a matrix is solved by using the LU decomposition. Solution is thus realized after a factorization step and a forward/backward substitution step. The factorization step is realized only if this was not already done.
Note that this function modifies the matrix contents is a factorization is performed. Naturally, if the the matrix has been modified after using this function, the user has to refactorize it using the function setLU. This is because the class has no non-expensive way to detect if the matrix has been modified. The function setLU realizes the factorization step only.
[in] | b | Vect instance that contains right-hand side. |
[out] | x | Vect instance that contains solution |
[in] | fact | Set true if matrix is to be factorized (Default value), false if not |
0
if solution was normally performed, n
if the n
-th pivot is null. Implements Matrix< T_ >.
Multiply transpose of matrix by vector x
and save in y
.
[in] | x | Vector to multiply by matrix |
[out] | y | Vector that contains on output the result. |
Implements Matrix< T_ >.