/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | \\ / A nd | www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2011-2016 OpenFOAM Foundation Copyright (C) 2019-2020 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 . \*---------------------------------------------------------------------------*/ #define CHECK_MATRIX_IS_SQUARE(a, b) \ if (a != b) \ { \ FatalErrorInFunction \ << "Attempt to create a non-square matrix (" \ << a << ", " << b << ')' << nl << abort(FatalError); \ } // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // template inline Foam::SquareMatrix::SquareMatrix(const label n) : Matrix, Type>(n, n) {} template inline Foam::SquareMatrix::SquareMatrix ( const label n, const zero ) : Matrix, Type>(n, n, Zero) {} template inline Foam::SquareMatrix::SquareMatrix ( const label n, const Type& val ) : Matrix, Type>(n, n, val) {} template template inline Foam::SquareMatrix::SquareMatrix ( const label n, const Identity ) : Matrix, Type>(n, n, Zero) { for (label i = 0; i < n; ++i) { this->operator()(i, i) = pTraits::one; } } template template inline Foam::SquareMatrix::SquareMatrix ( const labelPair& dims, const Identity ) : Matrix, Type>(dims, Zero) { CHECK_MATRIX_IS_SQUARE(dims.first(), dims.second()); for (label i = 0; i < dims.first(); ++i) { this->operator()(i, i) = pTraits::one; } } template inline Foam::SquareMatrix::SquareMatrix ( const labelPair& dims ) : Matrix, Type>(dims) { CHECK_MATRIX_IS_SQUARE(dims.first(), dims.second()); } template inline Foam::SquareMatrix::SquareMatrix ( const labelPair& dims, const zero ) : Matrix, Type>(dims, Zero) { CHECK_MATRIX_IS_SQUARE(dims.first(), dims.second()); } template inline Foam::SquareMatrix::SquareMatrix ( const labelPair& dims, const Type& val ) : Matrix, Type>(dims, val) { CHECK_MATRIX_IS_SQUARE(dims.first(), dims.second()); } template inline Foam::SquareMatrix::SquareMatrix ( const label m, const label n, const zero ) : Matrix, Type>(m, n, Zero) { CHECK_MATRIX_IS_SQUARE(m, n); } template template inline Foam::SquareMatrix::SquareMatrix ( const ConstMatrixBlock& mat ) : Matrix, Type>(mat) { // Check is square? } template template inline Foam::SquareMatrix::SquareMatrix ( const MatrixBlock& mat ) : Matrix, Type>(mat) { // Check is square? } template inline Foam::SquareMatrix::SquareMatrix ( const RectangularMatrix& mat ) : Matrix, Type>(mat) { CHECK_MATRIX_IS_SQUARE(mat.m(), mat.n()); } template inline Foam::SquareMatrix::SquareMatrix(Istream& is) : Matrix, Type>(is) { CHECK_MATRIX_IS_SQUARE(this->m(), this->n()); } template inline Foam::autoPtr> Foam::SquareMatrix::clone() const { return autoPtr>::New(*this); } // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // template inline void Foam::SquareMatrix::resize(const label m) { Matrix, Type>::resize(m, m); } template inline void Foam::SquareMatrix::resize(const label m, const label n) { if (m != n) { FatalErrorInFunction<< "Disallowed use of resize() for SquareMatrix" << abort(FatalError); } Matrix, Type>::resize(m, m); } template inline void Foam::SquareMatrix::setSize(const label m) { Matrix, Type>::resize(m, m); } template inline void Foam::SquareMatrix::shallowResize(const label m) { Matrix, Type>::shallowResize(m, m); } template inline bool Foam::SquareMatrix::symmetric() const { for (label n = 0; n < this->n() - 1; ++n) { for (label m = this->m() - 1; n < m; --m) { if (SMALL < mag((*this)(n, m) - (*this)(m, n))) { return false; } } } return true; } template inline bool Foam::SquareMatrix::tridiagonal() const { for (label i = 0; i < this->m(); ++i) { for (label j = 0; j < this->n(); ++j) { const Type& val = (*this)(i, j); if ((i == j) || (i - 1 == j) || (i + 1 == j)) { if (mag(val) < SMALL) { return false; } } else if (SMALL < mag(val)) { return false; } } } return true; } // * * * * * * * * * * * * * * * Member Operators * * * * * * * * * * * * * // template inline void Foam::SquareMatrix::operator=(const zero) { Matrix, Type>::operator=(Zero); } template inline void Foam::SquareMatrix::operator=(const Type& val) { Matrix, Type>::operator=(val); } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // namespace Foam { // * * * * * * * * * * * * * * * Friend Functions * * * * * * * * * * * * * // // Return the outer product of Field-Field as SquareMatrix template inline Foam::SquareMatrix symmOuter ( const Field& f1, const Field& f2 ) { SquareMatrix f1f2T(f1.size()); for (label i = 0; i < f1f2T.m(); ++i) { for (label j = 0; j < f1f2T.n(); ++j) { f1f2T(i, j) = f1[i]*f2[j]; } } return f1f2T; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // } // End namespace Foam // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // #undef CHECK_MATRIX_IS_SQUARE // ************************************************************************* //