mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
- additional operators: + compound assignment + inner product: operator& + outer product: operator^ - additional functions: - MatrixBlock methods: subColumn, subRow, subMatrix - L2 norms for matrix or column - trace, diag, round, transpose - MatrixBlock methods: col(), block() are deprecated since their access patterns with (size, offset) are unnatural/unwieldy. - verifications by test/Matrix/Test-Matrix
137 lines
3.3 KiB
C
137 lines
3.3 KiB
C
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 2019 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 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 "MatrixTools.H"
|
|
|
|
// * * * * * * * * * * * * * * * Global Functions * * * * * * * * * * * * * * //
|
|
|
|
template<class Form1, class Form2, class Type>
|
|
bool Foam::MatrixTools::equal
|
|
(
|
|
const Matrix<Form1, Type>& A,
|
|
const Matrix<Form2, Type>& B,
|
|
const bool verbose,
|
|
const scalar relTol,
|
|
const scalar absTol
|
|
)
|
|
{
|
|
const label len = A.size();
|
|
|
|
if (len != B.size())
|
|
{
|
|
if (verbose)
|
|
{
|
|
Info<< "Matrices have different sizes: "
|
|
<< len << " vs " << B.size() << nl;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
auto iter1 = A.cbegin();
|
|
auto iter2 = B.cbegin();
|
|
|
|
for (label i = 0; i < len; ++i)
|
|
{
|
|
if ((absTol + relTol*mag(*iter2)) < Foam::mag(*iter1 - *iter2))
|
|
{
|
|
if (verbose)
|
|
{
|
|
Info<< "Matrix element " << i
|
|
<< " differs beyond tolerance: "
|
|
<< *iter1 << " vs " << *iter2 << nl;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
++iter1;
|
|
++iter2;
|
|
}
|
|
|
|
if (verbose)
|
|
{
|
|
Info<< "All elements equal within the tolerances" << nl;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
|
|
template<class Container>
|
|
Foam::Ostream& Foam::MatrixTools::printMatrix
|
|
(
|
|
Ostream& os,
|
|
const Container& mat
|
|
)
|
|
{
|
|
os << mat.m() << ' ' << mat.n();
|
|
|
|
if (mat.m() == 1)
|
|
{
|
|
// row-vector
|
|
os << " (";
|
|
for (label j = 0; j < mat.n(); ++j)
|
|
{
|
|
if (j) os << ' ';
|
|
os << mat(0,j);
|
|
}
|
|
os << ')' << nl;
|
|
}
|
|
else if (mat.n() == 1)
|
|
{
|
|
// col-vector
|
|
|
|
os << " (";
|
|
for (label i = 0; i < mat.m(); ++i)
|
|
{
|
|
if (i) os << ' ';
|
|
os << mat(i,0);
|
|
}
|
|
os << ')' << nl;
|
|
}
|
|
else
|
|
{
|
|
// Regular
|
|
|
|
os << nl << '(' << nl;
|
|
|
|
for (label i = 0; i < mat.m(); ++i)
|
|
{
|
|
os << '(';
|
|
for (label j = 0; j < mat.n(); ++j)
|
|
{
|
|
if (j) os << ' ';
|
|
os << mat(i,j);
|
|
}
|
|
os << ')' << nl;
|
|
}
|
|
os << ')' << nl;
|
|
}
|
|
|
|
return os;
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|