Memosa-FVM
0.2
|
Go to the source code of this file.
Classes | |
class | SquareMatrix< T, N > |
Functions | |
template<class T > | |
T | determinant (SquareMatrix< T, 2 > &a) |
template<class T > | |
T | determinant (SquareMatrix< T, 3 > &a) |
template<class T , int N> | |
T | determinant (SquareMatrix< T, N > &a, int size) |
template<class T > | |
SquareMatrix< T, 2 > | inverse (SquareMatrix< T, 2 > &a) |
template<class T > | |
SquareMatrix< T, 3 > | inverse (SquareMatrix< T, 3 > &a) |
template<class T , int N> | |
SquareMatrix< T, N > | inverse (SquareMatrix< T, N > &b, int size) |
template<class T , int N> | |
SquareMatrix< T, N > | inverseGauss (SquareMatrix< T, N > &a, int size) |
T determinant | ( | SquareMatrix< T, 2 > & | a | ) |
T determinant | ( | SquareMatrix< T, 3 > & | a | ) |
Definition at line 73 of file MatrixOperation.h.
T determinant | ( | SquareMatrix< T, N > & | a, |
int | size | ||
) |
Definition at line 81 of file MatrixOperation.h.
References determinant().
SquareMatrix<T,2> inverse | ( | SquareMatrix< T, 2 > & | a | ) |
Definition at line 118 of file MatrixOperation.h.
References determinant().
Referenced by MeshMetricsCalculator< T >::computeIBInterpolationMatrices(), MeshMetricsCalculator< T >::computeIBInterpolationMatricesCells(), MeshMetricsCalculator< T >::computeSolidInterpolationMatrices(), and COMETDiscretizer< T >::updateeShifted().
SquareMatrix<T,3> inverse | ( | SquareMatrix< T, 3 > & | a | ) |
Definition at line 132 of file MatrixOperation.h.
References determinant().
SquareMatrix<T,N> inverse | ( | SquareMatrix< T, N > & | b, |
int | size | ||
) |
Definition at line 151 of file MatrixOperation.h.
References determinant().
SquareMatrix<T,N> inverseGauss | ( | SquareMatrix< T, N > & | a, |
int | size | ||
) |
Definition at line 201 of file MatrixOperation.h.
References fabs().
Referenced by KineticModel< T >::NewtonsMethodBGK(), COMETModel< T >::NewtonsMethodBGK(), KineticModel< T >::NewtonsMethodESBGK(), and COMETModel< T >::NewtonsMethodESBGK().