initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / src / OpenFOAM / matrices / lduMatrix / preconditioners / diagonalPreconditioner / diagonalPreconditioner.H
blobcefce25301f369ed70546b0439022acca1c4c62c
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 1991-2009 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::diagonalPreconditioner
28 Description
29     Diagonal preconditioner for both symmetric and asymmetric matrices.
31     The reciprocal of the diagonal is calculated and stored for reuse
32     because on most systems '*' is faster than '/'.
34 SourceFiles
35     diagonalPreconditioner.C
37 \*---------------------------------------------------------------------------*/
39 #ifndef diagonalPreconditioner_H
40 #define diagonalPreconditioner_H
42 #include "lduMatrix.H"
44 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
46 namespace Foam
49 /*---------------------------------------------------------------------------*\
50                            Class diagonalPreconditioner Declaration
51 \*---------------------------------------------------------------------------*/
53 class diagonalPreconditioner
55     public lduMatrix::preconditioner
57     // Private data
59         //- The reciprocal diagonal
60         scalarField rD;
63     // Private Member Functions
65         //- Disallow default bitwise copy construct
66         diagonalPreconditioner(const diagonalPreconditioner&);
68         //- Disallow default bitwise assignment
69         void operator=(const diagonalPreconditioner&);
72 public:
74     //- Runtime type information
75     TypeName("diagonal");
78     // Constructors
80         //- Construct from matrix components and preconditioner solver controls
81         diagonalPreconditioner
82         (
83             const lduMatrix::solver&,
84             const dictionary& solverControlsUnused
85         );
88     // Destructor
90         virtual ~diagonalPreconditioner()
91         {}
94     // Member Functions
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;
104         //- Return wT the transpose-matrix preconditioned form of residual rT.
105         virtual void preconditionT
106         (
107             scalarField& wT,
108             const scalarField& rT,
109             const direction cmpt=0
110         ) const
111         {
112             return precondition(wT, rT, cmpt);
113         }
117 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
119 } // End namespace Foam
121 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
123 #endif
125 // ************************************************************************* //