initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / src / OpenFOAM / matrices / lduMatrix / preconditioners / DILUPreconditioner / DILUPreconditioner.H
blobcd7e2355a3963457d00ddfdef74b4e103a4b9a82
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::DILUPreconditioner
28 Description
29     Simplified diagonal-based incomplete LU preconditioner for asymmetric
30     matrices.  The reciprocal of the preconditioned diagonal is calculated
31     and stored.
33 SourceFiles
34     DILUPreconditioner.C
36 \*---------------------------------------------------------------------------*/
38 #ifndef DILUPreconditioner_H
39 #define DILUPreconditioner_H
41 #include "lduMatrix.H"
43 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
45 namespace Foam
48 /*---------------------------------------------------------------------------*\
49                            Class DILUPreconditioner Declaration
50 \*---------------------------------------------------------------------------*/
52 class DILUPreconditioner
54     public lduMatrix::preconditioner
56     // Private data
58         //- The reciprocal preconditioned diagonal
59         scalarField rD_;
62 public:
64     //- Runtime type information
65     TypeName("DILU");
68     // Constructors
70         //- Construct from matrix components and preconditioner solver controls
71         DILUPreconditioner
72         (
73             const lduMatrix::solver&,
74             const dictionary& solverControlsUnused
75         );
78     // Destructor
80         virtual ~DILUPreconditioner()
81         {}
84     // Member Functions
86         //- Calculate the reciprocal of the preconditioned diagonal
87         static void calcReciprocalD(scalarField& rD, const lduMatrix& matrix);
89         //- Return wA the preconditioned form of residual rA
90         virtual void precondition
91         (
92             scalarField& wA,
93             const scalarField& rA,
94             const direction cmpt=0
95         ) const;
97         //- Return wT the transpose-matrix preconditioned form of residual rT.
98         virtual void preconditionT
99         (
100             scalarField& wT,
101             const scalarField& rT,
102             const direction cmpt=0
103         ) const;
107 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
109 } // End namespace Foam
111 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
113 #endif
115 // ************************************************************************* //