/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 2011-2016 OpenFOAM Foundation
\\/ 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 .
\*---------------------------------------------------------------------------*/
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
template
inline Foam::RectangularMatrix::RectangularMatrix()
:
Matrix, Type>()
{}
template
inline Foam::RectangularMatrix::RectangularMatrix
(
const label m,
const label n
)
:
Matrix, Type>(m, n)
{}
template
template
inline Foam::RectangularMatrix::RectangularMatrix
(
const ConstMatrixBlock& block
)
:
Matrix, Type>(block)
{}
template
template
inline Foam::RectangularMatrix::RectangularMatrix
(
const MatrixBlock& block
)
:
Matrix, Type>(block)
{}
template
inline Foam::RectangularMatrix::RectangularMatrix
(
const label m,
const label n,
const zero
)
:
Matrix, Type>(m, n, Zero)
{}
template
inline Foam::RectangularMatrix::RectangularMatrix
(
const label n,
const Identity
)
:
Matrix, Type>(n, n, Zero)
{
for (label i = 0; i < n; i++)
{
this->operator()(i, i) = I;
}
}
template
inline Foam::RectangularMatrix::RectangularMatrix
(
const label m,
const label n,
const Type& t
)
:
Matrix, Type>(m, n, t)
{}
template
inline Foam::RectangularMatrix::RectangularMatrix
(
const SquareMatrix& SM
)
:
Matrix, Type>(SM)
{}
template
inline Foam::RectangularMatrix::RectangularMatrix(Istream& is)
:
Matrix, Type>(is)
{}
template
inline Foam::autoPtr>
Foam::RectangularMatrix::clone() const
{
return autoPtr>
(
new RectangularMatrix(*this)
);
}
// * * * * * * * * * * * * * * * Member Operators * * * * * * * * * * * * * //
template
void Foam::RectangularMatrix::operator=(const zero)
{
Matrix, Type>::operator=(Zero);
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
namespace Foam
{
// * * * * * * * * * * * * * * * Friend Functions * * * * * * * * * * * * * //
template
inline Foam::RectangularMatrix outer
(
const Field& f1,
const Field& f2
)
{
RectangularMatrix f1f2T(f1.size(), f2.size());
for (label i=0; i