DILUGaussSeidelSmoother.H
Go to the documentation of this file.
1/*---------------------------------------------------------------------------*\
2 ========= |
3 \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4 \\ / O peration |
5 \\ / A nd | www.openfoam.com
6 \\/ M anipulation |
7-------------------------------------------------------------------------------
8 Copyright (C) 2011 OpenFOAM Foundation
9 Copyright (C) 2019 OpenCFD Ltd.
10-------------------------------------------------------------------------------
11License
12 This file is part of OpenFOAM.
13
14 OpenFOAM is free software: you can redistribute it and/or modify it
15 under the terms of the GNU General Public License as published by
16 the Free Software Foundation, either version 3 of the License, or
17 (at your option) any later version.
18
19 OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
20 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
21 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
22 for more details.
23
24 You should have received a copy of the GNU General Public License
25 along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
26
27Class
28 Foam::DILUGaussSeidelSmoother
29
30Description
31 Combined DILU/GaussSeidel smoother for asymmetric matrices in which
32 DILU smoothing is followed by GaussSeidel to ensure that any "spikes"
33 created by the DILU sweeps are smoothed-out.
34
35SourceFiles
36 DILUGaussSeidelSmoother.C
37
38\*---------------------------------------------------------------------------*/
39
40#ifndef DILUGaussSeidelSmoother_H
41#define DILUGaussSeidelSmoother_H
42
43#include "DILUSmoother.H"
44#include "GaussSeidelSmoother.H"
45
46// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
47
48namespace Foam
49{
50
51/*---------------------------------------------------------------------------*\
52 Class DILUGaussSeidelSmoother Declaration
53\*---------------------------------------------------------------------------*/
56:
58{
59 // Private data
60
61 DILUSmoother diluSmoother_;
62
63 GaussSeidelSmoother gsSmoother_;
64
65
66public:
67
68 //- Runtime type information
69 TypeName("DILUGaussSeidel");
70
71
72 // Constructors
73
74 //- Construct from matrix components
76 (
77 const word& fieldName,
78 const lduMatrix& matrix,
82 );
83
84
85 // Member Functions
86
87 //- Smooth the solution for a given number of sweeps
88 virtual void smooth
89 (
91 const scalarField& Source,
92 const direction cmpt,
93 const label nSweeps
94 ) const;
95
96 //- Smooth the solution for a given number of sweeps
97 void scalarSmooth
98 (
100 const solveScalarField& source,
101 const direction cmpt,
102 const label nSweeps
103 ) const;
104};
105
106
107// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
108
109} // End namespace Foam
110
111// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
112
113#endif
114
115// ************************************************************************* //
Combined DILU/GaussSeidel smoother for asymmetric matrices in which DILU smoothing is followed by Gau...
virtual void smooth(solveScalarField &psi, const scalarField &Source, const direction cmpt, const label nSweeps) const
Smooth the solution for a given number of sweeps.
TypeName("DILUGaussSeidel")
Runtime type information.
void scalarSmooth(solveScalarField &psi, const solveScalarField &source, const direction cmpt, const label nSweeps) const
Smooth the solution for a given number of sweeps.
Simplified diagonal-based incomplete LU smoother for asymmetric matrices.
Definition: DILUSmoother.H:57
A field of fields is a PtrList of fields with reference counting.
Definition: FieldField.H:80
A lduMatrix::smoother for Gauss-Seidel.
Abstract base-class for lduMatrix smoothers.
Definition: lduMatrix.H:288
const FieldField< Field, scalar > & interfaceIntCoeffs() const noexcept
Definition: lduMatrix.H:401
const lduInterfaceFieldPtrsList & interfaces() const noexcept
Definition: lduMatrix.H:406
const lduMatrix & matrix() const noexcept
Definition: lduMatrix.H:391
const FieldField< Field, scalar > & interfaceBouCoeffs() const noexcept
Definition: lduMatrix.H:396
const word & fieldName() const noexcept
Definition: lduMatrix.H:386
lduMatrix is a general matrix class in which the coefficients are stored as three arrays,...
Definition: lduMatrix.H:84
A class for handling words, derived from Foam::string.
Definition: word.H:68
const volScalarField & psi
Namespace for OpenFOAM.
uint8_t direction
Definition: direction.H:56
#define TypeName(TypeNameString)
Declare a ClassName() with extra virtual type info.
Definition: typeInfo.H:73