Skip to content
Snippets Groups Projects
Commit 9711774b authored by Henry Weller's avatar Henry Weller
Browse files

floatTensor: Tensor<float>

parent 53c641e7
Branches
Tags
1 merge request!33Merge foundation
......@@ -52,6 +52,7 @@ primitives/Tensor/lists/tensorList.C
primitives/Vector/complexVector/complexVector.C
#if !defined(WM_SP)
primitives/Vector/floatVector/floatVector.C
primitives/Tensor/floatTensor/floatTensor.C
#endif
primitives/Vector/labelVector/labelVector.C
primitives/Vector/vector/vector.C
......
/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 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 <http://www.gnu.org/licenses/>.
\*---------------------------------------------------------------------------*/
#include "floatTensor.H"
// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
template<>
const char* const Foam::floatTensor::vsType::typeName = "floatTensor";
template<>
const char* const Foam::floatTensor::vsType::componentNames[] =
{
"xx", "xy", "xz",
"yx", "yy", "yz",
"zx", "zy", "zz"
};
template<>
const Foam::floatTensor Foam::floatTensor::vsType::zero
(
floatTensor::uniform(0)
);
template<>
const Foam::floatTensor Foam::floatTensor::vsType::one
(
floatTensor::uniform(1)
);
template<>
const Foam::floatTensor Foam::floatTensor::vsType::max
(
floatTensor::uniform(floatScalarVGREAT)
);
template<>
const Foam::floatTensor Foam::floatTensor::vsType::min
(
floatTensor::uniform(-floatScalarVGREAT)
);
template<>
const Foam::floatTensor Foam::floatTensor::vsType::rootMax
(
floatTensor::uniform(floatScalarROOTVGREAT)
);
template<>
const Foam::floatTensor Foam::floatTensor::vsType::rootMin
(
floatTensor::uniform(-floatScalarROOTVGREAT)
);
template<>
const Foam::floatTensor Foam::floatTensor::I
(
1, 0, 0,
0, 1, 0,
0, 0, 1
);
// ************************************************************************* //
/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 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 <http://www.gnu.org/licenses/>.
Typedef
Foam::floatTensor
Description
FloatTensor of scalars.
SourceFiles
floatTensor.C
\*---------------------------------------------------------------------------*/
#ifndef floatTensor_H
#define floatTensor_H
#include "Tensor.H"
#include "contiguous.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
namespace Foam
{
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
typedef Tensor<float> floatTensor;
//- Data associated with floatTensor type are contiguous
template<>
inline bool contiguous<floatTensor>() {return true;}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
} // End namespace Foam
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
#endif
// ************************************************************************* //
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment