OpenFCST: The open-source Fuel Cell Simulation Toolbox
|
This class implements an interface to the sparse direct solver UMFPACK, see the link below http://www.cise.ufl.edu/research/sparse/umfpack/. More...
#include <linear_solvers.h>
Public Member Functions | |
Constructors, destructor, and initialization | |
SparseDirectUMFPACKSolver () | |
Constructor. More... | |
~SparseDirectUMFPACKSolver () | |
Destructor. More... | |
Solve function | |
template<typename MATRIX , typename VECTOR > | |
void | solve (const MATRIX &matrix, VECTOR &solution, const VECTOR &right_hand_side) const |
This function solves the linear system Ax = b where. More... | |
This class implements an interface to the sparse direct solver UMFPACK, see the link below http://www.cise.ufl.edu/research/sparse/umfpack/.
|
inline |
Constructor.
References FcstUtilities::log.
|
inline |
Destructor.
|
inline |
This function solves the linear system Ax = b where.
A
= matrix
,x
= solution
,b
= right_hand_side
.