Public Member Functions | Private Attributes | List of all members
oomph::AugmentedBlockPitchForkLinearSolver Class Reference

A custom linear solver class that is used to solve a block-factorised version of the PitchFork bifurcation detection problem. More...

#include <assembly_handler.h>

+ Inheritance diagram for oomph::AugmentedBlockPitchForkLinearSolver:

Public Member Functions

 AugmentedBlockPitchForkLinearSolver (LinearSolver *const linear_solver_pt)
 Constructor, inherits the original linear solver. More...
 
 ~AugmentedBlockPitchForkLinearSolver ()
 Destructor: clean up the allocated memory. More...
 
void solve (Problem *const &problem_pt, DoubleVector &result)
 The solve function uses the block factorisation. More...
 
void solve (DoubleMatrixBase *const &matrix_pt, const DoubleVector &rhs, DoubleVector &result)
 The linear-algebra-type solver does not make sense. The interface is deliberately broken. More...
 
void solve (DoubleMatrixBase *const &matrix_pt, const Vector< double > &rhs, Vector< double > &result)
 The linear-algebra-type solver does not make sense. The interface is deliberately broken. More...
 
void resolve (const DoubleVector &rhs, DoubleVector &result)
 The resolve function also uses the block factorisation. More...
 
LinearSolverlinear_solver_pt () const
 Access function to the original linear solver. More...
 
- Public Member Functions inherited from oomph::LinearSolver
 LinearSolver ()
 Empty constructor, initialise the member data. More...
 
 LinearSolver (const LinearSolver &dummy)=delete
 Broken copy constructor. More...
 
void operator= (const LinearSolver &)=delete
 Broken assignment operator. More...
 
virtual ~LinearSolver ()
 Empty virtual destructor. More...
 
void enable_doc_time ()
 Enable documentation of solve times. More...
 
void disable_doc_time ()
 Disable documentation of solve times. More...
 
bool is_doc_time_enabled () const
 Is documentation of solve times enabled? More...
 
bool is_resolve_enabled () const
 Boolean flag indicating if resolves are enabled. More...
 
virtual void enable_resolve ()
 Enable resolve (i.e. store matrix and/or LU decomposition, say) Virtual so it can be overloaded to perform additional tasks. More...
 
virtual void disable_resolve ()
 Disable resolve (i.e. store matrix and/or LU decomposition, say) This function simply resets an internal flag. It's virtual so it can be overloaded to perform additional tasks such as cleaning up memory that is only required for the resolve. More...
 
virtual void solve_transpose (Problem *const &problem_pt, DoubleVector &result)
 Solver: Takes pointer to problem and returns the results vector which contains the solution of the linear system defined by the problem's fully assembled Jacobian and residual vector (broken virtual). More...
 
virtual void solve_transpose (DoubleMatrixBase *const &matrix_pt, const DoubleVector &rhs, DoubleVector &result)
 Linear-algebra-type solver: Takes pointer to a matrix and rhs vector and returns the solution of the linear system. More...
 
virtual void solve_transpose (DoubleMatrixBase *const &matrix_pt, const Vector< double > &rhs, Vector< double > &result)
 Linear-algebra-type solver: Takes pointer to a matrix and rhs vector and returns the solution of the linear system. More...
 
virtual void resolve_transpose (const DoubleVector &rhs, DoubleVector &result)
 Solver: Resolve the system defined by the last assembled jacobian and the rhs vector. Solution is returned in the vector result. (broken virtual) More...
 
virtual void clean_up_memory ()
 Empty virtual function that can be overloaded in specific linear solvers to clean up any memory that may have been allocated (e.g. when preparing for a re-solve). More...
 
virtual double jacobian_setup_time () const
 returns the time taken to assemble the Jacobian matrix and residual vector (needs to be overloaded for each solver) More...
 
virtual double linear_solver_solution_time () const
 return the time taken to solve the linear system (needs to be overloaded for each linear solver) More...
 
virtual void enable_computation_of_gradient ()
 function to enable the computation of the gradient required for the globally convergent Newton method More...
 
void disable_computation_of_gradient ()
 function to disable the computation of the gradient required for the globally convergent Newton method More...
 
void reset_gradient ()
 function to reset the size of the gradient before each Newton solve More...
 
void get_gradient (DoubleVector &gradient)
 function to access the gradient, provided it has been computed More...
 
- Public Member Functions inherited from oomph::DistributableLinearAlgebraObject
 DistributableLinearAlgebraObject ()
 Default constructor - create a distribution. More...
 
 DistributableLinearAlgebraObject (const DistributableLinearAlgebraObject &matrix)=delete
 Broken copy constructor. More...
 
void operator= (const DistributableLinearAlgebraObject &)=delete
 Broken assignment operator. More...
 
virtual ~DistributableLinearAlgebraObject ()
 Destructor. More...
 
LinearAlgebraDistributiondistribution_pt () const
 access to the LinearAlgebraDistribution More...
 
unsigned nrow () const
 access function to the number of global rows. More...
 
unsigned nrow_local () const
 access function for the num of local rows on this processor. More...
 
unsigned nrow_local (const unsigned &p) const
 access function for the num of local rows on this processor. More...
 
unsigned first_row () const
 access function for the first row on this processor More...
 
unsigned first_row (const unsigned &p) const
 access function for the first row on this processor More...
 
bool distributed () const
 distribution is serial or distributed More...
 
bool distribution_built () const
 if the communicator_pt is null then the distribution is not setup then false is returned, otherwise return true More...
 
void build_distribution (const LinearAlgebraDistribution *const dist_pt)
 setup the distribution of this distributable linear algebra object More...
 
void build_distribution (const LinearAlgebraDistribution &dist)
 setup the distribution of this distributable linear algebra object More...
 

Private Attributes

LinearSolverLinear_solver_pt
 Pointer to the original linear solver. More...
 
ProblemProblem_pt
 Pointer to the problem, used in the resolve. More...
 
DoubleVectorAlpha_pt
 Pointer to the storage for the vector alpha. More...
 
DoubleVectorE_pt
 Pointer to the storage for the vector e. More...
 

Additional Inherited Members

- Protected Member Functions inherited from oomph::DistributableLinearAlgebraObject
void clear_distribution ()
 clear the distribution of this distributable linear algebra object More...
 
- Protected Attributes inherited from oomph::LinearSolver
bool Enable_resolve
 Boolean that indicates whether the matrix (or its factors, in the case of direct solver) should be stored so that the resolve function can be used. More...
 
bool Doc_time
 Boolean flag that indicates whether the time taken. More...
 
bool Compute_gradient
 flag that indicates whether the gradient required for the globally convergent Newton method should be computed or not More...
 
bool Gradient_has_been_computed
 flag that indicates whether the gradient was computed or not More...
 
DoubleVector Gradient_for_glob_conv_newton_solve
 DoubleVector storing the gradient for the globally convergent Newton method. More...
 

Detailed Description

A custom linear solver class that is used to solve a block-factorised version of the PitchFork bifurcation detection problem.

Definition at line 687 of file assembly_handler.h.

Constructor & Destructor Documentation

◆ AugmentedBlockPitchForkLinearSolver()

oomph::AugmentedBlockPitchForkLinearSolver::AugmentedBlockPitchForkLinearSolver ( LinearSolver *const  linear_solver_pt)
inline

Constructor, inherits the original linear solver.

Definition at line 703 of file assembly_handler.h.

◆ ~AugmentedBlockPitchForkLinearSolver()

oomph::AugmentedBlockPitchForkLinearSolver::~AugmentedBlockPitchForkLinearSolver ( )

Destructor: clean up the allocated memory.

Clean up the memory that may have been allocated by the solver.

Definition at line 2259 of file assembly_handler.cc.

References Alpha_pt, and E_pt.

Member Function Documentation

◆ linear_solver_pt()

LinearSolver* oomph::AugmentedBlockPitchForkLinearSolver::linear_solver_pt ( ) const
inline

Access function to the original linear solver.

Definition at line 743 of file assembly_handler.h.

References Linear_solver_pt.

Referenced by oomph::PitchForkHandler::~PitchForkHandler().

◆ resolve()

void oomph::AugmentedBlockPitchForkLinearSolver::resolve ( const DoubleVector rhs,
DoubleVector result 
)
virtual

◆ solve() [1/3]

void oomph::AugmentedBlockPitchForkLinearSolver::solve ( DoubleMatrixBase *const &  matrix_pt,
const DoubleVector rhs,
DoubleVector result 
)
inlinevirtual

The linear-algebra-type solver does not make sense. The interface is deliberately broken.

Reimplemented from oomph::LinearSolver.

Definition at line 716 of file assembly_handler.h.

◆ solve() [2/3]

void oomph::AugmentedBlockPitchForkLinearSolver::solve ( DoubleMatrixBase *const &  matrix_pt,
const Vector< double > &  rhs,
Vector< double > &  result 
)
inlinevirtual

The linear-algebra-type solver does not make sense. The interface is deliberately broken.

Reimplemented from oomph::LinearSolver.

Definition at line 728 of file assembly_handler.h.

◆ solve() [3/3]

void oomph::AugmentedBlockPitchForkLinearSolver::solve ( Problem *const &  problem_pt,
DoubleVector result 
)
virtual

Member Data Documentation

◆ Alpha_pt

DoubleVector* oomph::AugmentedBlockPitchForkLinearSolver::Alpha_pt
private

Pointer to the storage for the vector alpha.

Definition at line 696 of file assembly_handler.h.

Referenced by resolve(), solve(), and ~AugmentedBlockPitchForkLinearSolver().

◆ E_pt

DoubleVector* oomph::AugmentedBlockPitchForkLinearSolver::E_pt
private

Pointer to the storage for the vector e.

Definition at line 699 of file assembly_handler.h.

Referenced by solve(), and ~AugmentedBlockPitchForkLinearSolver().

◆ Linear_solver_pt

LinearSolver* oomph::AugmentedBlockPitchForkLinearSolver::Linear_solver_pt
private

Pointer to the original linear solver.

Definition at line 690 of file assembly_handler.h.

Referenced by linear_solver_pt(), resolve(), and solve().

◆ Problem_pt

Problem* oomph::AugmentedBlockPitchForkLinearSolver::Problem_pt
private

Pointer to the problem, used in the resolve.

Definition at line 693 of file assembly_handler.h.

Referenced by resolve(), and solve().


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