mirror of
https://github.com/OpenFOAM/OpenFOAM-6.git
synced 2025-12-08 06:57:46 +00:00
floatTensor: Tensor<float>
This commit is contained in:
@ -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
|
||||
|
||||
86
src/OpenFOAM/primitives/Tensor/floatTensor/floatTensor.C
Normal file
86
src/OpenFOAM/primitives/Tensor/floatTensor/floatTensor.C
Normal file
@ -0,0 +1,86 @@
|
||||
/*---------------------------------------------------------------------------*\
|
||||
========= |
|
||||
\\ / 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
|
||||
);
|
||||
|
||||
|
||||
// ************************************************************************* //
|
||||
63
src/OpenFOAM/primitives/Tensor/floatTensor/floatTensor.H
Normal file
63
src/OpenFOAM/primitives/Tensor/floatTensor/floatTensor.H
Normal file
@ -0,0 +1,63 @@
|
||||
/*---------------------------------------------------------------------------*\
|
||||
========= |
|
||||
\\ / 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
|
||||
|
||||
// ************************************************************************* //
|
||||
Reference in New Issue
Block a user