VMTK
Public Types | Public Member Functions | Static Public Member Functions | Protected Member Functions | Protected Attributes | List of all members
vtkvmtkOpenNLLinearSystemSolver Class Reference

Solve a linear system of equations using open NL. More...

#include <vtkvmtkOpenNLLinearSystemSolver.h>

Inheritance diagram for vtkvmtkOpenNLLinearSystemSolver:
[legend]
Collaboration diagram for vtkvmtkOpenNLLinearSystemSolver:
[legend]

Public Types

enum  { VTK_VMTK_OPENNL_SOLVER_CG, VTK_VMTK_OPENNL_SOLVER_GMRES, VTK_VMTK_OPENNL_SOLVER_BICGSTAB }
 
enum  { VTK_VMTK_OPENNL_PRECONDITIONER_NONE, VTK_VMTK_OPENNL_PRECONDITIONER_JACOBI, VTK_VMTK_OPENNL_PRECONDITIONER_SSOR }
 
typedef vtkvmtkLinearSystemSolver Superclass
 
- Public Types inherited from vtkvmtkLinearSystemSolver
typedef vtkObject Superclass
 

Public Member Functions

virtual int IsA (const char *type)
 
vtkvmtkOpenNLLinearSystemSolverNewInstance () const
 
int Solve () override
 
virtual void SetSolverType (int)
 
virtual int GetSolverType ()
 
void SetSolverTypeToCG ()
 
void SetSolverTypeToGMRES ()
 
void SetSolverTypeToBiCGStab ()
 
virtual void SetPreconditionerType (int)
 
virtual int GetPreconditionerType ()
 
void SetPreconditionerTypeToNone ()
 
void SetPreconditionerTypeToJacobi ()
 
void SetPreconditionerTypeToSSOR ()
 
virtual void SetOmega (double)
 
virtual double GetOmega ()
 
- Public Member Functions inherited from vtkvmtkLinearSystemSolver
vtkvmtkLinearSystemSolverNewInstance () const
 
virtual void SetLinearSystem (vtkvmtkLinearSystem *)
 
virtual vtkvmtkLinearSystemGetLinearSystem ()
 
virtual void SetMaximumNumberOfIterations (int)
 
virtual int GetMaximumNumberOfIterations ()
 
virtual void SetConvergenceTolerance (double)
 
virtual double GetConvergenceTolerance ()
 

Static Public Member Functions

static vtkvmtkOpenNLLinearSystemSolverNew ()
 
static int IsTypeOf (const char *type)
 
static vtkvmtkOpenNLLinearSystemSolverSafeDownCast (vtkObjectBase *o)
 
- Static Public Member Functions inherited from vtkvmtkLinearSystemSolver
static vtkvmtkLinearSystemSolverNew ()
 
static int IsTypeOf (const char *type)
 
static vtkvmtkLinearSystemSolverSafeDownCast (vtkObjectBase *o)
 

Protected Member Functions

virtual vtkObjectBase * NewInstanceInternal () const
 
 vtkvmtkOpenNLLinearSystemSolver ()
 
 ~vtkvmtkOpenNLLinearSystemSolver ()
 
- Protected Member Functions inherited from vtkvmtkLinearSystemSolver
 vtkvmtkLinearSystemSolver ()
 
 ~vtkvmtkLinearSystemSolver ()
 

Protected Attributes

int SolverType
 
int PreconditionerType
 
double Omega
 
- Protected Attributes inherited from vtkvmtkLinearSystemSolver
vtkvmtkLinearSystemLinearSystem
 
int MaximumNumberOfIterations
 
double ConvergenceTolerance
 
int NumberOfIterations
 
double Residual
 

Detailed Description

Solve a linear system of equations using open NL.

Date
2006/04/06 16:46:43
Revision
1.3

There are a number of different solver types that can be used:

Definition at line 38 of file vtkvmtkOpenNLLinearSystemSolver.h.

Member Typedef Documentation

◆ Superclass

Definition at line 42 of file vtkvmtkOpenNLLinearSystemSolver.h.

Member Enumeration Documentation

◆ anonymous enum

anonymous enum

◆ anonymous enum

anonymous enum

Constructor & Destructor Documentation

◆ vtkvmtkOpenNLLinearSystemSolver()

vtkvmtkOpenNLLinearSystemSolver::vtkvmtkOpenNLLinearSystemSolver ( )
protected

◆ ~vtkvmtkOpenNLLinearSystemSolver()

vtkvmtkOpenNLLinearSystemSolver::~vtkvmtkOpenNLLinearSystemSolver ( )
inlineprotected

Definition at line 87 of file vtkvmtkOpenNLLinearSystemSolver.h.

87 {};

Member Function Documentation

◆ New()

static vtkvmtkOpenNLLinearSystemSolver* vtkvmtkOpenNLLinearSystemSolver::New ( )
static

◆ IsTypeOf()

static int vtkvmtkOpenNLLinearSystemSolver::IsTypeOf ( const char *  type)
static

◆ IsA()

virtual int vtkvmtkOpenNLLinearSystemSolver::IsA ( const char *  type)
virtual

Reimplemented from vtkvmtkLinearSystemSolver.

◆ SafeDownCast()

static vtkvmtkOpenNLLinearSystemSolver* vtkvmtkOpenNLLinearSystemSolver::SafeDownCast ( vtkObjectBase *  o)
static

◆ NewInstanceInternal()

virtual vtkObjectBase* vtkvmtkOpenNLLinearSystemSolver::NewInstanceInternal ( ) const
protectedvirtual

Reimplemented from vtkvmtkLinearSystemSolver.

◆ NewInstance()

vtkvmtkOpenNLLinearSystemSolver* vtkvmtkOpenNLLinearSystemSolver::NewInstance ( ) const

◆ Solve()

int vtkvmtkOpenNLLinearSystemSolver::Solve ( )
overridevirtual

Reimplemented from vtkvmtkLinearSystemSolver.

◆ SetSolverType()

virtual void vtkvmtkOpenNLLinearSystemSolver::SetSolverType ( int  )
virtual

◆ GetSolverType()

virtual int vtkvmtkOpenNLLinearSystemSolver::GetSolverType ( )
virtual

◆ SetSolverTypeToCG()

void vtkvmtkOpenNLLinearSystemSolver::SetSolverTypeToCG ( )
inline

◆ SetSolverTypeToGMRES()

void vtkvmtkOpenNLLinearSystemSolver::SetSolverTypeToGMRES ( )
inline

◆ SetSolverTypeToBiCGStab()

void vtkvmtkOpenNLLinearSystemSolver::SetSolverTypeToBiCGStab ( )
inline

◆ SetPreconditionerType()

virtual void vtkvmtkOpenNLLinearSystemSolver::SetPreconditionerType ( int  )
virtual

◆ GetPreconditionerType()

virtual int vtkvmtkOpenNLLinearSystemSolver::GetPreconditionerType ( )
virtual

◆ SetPreconditionerTypeToNone()

void vtkvmtkOpenNLLinearSystemSolver::SetPreconditionerTypeToNone ( )
inline

◆ SetPreconditionerTypeToJacobi()

void vtkvmtkOpenNLLinearSystemSolver::SetPreconditionerTypeToJacobi ( )
inline

◆ SetPreconditionerTypeToSSOR()

void vtkvmtkOpenNLLinearSystemSolver::SetPreconditionerTypeToSSOR ( )
inline

◆ SetOmega()

virtual void vtkvmtkOpenNLLinearSystemSolver::SetOmega ( double  )
virtual

◆ GetOmega()

virtual double vtkvmtkOpenNLLinearSystemSolver::GetOmega ( )
virtual

Member Data Documentation

◆ SolverType

int vtkvmtkOpenNLLinearSystemSolver::SolverType
protected

Definition at line 87 of file vtkvmtkOpenNLLinearSystemSolver.h.

◆ PreconditionerType

int vtkvmtkOpenNLLinearSystemSolver::PreconditionerType
protected

Definition at line 90 of file vtkvmtkOpenNLLinearSystemSolver.h.

◆ Omega

double vtkvmtkOpenNLLinearSystemSolver::Omega
protected

Definition at line 91 of file vtkvmtkOpenNLLinearSystemSolver.h.


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