/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | \\ / A nd | www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 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 . Application Test-DiagonalMatrix Description Tests for \c DiagonalMatrix constructors, member functions and global functions using \c floatScalar, \c doubleScalar, and \c complex base types. Cross-checks were obtained from 'NumPy 1.15.1' if no theoretical cross-check exists (like eigendecomposition relations), and were hard-coded for elementwise comparisons. \*---------------------------------------------------------------------------*/ #include "DiagonalMatrix.H" #include "RectangularMatrix.H" #include "scalar.H" #include "complex.H" #include "TestTools.H" using namespace Foam; // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // Create each constructor of DiagonalMatrix, and print output template void test_constructors(Type) { { Info<< "# Construct empty from size:" << nl; const DiagonalMatrix A(5); Info<< A << endl; } { Info<< "# Construct from size and initialise all elems to zero:" << nl; const DiagonalMatrix A(5, Zero); Info<< A << endl; } { Info<< "# Construct from size and initialise all elems to value" << nl; const DiagonalMatrix A(5, Type(8)); Info<< A << endl; } { Info<< "# Construct from the diagonal of a Matrix" << nl; const RectangularMatrix M(3, 5, Zero); const DiagonalMatrix A(M); Info<< A << endl; } } // Execute each member function of DiagonalMatrix, and print output template void test_member_funcs(Type) { DiagonalMatrix A(3, Zero); assignMatrix(A, {Type(1), Type(2), Type(-3)}); Info<< "# Operand: " << nl << " DiagonalMatrix = " << A << endl; { Info<< "# Return the matrix inverse into itself:" << nl; A.invert(); cmp ( " DiagonalMatrix.invert() = ", A, List({Type(1), Type(0.5), Type(-0.333333)}), 1e-6 ); } { Info<< "# Sort:" << nl; DiagonalMatrix B(5, Zero); assignMatrix(B, {Type(1), Type(2), Type(-3), Type(5), Type(1.01)}); auto descend = [&](Type a, Type b){ return mag(a) > mag(b); }; const List