/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | \\ / A nd | Copyright (C) 1991-2008 OpenCFD Ltd. \\/ 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 2 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, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA \*---------------------------------------------------------------------------*/ #include "scalarMatrices.H" #include "Swap.H" // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // template void Foam::solve ( scalarSquareMatrix& tmpMatrix, Field& sourceSol ) { label n = tmpMatrix.n(); // Elimination for (register label i=0; i largestCoeff) { iMax = j; largestCoeff = mag(tmpMatrix[iMax][i]); } } if (i != iMax) { //Info<< "Pivoted on " << i << " " << iMax << endl; for (register label k=i; k& sourceSol)") << "Singular Matrix" << exit(FatalError); } // Reduce to upper triangular form for (register label j=i+1; j=i; k--) { tmpMatrix[j][k] -= tmpMatrix[i][k]*tmpMatrix[j][i]/tmpMatrix[i][i]; } } } // Back-substitution for (register label j=n-1; j>=0; j--) { Type ntempvec = pTraits::zero; for (register label k=j+1; k void Foam::solve ( Field& psi, const scalarSquareMatrix& matrix, const Field& source ) { scalarSquareMatrix tmpMatrix = matrix; psi = source; solve(tmpMatrix, psi); } template void Foam::LUBacksubstitute ( const scalarSquareMatrix& luMatrix, const labelList& pivotIndices, Field& sourceSol ) { label n = luMatrix.n(); label ii = 0; for (register label i=0; i::zero) { ii = i+1; } sourceSol[i] = sum; } for (register label i=n-1; i>=0; i--) { Type sum = sourceSol[i]; const scalar* __restrict__ luMatrixi = luMatrix[i]; for (register label j=i+1; j void Foam::LUsolve ( scalarSquareMatrix& matrix, Field& sourceSol ) { labelList pivotIndices(matrix.n()); LUDecompose(matrix, pivotIndices); LUBacksubstitute(matrix, pivotIndices, sourceSol); } // ************************************************************************* //