mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
Creation of OpenFOAM-dev repository 15/04/2008
This commit is contained in:
169
src/OpenFOAM/fields/Fields/tensorField/tensorField.C
Normal file
169
src/OpenFOAM/fields/Fields/tensorField/tensorField.C
Normal file
@ -0,0 +1,169 @@
|
||||
/*---------------------------------------------------------------------------*\
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 1991-2007 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 2 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, write to the Free Software Foundation,
|
||||
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
|
||||
\*---------------------------------------------------------------------------*/
|
||||
|
||||
#include "tensorField.H"
|
||||
#include "transformField.H"
|
||||
|
||||
#define TEMPLATE
|
||||
#include "FieldFunctionsM.C"
|
||||
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
namespace Foam
|
||||
{
|
||||
|
||||
// * * * * * * * * * * * * * * * global functions * * * * * * * * * * * * * //
|
||||
|
||||
UNARY_FUNCTION(scalar, tensor, tr)
|
||||
UNARY_FUNCTION(sphericalTensor, tensor, sph)
|
||||
UNARY_FUNCTION(symmTensor, tensor, symm)
|
||||
UNARY_FUNCTION(symmTensor, tensor, twoSymm)
|
||||
UNARY_FUNCTION(tensor, tensor, skew)
|
||||
UNARY_FUNCTION(tensor, tensor, dev)
|
||||
UNARY_FUNCTION(tensor, tensor, dev2)
|
||||
UNARY_FUNCTION(scalar, tensor, det)
|
||||
|
||||
void inv(Field<tensor>& tf, const UList<tensor>& tf1)
|
||||
{
|
||||
if (!tf.size())
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
scalar scale = magSqr(tf1[0]);
|
||||
Vector<bool> removeCmpts
|
||||
(
|
||||
magSqr(tf1[0].xx())/scale < SMALL,
|
||||
magSqr(tf1[0].yy())/scale < SMALL,
|
||||
magSqr(tf1[0].zz())/scale < SMALL
|
||||
);
|
||||
|
||||
if (removeCmpts.x() || removeCmpts.y() || removeCmpts.z())
|
||||
{
|
||||
tensorField tf1Plus(tf1);
|
||||
|
||||
if (removeCmpts.x())
|
||||
{
|
||||
tf1Plus += tensor(1,0,0,0,0,0,0,0,0);
|
||||
}
|
||||
|
||||
if (removeCmpts.y())
|
||||
{
|
||||
tf1Plus += tensor(0,0,0,0,1,0,0,0,0);
|
||||
}
|
||||
|
||||
if (removeCmpts.z())
|
||||
{
|
||||
tf1Plus += tensor(0,0,0,0,0,0,0,0,1);
|
||||
}
|
||||
|
||||
TFOR_ALL_F_OP_FUNC_F(tensor, tf, =, inv, tensor, tf1Plus)
|
||||
|
||||
if (removeCmpts.x())
|
||||
{
|
||||
tf -= tensor(1,0,0,0,0,0,0,0,0);
|
||||
}
|
||||
|
||||
if (removeCmpts.y())
|
||||
{
|
||||
tf -= tensor(0,0,0,0,1,0,0,0,0);
|
||||
}
|
||||
|
||||
if (removeCmpts.z())
|
||||
{
|
||||
tf -= tensor(0,0,0,0,0,0,0,0,1);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
TFOR_ALL_F_OP_FUNC_F(tensor, tf, =, inv, tensor, tf1)
|
||||
}
|
||||
}
|
||||
|
||||
tmp<tensorField> inv(const UList<tensor>& tf)
|
||||
{
|
||||
tmp<tensorField> result(new tensorField(tf.size()));
|
||||
inv(result(), tf);
|
||||
return result;
|
||||
}
|
||||
|
||||
tmp<tensorField> inv(const tmp<tensorField>& tf)
|
||||
{
|
||||
tmp<tensorField> tRes = reuseTmp<tensor, tensor>::New(tf);
|
||||
inv(tRes(), tf());
|
||||
reuseTmp<tensor, tensor>::clear(tf);
|
||||
return tRes;
|
||||
}
|
||||
|
||||
UNARY_FUNCTION(vector, tensor, eigenValues)
|
||||
UNARY_FUNCTION(tensor, tensor, eigenVectors)
|
||||
|
||||
UNARY_FUNCTION(vector, symmTensor, eigenValues)
|
||||
UNARY_FUNCTION(tensor, symmTensor, eigenVectors)
|
||||
|
||||
|
||||
template<>
|
||||
tmp<Field<tensor> > transformFieldMask<tensor>
|
||||
(
|
||||
const symmTensorField& stf
|
||||
)
|
||||
{
|
||||
tmp<tensorField> tRes(new tensorField(stf.size()));
|
||||
tensorField& res = tRes();
|
||||
TFOR_ALL_F_OP_F(tensor, res, =, symmTensor, stf)
|
||||
return tRes;
|
||||
}
|
||||
|
||||
template<>
|
||||
tmp<Field<tensor> > transformFieldMask<tensor>
|
||||
(
|
||||
const tmp<symmTensorField>& tstf
|
||||
)
|
||||
{
|
||||
tmp<Field<tensor> > ret = transformFieldMask<tensor>(tstf());
|
||||
tstf.clear();
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
||||
// * * * * * * * * * * * * * * * global operators * * * * * * * * * * * * * //
|
||||
|
||||
UNARY_OPERATOR(vector, tensor, *, hdual)
|
||||
UNARY_OPERATOR(tensor, vector, *, hdual)
|
||||
|
||||
BINARY_OPERATOR(vector, vector, tensor, /, divide)
|
||||
BINARY_TYPE_OPERATOR(vector, vector, tensor, /, divide)
|
||||
|
||||
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
} // End namespace Foam
|
||||
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
#include "undefFieldFunctionsM.H"
|
||||
|
||||
// ************************************************************************* //
|
||||
Reference in New Issue
Block a user