xc
Public Member Functions | Friends | List of all members

Lapack based full (dense) general matrix SOE solver. More...

#include <FullGenLinLapackSolver.h>

Inheritance diagram for XC::FullGenLinLapackSolver:
XC::FullGenLinSolver XC::LinearSOESolver XC::Solver XC::MovableObject XC::DistributedBase

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.
 
- Public Member Functions inherited from XC::FullGenLinSolver
virtual bool setLinearSOE (FullGenLinSOE &theSOE)
 
- Public Member Functions inherited from XC::LinearSOESolver
virtual ~LinearSOESolver (void)
 Destructor.
 
virtual double getDeterminant (void)
 Returns the determinant of the system matrix.
 
- Public Member Functions inherited from XC::MovableObject
 MovableObject (int classTag, int dbTag)
 Constructor. More...
 
 MovableObject (int classTag)
 Constructor. More...
 
 MovableObject (const MovableObject &)
 Copy constructor. Doesn't copy the dbTag.
 
MovableObjectoperator= (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 &param)
 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.
 
- Public Member Functions inherited from XC::DistributedBase
 DistributedBase (void)
 Constructor.
 
virtual DbTagDatagetDbTagData (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

- Protected Member Functions inherited from XC::FullGenLinSolver
 FullGenLinSolver (int classTag)
 Constructor. More...
 
virtual bool setLinearSOE (LinearSOE *theSOE)
 Sets the link to the soe object. More...
 
- Protected Member Functions inherited from XC::LinearSOESolver
 LinearSOESolver (int classTag=0)
 Constructor. More...
 
- Protected Member Functions inherited from XC::Solver
 Solver (int classTag)
 Constructor. More...
 
- Protected Attributes inherited from XC::FullGenLinSolver
FullGenLinSOEtheSOE
 

Detailed Description

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.

Member Function Documentation

§ setSize()

int XC::FullGenLinLapackSolver::setSize ( void  )
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.

§ solve()

int XC::FullGenLinLapackSolver::solve ( void  )
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.


The documentation for this class was generated from the following files: