initial commit for version 1.5.x patch release
[OpenFOAM-1.5.x.git] / src / OpenFOAM / matrices / lduMatrix / preconditioners / GAMGPreconditioner / GAMGPreconditioner.H
blob1e9bfae843aa186b1c448241a1222d2f345136a2
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 1991-2008 OpenCFD Ltd.
6      \\/     M anipulation  |
7 -------------------------------------------------------------------------------
8 License
9     This file is part of OpenFOAM.
11     OpenFOAM is free software; you can redistribute it and/or modify it
12     under the terms of the GNU General Public License as published by the
13     Free Software Foundation; either version 2 of the License, or (at your
14     option) any later version.
16     OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
17     ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18     FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
19     for more details.
21     You should have received a copy of the GNU General Public License
22     along with OpenFOAM; if not, write to the Free Software Foundation,
23     Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
25 Class
26     Foam::GAMGPreconditioner
28 Description
29     Geometric agglomerated algebraic multigrid preconditioner.
31 See Also
32     GAMGSolver for more details.
34 SourceFiles
35     GAMGPreconditioner.C
37 \*---------------------------------------------------------------------------*/
39 #ifndef GAMGPreconditioner_H
40 #define GAMGPreconditioner_H
42 #include "GAMGSolver.H"
44 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
46 namespace Foam
49 /*---------------------------------------------------------------------------*\
50                            Class GAMGPreconditioner Declaration
51 \*---------------------------------------------------------------------------*/
53 class GAMGPreconditioner
55     public GAMGSolver,
56     public lduMatrix::preconditioner
58     // Private data
60         //- Number of V-cycles to perform
61         label nVcycles_;
64     // Private member functions
66         //- Read control parameters from the control dictionary
67         void readControls();
70 public:
72     //- Runtime type information
73     TypeName("GAMG");
76     // Constructors
78         //- Construct for given solver and preconditioner data stream
79         GAMGPreconditioner
80         (
81             const lduMatrix::solver& sol,
82             Istream& preconditionerData
83         );
86     // Destructor
88         virtual ~GAMGPreconditioner();
91     // Member Functions
93         //- Read and reset the preconditioner parameters from the given stream
94         virtual void read(Istream& preconditionerData);
96         //- Return wA the preconditioned form of residual rA
97         virtual void precondition
98         (
99             scalarField& wA,
100             const scalarField& rA,
101             const direction cmpt=0
102         ) const;
106 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
108 } // End namespace Foam
110 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
112 #endif
114 // ************************************************************************* //