/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | \\ / A nd | www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2011-2015 OpenFOAM Foundation Copyright (C) 2019 OpenCFD Ltd. ------------------------------------------------------------------------------- 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 . \*---------------------------------------------------------------------------*/ #include "DICSmoother.H" #include "DICPreconditioner.H" #include "PrecisionAdaptor.H" #include // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * // namespace Foam { defineTypeNameAndDebug(DICSmoother, 0); lduMatrix::smoother::addsymMatrixConstructorToTable addDICSmootherSymMatrixConstructorToTable_; } // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // Foam::DICSmoother::DICSmoother ( const word& fieldName, const lduMatrix& matrix, const FieldField& interfaceBouCoeffs, const FieldField& interfaceIntCoeffs, const lduInterfaceFieldPtrsList& interfaces, const dictionary& solverControls ) : lduMatrix::smoother ( fieldName, matrix, interfaceBouCoeffs, interfaceIntCoeffs, interfaces ), rD_(matrix_.diag().size()) { const scalarField& diag = matrix_.diag(); std::copy(diag.begin(), diag.end(), rD_.begin()); DICPreconditioner::calcReciprocalD(rD_, matrix_); } // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // void Foam::DICSmoother::smooth ( solveScalarField& psi, const scalarField& source, const direction cmpt, const label nSweeps ) const { const solveScalar* const __restrict__ rDPtr = rD_.begin(); const scalar* const __restrict__ upperPtr = matrix_.upper().begin(); const label* const __restrict__ uPtr = matrix_.lduAddr().upperAddr().begin(); const label* const __restrict__ lPtr = matrix_.lduAddr().lowerAddr().begin(); // Temporary storage for the residual solveScalarField rA(rD_.size()); solveScalar* __restrict__ rAPtr = rA.begin(); for (label sweep=0; sweep=0; facei--) { const label l = lPtr[facei]; rAPtr[l] -= rDPtr[l]*upperPtr[facei]*rAPtr[uPtr[facei]]; } psi += rA; } } void Foam::DICSmoother::scalarSmooth ( solveScalarField& psi, const solveScalarField& source, const direction cmpt, const label nSweeps ) const { smooth ( psi, ConstPrecisionAdaptor(source), cmpt, nSweeps ); } // ************************************************************************* //