Newer
Older
/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
-------------------------------------------------------------------------------
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 <http://www.gnu.org/licenses/>.
Tensor of scalars, i.e. Tensor<scalar>.
Analytical functions for the computation of complex eigenvalues and
complex eigenvectors from a given tensor.
See also
Test-Tensor.C
SourceFiles
tensor.C
\*---------------------------------------------------------------------------*/
#ifndef tensor_H
#define tensor_H
#include "Tensor.H"
#include "vector.H"
#include "sphericalTensor.H"
#include "symmTensor.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
namespace Foam
{
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
typedef Tensor<scalar> tensor;
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
//- Return complex eigenvalues of a given tensor
// \param T tensor
//
// \return Vector<complex> eigenvalues
Vector<complex> eigenValues(const tensor& T);
//- Return a complex eigenvector corresponding to
//- a given complex eigenvalue of a given tensor
// \param T tensor
// \param eVal complex eigenvalue
// \param standardBasis1 tensor orthogonal component 1
// \param standardBasis2 tensor orthogonal component 2
//
// \return Vector<complex> eigenvector
Vector<complex> eigenVector
andy
committed
(
const tensor& T,
const complex& eVal,
const Vector<complex>& standardBasis1,
const Vector<complex>& standardBasis2
andy
committed
);
//- Return complex eigenvectors corresponding to
//- given complex eigenvalues of a given tensor
// \param T tensor
// \param eVals complex eigenvalues
//
// \return Tensor<complex> eigenvectors, each row is an eigenvector
Tensor<complex> eigenVectors
andy
committed
(
const tensor& T,
const Vector<complex>& eVals
andy
committed
);
//- Return complex eigenvectors of a given tensor by computing
//- the complex eigenvalues of the tensor in the background
// \param T tensor
//
// \return Tensor<complex> complex eigenvectors, each row is an eigenvector
Tensor<complex> eigenVectors(const tensor& T);
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
} // End namespace Foam
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
#endif
// ************************************************************************* //