FDICSmoother.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-2012 OpenFOAM Foundation
9  Copyright (C) 2019 OpenCFD Ltd.
10 -------------------------------------------------------------------------------
11 License
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 
27 Class
28  Foam::FDICSmoother
29 
30 Description
31  Simplified diagonal-based incomplete Cholesky smoother for symmetric
32  matrices.
33 
34  To improve efficiency, the residual is evaluated after every nSweeps
35  sweeps.
36 
37 SourceFiles
38  FDICSmoother.C
39 
40 \*---------------------------------------------------------------------------*/
41 
42 #ifndef FDICSmoother_H
43 #define FDICSmoother_H
44 
45 #include "lduMatrix.H"
46 
47 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
48 
49 namespace Foam
50 {
51 
52 /*---------------------------------------------------------------------------*\
53  Class FDICSmoother Declaration
54 \*---------------------------------------------------------------------------*/
55 
56 class FDICSmoother
57 :
58  public lduMatrix::smoother
59 {
60  // Private data
61 
62  //- The reciprocal preconditioned diagonal
63  solveScalarField rD_;
64  solveScalarField rDuUpper_;
65  solveScalarField rDlUpper_;
66 
67 
68 public:
69 
70  //- Runtime type information
71  TypeName("FDIC");
72 
73 
74  // Constructors
75 
76  //- Construct from matrix components
78  (
79  const word& fieldName,
80  const lduMatrix& matrix,
84  );
85 
86 
87  // Member Functions
88 
89  //- Smooth the solution for a given number of sweeps
90  void smooth
91  (
93  const scalarField& source,
94  const direction cmpt,
95  const label nSweeps
96  ) const;
97 
98  //- Smooth the solution for a given number of sweeps
99  virtual void scalarSmooth
100  (
102  const solveScalarField& source,
103  const direction cmpt,
104  const label nSweeps
105  ) const;
106 };
107 
108 
109 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
110 
111 } // End namespace Foam
112 
113 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
114 
115 #endif
116 
117 // ************************************************************************* //
Foam::FDICSmoother::smooth
void smooth(solveScalarField &psi, const scalarField &source, const direction cmpt, const label nSweeps) const
Smooth the solution for a given number of sweeps.
Definition: FDICSmoother.C:96
Foam::word
A class for handling words, derived from Foam::string.
Definition: word.H:65
Foam::FieldField
A field of fields is a PtrList of fields with reference counting.
Definition: FieldField.H:53
Foam::lduMatrix
lduMatrix is a general matrix class in which the coefficients are stored as three arrays,...
Definition: lduMatrix.H:83
Foam::lduMatrix::smoother::interfaces
const lduInterfaceFieldPtrsList & interfaces() const noexcept
Definition: lduMatrix.H:406
lduMatrix.H
Foam::Field< solveScalar >
Foam::UPtrList< const lduInterfaceField >
Foam::FDICSmoother::TypeName
TypeName("FDIC")
Runtime type information.
Foam::lduMatrix::smoother
Abstract base-class for lduMatrix smoothers.
Definition: lduMatrix.H:287
Foam
Namespace for OpenFOAM.
Definition: atmBoundaryLayer.C:33
Foam::lduMatrix::smoother::fieldName
const word & fieldName() const noexcept
Definition: lduMatrix.H:386
Foam::FDICSmoother
Simplified diagonal-based incomplete Cholesky smoother for symmetric matrices.
Definition: FDICSmoother.H:55
Foam::FDICSmoother::scalarSmooth
virtual void scalarSmooth(solveScalarField &psi, const solveScalarField &source, const direction cmpt, const label nSweeps) const
Smooth the solution for a given number of sweeps.
Definition: FDICSmoother.C:150
Foam::FDICSmoother::FDICSmoother
FDICSmoother(const word &fieldName, const lduMatrix &matrix, const FieldField< Field, scalar > &interfaceBouCoeffs, const FieldField< Field, scalar > &interfaceIntCoeffs, const lduInterfaceFieldPtrsList &interfaces)
Construct from matrix components.
Definition: FDICSmoother.C:47
Foam::direction
uint8_t direction
Definition: direction.H:52
Foam::lduMatrix::smoother::interfaceIntCoeffs
const FieldField< Field, scalar > & interfaceIntCoeffs() const noexcept
Definition: lduMatrix.H:401
Foam::lduMatrix::smoother::interfaceBouCoeffs
const FieldField< Field, scalar > & interfaceBouCoeffs() const noexcept
Definition: lduMatrix.H:396
psi
const volScalarField & psi
Definition: createFieldRefs.H:1
Foam::lduMatrix::smoother::matrix
const lduMatrix & matrix() const noexcept
Definition: lduMatrix.H:391