PBiCGStab.H
Go to the documentation of this file.
1 /*---------------------------------------------------------------------------*\
2  ========= |
3  \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4  \\ / O peration |
5  \\ / A nd | www.openfoam.com
6  \\/ M anipulation |
7 -------------------------------------------------------------------------------
8  Copyright (C) 2016 OpenFOAM Foundation
9  Copyright (C) 2019 OpenCFD Ltd.
10 -------------------------------------------------------------------------------
11 License
12  This file is part of OpenFOAM.
13 
14  OpenFOAM is free software: you can redistribute it and/or modify it
15  under the terms of the GNU General Public License as published by
16  the Free Software Foundation, either version 3 of the License, or
17  (at your option) any later version.
18 
19  OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
20  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
21  FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
22  for more details.
23 
24  You should have received a copy of the GNU General Public License
25  along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
26 
27 Class
28  Foam::PBiCGStab
29 
30 Description
31  Preconditioned bi-conjugate gradient stabilized solver for asymmetric
32  lduMatrices using a run-time selectable preconditioner.
33 
34  References:
35  \verbatim
36  Van der Vorst, H. A. (1992).
37  Bi-CGSTAB: A fast and smoothly converging variant of Bi-CG
38  for the solution of nonsymmetric linear systems.
39  SIAM Journal on scientific and Statistical Computing, 13(2), 631-644.
40 
41  Barrett, R., Berry, M. W., Chan, T. F., Demmel, J., Donato, J.,
42  Dongarra, J., Eijkhout, V., Pozo, R., Romine, C. & Van der Vorst, H.
43  (1994).
44  Templates for the solution of linear systems:
45  building blocks for iterative methods
46  (Vol. 43). Siam.
47  \endverbatim
48 
49 SourceFiles
50  PBiCGStab.C
51 
52 \*---------------------------------------------------------------------------*/
53 
54 #ifndef PBiCGStab_H
55 #define PBiCGStab_H
56 
57 #include "lduMatrix.H"
58 
59 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
60 
61 namespace Foam
62 {
63 
64 /*---------------------------------------------------------------------------*\
65  Class PBiCGStab Declaration
66 \*---------------------------------------------------------------------------*/
67 
68 class PBiCGStab
69 :
70  public lduMatrix::solver
71 {
72  // Private Member Data
73 
74  //- Cached preconditioner
75  mutable autoPtr<lduMatrix::preconditioner> preconPtr_;
76 
77 
78  // Private Member Functions
79 
80  //- No copy construct
81  PBiCGStab(const PBiCGStab&) = delete;
82 
83  //- No copy assignment
84  void operator=(const PBiCGStab&) = delete;
85 
86 
87 public:
88 
89  //- Runtime type information
90  TypeName("PBiCGStab");
91 
92 
93  // Constructors
94 
95  //- Construct from matrix components and solver data stream
96  PBiCGStab
97  (
98  const word& fieldName,
99  const lduMatrix& matrix,
103  const dictionary& solverControls
104  );
105 
106 
107  //- Destructor
108  virtual ~PBiCGStab() = default;
109 
110 
111  // Member Functions
112 
113  //- Solve the matrix with this solver
115  (
117  const solveScalarField& source,
118  const direction cmpt = 0
119  ) const;
120 
121  //- Solve the matrix with this solver
122  virtual solverPerformance solve
123  (
124  scalarField& psi,
125  const scalarField& source,
126  const direction cmpt=0
127  ) const;
128 };
129 
130 
131 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
132 
133 } // End namespace Foam
134 
135 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
136 
137 #endif
138 
139 // ************************************************************************* //
const FieldField< Field, scalar > & interfaceBouCoeffs() const noexcept
Definition: lduMatrix.H:311
uint8_t direction
Definition: direction.H:46
A list of keyword definitions, which are a keyword followed by a number of values (eg...
Definition: dictionary.H:129
const lduMatrix & matrix() const noexcept
Definition: lduMatrix.H:306
TypeName("PBiCGStab")
Runtime type information.
A field of fields is a PtrList of fields with reference counting.
Definition: FieldField.H:51
A class for handling words, derived from Foam::string.
Definition: word.H:63
SolverPerformance is the class returned by the LduMatrix solver containing performance statistics...
Abstract base-class for lduMatrix solvers.
Definition: lduMatrix.H:129
const lduInterfaceFieldPtrsList & interfaces() const noexcept
Definition: lduMatrix.H:321
virtual solverPerformance solve(scalarField &psi, const scalarField &source, const direction cmpt=0) const
Solve the matrix with this solver.
Definition: PBiCGStab.C:279
lduMatrix is a general matrix class in which the coefficients are stored as three arrays...
Definition: lduMatrix.H:79
const FieldField< Field, scalar > & interfaceIntCoeffs() const noexcept
Definition: lduMatrix.H:316
Pointer management similar to std::unique_ptr, with some additional methods and type checking...
Definition: HashPtrTable.H:48
const volScalarField & psi
virtual ~PBiCGStab()=default
Destructor.
Preconditioned bi-conjugate gradient stabilized solver for asymmetric lduMatrices using a run-time se...
Definition: PBiCGStab.H:63
const word & fieldName() const noexcept
Definition: lduMatrix.H:301
virtual solverPerformance scalarSolve(solveScalarField &psi, const solveScalarField &source, const direction cmpt=0) const
Solve the matrix with this solver.
Definition: PBiCGStab.C:66
Namespace for OpenFOAM.