Forward compatibility: flex
[foam-extend-3.2.git] / src / lduSolvers / lduPrecon / ILU0 / ILU0.C
blob4197ee4629c6367085558910d449bed9d44f0edd
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | foam-extend: Open Source CFD
4    \\    /   O peration     | Version:     3.2
5     \\  /    A nd           | Web:         http://www.foam-extend.org
6      \\/     M anipulation  | For copyright notice see file Copyright
7 -------------------------------------------------------------------------------
8 License
9     This file is part of foam-extend.
11     foam-extend 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 3 of the License, or (at your
14     option) any later version.
16     foam-extend is distributed in the hope that it will be useful, but
17     WITHOUT ANY WARRANTY; without even the implied warranty of
18     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19     General Public License for more details.
21     You should have received a copy of the GNU General Public License
22     along with foam-extend.  If not, see <http://www.gnu.org/licenses/>.
24 Class
25     ILU0
27 Description
28     Incmplete Cholesky preconditioning with no fill-in
30 Author
31     Hrvoje Jasak, Wikki Ltd.  All rights reserved
33 \*---------------------------------------------------------------------------*/
35 #include "ILU0.H"
36 #include "addToRunTimeSelectionTable.H"
38 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
40 namespace Foam
42     defineTypeNameAndDebug(ILU0, 0);
44     lduPreconditioner::
45         addasymMatrixConstructorToTable<ILU0>
46         addILU0ditionerAsymMatrixConstructorToTable_;
50 // * * * * * * * * * * * * * Private Member Functions  * * * * * * * * * * * //
52 void Foam::ILU0::calcPreconDiag()
54     if (matrix_.asymmetric())
55     {
56         const unallocLabelList& upperAddr = matrix_.lduAddr().upperAddr();
57         const unallocLabelList& lowerAddr = matrix_.lduAddr().lowerAddr();
59         // Get off-diagonal matrix coefficients
60         const scalarField& upper = matrix_.upper();
61         const scalarField& lower = matrix_.lower();
63         forAll (upper, coeffI)
64         {
65             preconDiag_[upperAddr[coeffI]] -=
66                 upper[coeffI]*lower[coeffI]/preconDiag_[lowerAddr[coeffI]];
67         }
68     }
70     // Invert the diagonal for future use
71     forAll (preconDiag_, i)
72     {
73         preconDiag_[i] = 1.0/preconDiag_[i];
74     }
78 // * * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * //
80 Foam::ILU0::ILU0
82     const lduMatrix& matrix,
83     const FieldField<Field, scalar>& coupleBouCoeffs,
84     const FieldField<Field, scalar>& coupleIntCoeffs,
85     const lduInterfaceFieldPtrsList& interfaces,
86     const dictionary& dict
89     lduPreconditioner
90     (
91         matrix,
92         coupleBouCoeffs,
93         coupleIntCoeffs,
94         interfaces
95     ),
96     preconDiag_(matrix_.diag())
98     calcPreconDiag();
102 Foam::ILU0::ILU0
104     const lduMatrix& matrix,
105     const FieldField<Field, scalar>& coupleBouCoeffs,
106     const FieldField<Field, scalar>& coupleIntCoeffs,
107     const lduInterfaceFieldPtrsList& interfaces
110     lduPreconditioner
111     (
112         matrix,
113         coupleBouCoeffs,
114         coupleIntCoeffs,
115         interfaces
116     ),
117     preconDiag_(matrix_.diag())
119     calcPreconDiag();
123 // * * * * * * * * * * * * * * * * Destructor  * * * * * * * * * * * * * * * //
125 Foam::ILU0::~ILU0()
129 // * * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * //
131 void Foam::ILU0::precondition
133     scalarField& x,
134     const scalarField& b,
135     const direction
136 ) const
138     forAll(x, i)
139     {
140         x[i] = b[i]*preconDiag_[i];
141     }
143     if (matrix_.asymmetric())
144     {
145         const unallocLabelList& upperAddr = matrix_.lduAddr().upperAddr();
146         const unallocLabelList& lowerAddr = matrix_.lduAddr().lowerAddr();
147         const unallocLabelList& losortAddr = matrix_.lduAddr().losortAddr();
149         // Get off-diagonal matrix coefficients
150         const scalarField& upper = matrix_.upper();
151         const scalarField& lower = matrix_.lower();
153         label losortCoeff;
155         forAll (lower, coeffI)
156         {
157             losortCoeff = losortAddr[coeffI];
159             x[upperAddr[losortCoeff]] -=
160                 preconDiag_[upperAddr[losortCoeff]]*
161                 lower[losortCoeff]*x[lowerAddr[losortCoeff]];
162         }
164         forAllReverse (upper, coeffI)
165         {
166             x[lowerAddr[coeffI]] -=
167                 preconDiag_[lowerAddr[coeffI]]*
168                 upper[coeffI]*x[upperAddr[coeffI]];
169         }
170     }
174 void Foam::ILU0::preconditionT
176     scalarField& x,
177     const scalarField& b,
178     const direction cmpt
179 ) const
181     forAll(x, i)
182     {
183         x[i] = b[i]*preconDiag_[i];
184     }
186     if (matrix_.asymmetric())
187     {
188         const unallocLabelList& upperAddr = matrix_.lduAddr().upperAddr();
189         const unallocLabelList& lowerAddr = matrix_.lduAddr().lowerAddr();
190         const unallocLabelList& losortAddr = matrix_.lduAddr().losortAddr();
192         // Get off-diagonal matrix coefficients
193         const scalarField& upper = matrix_.upper();
194         const scalarField& lower = matrix_.lower();
196         label losortCoeff;
198         forAll (lower, coeffI)
199         {
200             // Transpose multiplication.  HJ, 19/Jan/2009
201             x[upperAddr[coeffI]] -=
202                 preconDiag_[upperAddr[coeffI]]*
203                 upper[coeffI]*x[lowerAddr[coeffI]];
204         }
206         forAllReverse (upper, coeffI)
207         {
208             losortCoeff = losortAddr[coeffI];
210             // Transpose multiplication.  HJ, 19/Jan/2009
211             x[lowerAddr[losortCoeff]] -=
212                 preconDiag_[lowerAddr[losortCoeff]]*
213                 lower[losortCoeff]*x[upperAddr[losortCoeff]];
214         }
215     }
219 // ************************************************************************* //