Merge branch 'master' of ssh://git.code.sf.net/p/foam-extend/foam-extend-3.2
[foam-extend-3.2.git] / src / foam / matrices / blockLduMatrix / BlockLduMatrix / tensorBlockLduMatrix.H
blob028a61f275c24404cfe0c91e04d142b4947b2cb1
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     BlockLduMatrix
27 Description
28     Template specialisation for tensor block matrix
30 Author
31     Hrvoje Jasak, Wikki Ltd.  All rights reserved.
33 SourceFiles
34     tensorBlockLduMatrix.C
36 \*---------------------------------------------------------------------------*/
38 #ifndef tensorBlockLduMatrix_H
39 #define tensorBlockLduMatrix_H
41 #include "BlockLduMatrix.H"
43 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
45 namespace Foam
48 template<>
49 void BlockLduMatrix<tensor>::sumDiag();
51 template<>
52 void BlockLduMatrix<tensor>::negSumDiag();
54 template<>
55 void BlockLduMatrix<tensor>::check() const;
57 template<>
58 void BlockLduMatrix<tensor>::relax
60     const tensorField& x,
61     tensorField& b,
62     const scalar alpha
65 template<>
66 void BlockLduMatrix<tensor>::operator*=(const scalarField& sf);
68 template<>
69 void BlockLduMatrix<tensor>::AmulCore
71     tensorField& mul,
72     const tensorField& x
73 ) const;
75 template<>
76 void BlockLduMatrix<tensor>::TmulCore
78     tensorField& mul,
79     const tensorField& x
80 ) const;
82 template<>
83 void BlockLduMatrix<tensor>::segregateB
85     tensorField& mul,
86     const tensorField& x
87 ) const;
90 template<>
91 tmp<tensorField> BlockLduMatrix<tensor>::H(const tensorField& x) const;
93 template<>
94 tmp<tensorField> BlockLduMatrix<tensor>::faceH(const tensorField& x) const;
98 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
100 } // End namespace Foam
102 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
104 #endif
106 // ************************************************************************* //