initial commit for version 1.5.x patch release
[OpenFOAM-1.5.x.git] / src / OpenFOAM / matrices / lduMatrix / preconditioners / diagonalPreconditioner / diagonalPreconditioner.H
blobcc6f8f82b3406e3ab02d7ae476d66b211fc45279
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::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 data stream
81         diagonalPreconditioner
82         (
83             const lduMatrix::solver& sol,
84             Istream& preconditionerData
85         );
88     // Destructor
90         virtual ~diagonalPreconditioner()
91         {}
94     // Member Functions
96         //- Read and reset the preconditioner parameters from the given stream
97         virtual void read(Istream& preconditionerData);
99         //- Return wA the preconditioned form of residual rA
100         virtual void precondition
101         (
102             scalarField& wA,
103             const scalarField& rA,
104             const direction cmpt=0
105         ) const;
107         //- Return wT the transpose-matrix preconditioned form of
108         //  residual rT.
109         virtual void preconditionT
110         (
111             scalarField& wT,
112             const scalarField& rT,
113             const direction cmpt=0
114         ) const
115         {
116             return(precondition(wT, rT, cmpt));
117         }
121 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
123 } // End namespace Foam
125 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
127 #endif
129 // ************************************************************************* //