mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
FDICSmoother: New faster (slightly) version of DICSmoother
This commit is contained in:
@ -256,6 +256,7 @@ $(lduMatrix)/solvers/BICCG/BICCG.C
|
||||
$(lduMatrix)/smoothers/GaussSeidel/GaussSeidelSmoother.C
|
||||
$(lduMatrix)/smoothers/nonBlockingGaussSeidel/nonBlockingGaussSeidelSmoother.C
|
||||
$(lduMatrix)/smoothers/DIC/DICSmoother.C
|
||||
$(lduMatrix)/smoothers/FDIC/FDICSmoother.C
|
||||
$(lduMatrix)/smoothers/DICGaussSeidel/DICGaussSeidelSmoother.C
|
||||
$(lduMatrix)/smoothers/DILU/DILUSmoother.C
|
||||
$(lduMatrix)/smoothers/DILUGaussSeidel/DILUGaussSeidelSmoother.C
|
||||
|
||||
@ -98,17 +98,17 @@ void Foam::DICSmoother::smooth
|
||||
rA *= rD_;
|
||||
|
||||
register label nFaces = matrix_.upper().size();
|
||||
for (register label face=0; face<nFaces; face++)
|
||||
for (register label facei=0; facei<nFaces; facei++)
|
||||
{
|
||||
register label u = uPtr[face];
|
||||
rAPtr[u] -= rDPtr[u]*upperPtr[face]*rAPtr[lPtr[face]];
|
||||
register label u = uPtr[facei];
|
||||
rAPtr[u] -= rDPtr[u]*upperPtr[facei]*rAPtr[lPtr[facei]];
|
||||
}
|
||||
|
||||
register label nFacesM1 = nFaces - 1;
|
||||
for (register label face=nFacesM1; face>=0; face--)
|
||||
for (register label facei=nFacesM1; facei>=0; facei--)
|
||||
{
|
||||
register label l = lPtr[face];
|
||||
rAPtr[l] -= rDPtr[l]*upperPtr[face]*rAPtr[uPtr[face]];
|
||||
register label l = lPtr[facei];
|
||||
rAPtr[l] -= rDPtr[l]*upperPtr[facei]*rAPtr[uPtr[facei]];
|
||||
}
|
||||
|
||||
psi += rA;
|
||||
|
||||
149
src/OpenFOAM/matrices/lduMatrix/smoothers/FDIC/FDICSmoother.C
Normal file
149
src/OpenFOAM/matrices/lduMatrix/smoothers/FDIC/FDICSmoother.C
Normal file
@ -0,0 +1,149 @@
|
||||
/*---------------------------------------------------------------------------*\
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2011 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
This file is part of OpenFOAM.
|
||||
|
||||
OpenFOAM is free software: you can redistribute it and/or modify it
|
||||
under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
|
||||
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
\*---------------------------------------------------------------------------*/
|
||||
|
||||
#include "FDICSmoother.H"
|
||||
#include "FDICPreconditioner.H"
|
||||
|
||||
// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
|
||||
|
||||
namespace Foam
|
||||
{
|
||||
defineTypeNameAndDebug(FDICSmoother, 0);
|
||||
|
||||
lduMatrix::smoother::addsymMatrixConstructorToTable<FDICSmoother>
|
||||
addFDICSmootherSymMatrixConstructorToTable_;
|
||||
}
|
||||
|
||||
|
||||
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
|
||||
|
||||
Foam::FDICSmoother::FDICSmoother
|
||||
(
|
||||
const word& fieldName,
|
||||
const lduMatrix& matrix,
|
||||
const FieldField<Field, scalar>& interfaceBouCoeffs,
|
||||
const FieldField<Field, scalar>& interfaceIntCoeffs,
|
||||
const lduInterfaceFieldPtrsList& interfaces
|
||||
)
|
||||
:
|
||||
lduMatrix::smoother
|
||||
(
|
||||
fieldName,
|
||||
matrix,
|
||||
interfaceBouCoeffs,
|
||||
interfaceIntCoeffs,
|
||||
interfaces
|
||||
),
|
||||
rD_(matrix_.diag()),
|
||||
rDuUpper_(matrix_.upper().size()),
|
||||
rDlUpper_(matrix_.upper().size())
|
||||
{
|
||||
scalar* __restrict__ rDPtr = rD_.begin();
|
||||
scalar* __restrict__ rDuUpperPtr = rDuUpper_.begin();
|
||||
scalar* __restrict__ rDlUpperPtr = rDlUpper_.begin();
|
||||
|
||||
const label* const __restrict__ uPtr =
|
||||
matrix_.lduAddr().upperAddr().begin();
|
||||
const label* const __restrict__ lPtr =
|
||||
matrix_.lduAddr().lowerAddr().begin();
|
||||
const scalar* const __restrict__ upperPtr =
|
||||
matrix_.upper().begin();
|
||||
|
||||
register label nCells = rD_.size();
|
||||
register label nFaces = matrix_.upper().size();
|
||||
|
||||
for (register label face=0; face<nFaces; face++)
|
||||
{
|
||||
rDPtr[uPtr[face]] -= sqr(upperPtr[face])/rDPtr[lPtr[face]];
|
||||
}
|
||||
|
||||
// Generate reciprocal FDIC
|
||||
for (register label cell=0; cell<nCells; cell++)
|
||||
{
|
||||
rDPtr[cell] = 1.0/rDPtr[cell];
|
||||
}
|
||||
|
||||
for (register label face=0; face<nFaces; face++)
|
||||
{
|
||||
rDuUpperPtr[face] = rDPtr[uPtr[face]]*upperPtr[face];
|
||||
rDlUpperPtr[face] = rDPtr[lPtr[face]]*upperPtr[face];
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
|
||||
|
||||
void Foam::FDICSmoother::smooth
|
||||
(
|
||||
scalarField& psi,
|
||||
const scalarField& source,
|
||||
const direction cmpt,
|
||||
const label nSweeps
|
||||
) const
|
||||
{
|
||||
const scalar* const __restrict__ rDuUpperPtr = rDuUpper_.begin();
|
||||
const scalar* const __restrict__ rDlUpperPtr = rDlUpper_.begin();
|
||||
|
||||
const label* const __restrict__ uPtr =
|
||||
matrix_.lduAddr().upperAddr().begin();
|
||||
const label* const __restrict__ lPtr =
|
||||
matrix_.lduAddr().lowerAddr().begin();
|
||||
|
||||
// Temporary storage for the residual
|
||||
scalarField rA(rD_.size());
|
||||
scalar* __restrict__ rAPtr = rA.begin();
|
||||
|
||||
for (label sweep=0; sweep<nSweeps; sweep++)
|
||||
{
|
||||
matrix_.residual
|
||||
(
|
||||
rA,
|
||||
psi,
|
||||
source,
|
||||
interfaceBouCoeffs_,
|
||||
interfaces_,
|
||||
cmpt
|
||||
);
|
||||
|
||||
rA *= rD_;
|
||||
|
||||
register label nFaces = matrix_.upper().size();
|
||||
for (register label face=0; face<nFaces; face++)
|
||||
{
|
||||
rAPtr[uPtr[face]] -= rDuUpperPtr[face]*rAPtr[lPtr[face]];
|
||||
}
|
||||
|
||||
register label nFacesM1 = nFaces - 1;
|
||||
for (register label face=nFacesM1; face>=0; face--)
|
||||
{
|
||||
rAPtr[lPtr[face]] -= rDlUpperPtr[face]*rAPtr[uPtr[face]];
|
||||
}
|
||||
|
||||
psi += rA;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// ************************************************************************* //
|
||||
105
src/OpenFOAM/matrices/lduMatrix/smoothers/FDIC/FDICSmoother.H
Normal file
105
src/OpenFOAM/matrices/lduMatrix/smoothers/FDIC/FDICSmoother.H
Normal file
@ -0,0 +1,105 @@
|
||||
/*---------------------------------------------------------------------------*\
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2011 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
This file is part of OpenFOAM.
|
||||
|
||||
OpenFOAM is free software: you can redistribute it and/or modify it
|
||||
under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
|
||||
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
Class
|
||||
Foam::FDICSmoother
|
||||
|
||||
Description
|
||||
Simplified diagonal-based incomplete Cholesky smoother for symmetric
|
||||
matrices.
|
||||
|
||||
To improve efficiency, the residual is evaluated after every nSweeps
|
||||
sweeps.
|
||||
|
||||
SourceFiles
|
||||
FDICSmoother.C
|
||||
|
||||
\*---------------------------------------------------------------------------*/
|
||||
|
||||
#ifndef FDICSmoother_H
|
||||
#define FDICSmoother_H
|
||||
|
||||
#include "lduMatrix.H"
|
||||
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
namespace Foam
|
||||
{
|
||||
|
||||
/*---------------------------------------------------------------------------*\
|
||||
Class FDICSmoother Declaration
|
||||
\*---------------------------------------------------------------------------*/
|
||||
|
||||
class FDICSmoother
|
||||
:
|
||||
public lduMatrix::smoother
|
||||
{
|
||||
// Private data
|
||||
|
||||
//- The reciprocal preconditioned diagonal
|
||||
scalarField rD_;
|
||||
scalarField rDuUpper_;
|
||||
scalarField rDlUpper_;
|
||||
|
||||
|
||||
public:
|
||||
|
||||
//- Runtime type information
|
||||
TypeName("FDIC");
|
||||
|
||||
|
||||
// Constructors
|
||||
|
||||
//- Construct from matrix components
|
||||
FDICSmoother
|
||||
(
|
||||
const word& fieldName,
|
||||
const lduMatrix& matrix,
|
||||
const FieldField<Field, scalar>& interfaceBouCoeffs,
|
||||
const FieldField<Field, scalar>& interfaceIntCoeffs,
|
||||
const lduInterfaceFieldPtrsList& interfaces
|
||||
);
|
||||
|
||||
|
||||
// Member Functions
|
||||
|
||||
//- Smooth the solution for a given number of sweeps
|
||||
void smooth
|
||||
(
|
||||
scalarField& psi,
|
||||
const scalarField& source,
|
||||
const direction cmpt,
|
||||
const label nSweeps
|
||||
) const;
|
||||
};
|
||||
|
||||
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
} // End namespace Foam
|
||||
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
#endif
|
||||
|
||||
// ************************************************************************* //
|
||||
Reference in New Issue
Block a user