xc
|
Lapack based full (dense) general matrix SOE solver. More...
#include <FullGenLinLapackSolver.h>
Public Member Functions | |
int | solve (void) |
Computes the solution. More... | |
int | setSize (void) |
Sets the size of #iPiv from the size of the system of equations. More... | |
int | sendSelf (CommParameters &) |
Does nothing. | |
int | recvSelf (const CommParameters &) |
Does nothing. | |
![]() | |
virtual bool | setLinearSOE (FullGenLinSOE &theSOE) |
![]() | |
virtual | ~LinearSOESolver (void) |
Destructor. | |
virtual double | getDeterminant (void) |
Returns the determinant of the system matrix. | |
![]() | |
MovableObject (int classTag, int dbTag) | |
Constructor. More... | |
MovableObject (int classTag) | |
Constructor. More... | |
MovableObject (const MovableObject &) | |
Copy constructor. Doesn't copy the dbTag. | |
MovableObject & | operator= (const MovableObject &) |
Assignment operator. Doesn't copy the dbTag. | |
int | getClassTag (void) const |
Return the class identifier. | |
int | getDbTag (void) const |
Return the object identifier in the database. | |
int | getDbTag (CommParameters &) |
Return the object identifier in the database. | |
void | setDbTag (int dbTag) |
Sets the object identifier in the database. | |
void | setDbTag (CommParameters &) |
Sets the object identifier in the database if not already set. More... | |
virtual int | setParameter (const std::vector< std::string > &argv, Parameter ¶m) |
Sets the value param to the parameter argv . | |
virtual int | updateParameter (int parameterID, Information &info) |
Updates the parameter identified by parameterID with info . | |
virtual int | activateParameter (int parameterID) |
Activates the parameter identified by parameterID . | |
virtual int | setVariable (const std::string &variable, Information &) |
Set the value of the variable idenfified by var . | |
virtual int | getVariable (const std::string &variable, Information &) |
Return the value of the variable idenfified by var . | |
![]() | |
DistributedBase (void) | |
Constructor. | |
virtual DbTagData & | getDbTagData (void) const |
Returns a vector to store class dbTags. | |
const int & | getDbTagDataPos (const int &i) const |
Returns the data at the i-th position. | |
void | setDbTagDataPos (const int &i, const int &v) |
Sets the data at the i-th position. | |
void | inicComm (const int &dataSize) const |
Initializes communication. | |
Friends | |
class | FEM_ObjectBroker |
class | LinearSOE |
Additional Inherited Members | |
![]() | |
FullGenLinSolver (int classTag) | |
Constructor. More... | |
virtual bool | setLinearSOE (LinearSOE *theSOE) |
Sets the link to the soe object. More... | |
![]() | |
LinearSOESolver (int classTag=0) | |
Constructor. More... | |
![]() | |
Solver (int classTag) | |
Constructor. More... | |
![]() | |
FullGenLinSOE * | theSOE |
Lapack based full (dense) general matrix SOE solver.
Solver for a FullGenLinSOE object. It obtains the solution by making calls on the the LAPACK library. The class is defined to be a friend of the FullGenLinSOE class.
|
virtual |
Sets the size of #iPiv from the size of the system of equations.
Is used to construct a 1d integer array, #iPiv that is needed by the LAPACK solvers. It checks to see if current size of #iPiv is large enough, if not it resizes it. Returns 0 if sucessfull, prints a warning message and returns a -1 if not enough memory is available for this new array.
Implements XC::LinearSOESolver.
|
virtual |
Computes the solution.
First copies B into X and then solves the FullGenLinSOE system it is associated with (pointer kept by parent class) by calling the LAPACK routines dgesv(), if the system is marked as not having been factored, or dgetrs(), if system is marked as having been factored. If the solution is successfully obtained, i.e. the LAPACK routines return 0 in the INFO argument, it marks the system has having been factored and returns 0, otherwise it prints a warning message and returns INFO. The solve process changes A and X.
Implements XC::Solver.