mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
- provide single parameter constructor for which the rotation direction is determined based on the size/sign of the axis components. The direction is aligned with one of the global axes. - expose setTransform as a public method to allow the user to reset the axesRotation if desired.
252 lines
7.2 KiB
C++
252 lines
7.2 KiB
C++
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / 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 <http://www.gnu.org/licenses/>.
|
|
|
|
Class
|
|
Foam::cylindrical
|
|
|
|
Description
|
|
A local coordinate rotation.
|
|
|
|
The cell based rotational field can be created in two ways:
|
|
-# Each rotational tensor is defined with two vectors (\c dir and \c e3)
|
|
where <tt>dir = cellC - origin</tt> and \c e3 is the rotation axis.
|
|
Per each cell an axesRotation type of rotation is created
|
|
(cylindrical coordinates). For example:
|
|
\verbatim
|
|
cylindrical
|
|
{
|
|
type localAxes;
|
|
e3 (0 0 1);
|
|
}
|
|
\endverbatim
|
|
|
|
-# The rotational tensor field is provided at construction.
|
|
|
|
SourceFiles
|
|
cylindrical.C
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#ifndef cylindrical_H
|
|
#define cylindrical_H
|
|
|
|
#include "point.H"
|
|
#include "vector.H"
|
|
#include "coordinateRotation.H"
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
namespace Foam
|
|
{
|
|
|
|
/*---------------------------------------------------------------------------*\
|
|
Class cylindrical Declaration
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
class cylindrical
|
|
:
|
|
public coordinateRotation
|
|
{
|
|
// Private data
|
|
|
|
//- AutoPtr to transformation tensor
|
|
autoPtr<tensorField> Rptr_;
|
|
|
|
//- Origin of the coordinate system
|
|
point origin_;
|
|
|
|
//- Rotation axis
|
|
vector e3_;
|
|
|
|
|
|
// Private members
|
|
|
|
//- Init transformation tensor field
|
|
void init
|
|
(
|
|
const objectRegistry& obr,
|
|
const List<label>& cells = List<label>()
|
|
);
|
|
|
|
|
|
public:
|
|
|
|
//- Runtime type information
|
|
TypeName("cylindrical");
|
|
|
|
// Constructors
|
|
|
|
//- Construct as copy
|
|
cylindrical(const cylindrical& r);
|
|
|
|
//- Construct from tensor Field
|
|
explicit cylindrical(const tensorField& R);
|
|
|
|
//- Construct from dictionary - for API compatibility only
|
|
explicit cylindrical(const dictionary& dict);
|
|
|
|
//- Construct from dictionary and objectRegistry
|
|
cylindrical(const dictionary& dict, const objectRegistry& obr);
|
|
|
|
//- Construct from components for all cells
|
|
cylindrical
|
|
(
|
|
const objectRegistry& obr,
|
|
const vector& axis,
|
|
const point& origin
|
|
);
|
|
|
|
//- Construct from components for list of cells
|
|
cylindrical
|
|
(
|
|
const objectRegistry& obr,
|
|
const vector& axis,
|
|
const point& origin,
|
|
const List<label>& cells
|
|
);
|
|
|
|
//- Return clone
|
|
autoPtr<coordinateRotation> clone() const
|
|
{
|
|
return autoPtr<coordinateRotation>(new cylindrical(*this));
|
|
}
|
|
|
|
|
|
//- Destructor
|
|
virtual ~cylindrical()
|
|
{}
|
|
|
|
|
|
// Member Functions
|
|
|
|
//- Reset rotation to an identity rotation
|
|
virtual void clear();
|
|
|
|
//- Update the rotation for a list of cells
|
|
virtual void updateCells(const polyMesh& mesh, const labelList& cells);
|
|
|
|
//- Return local-to-global transformation tensor
|
|
virtual const tensor& R() const
|
|
{
|
|
NotImplemented;
|
|
return tensor::zero;
|
|
}
|
|
|
|
//- Return global-to-local transformation tensor
|
|
virtual const tensor& Rtr() const
|
|
{
|
|
NotImplemented;
|
|
return tensor::zero;
|
|
}
|
|
|
|
//- Return local Cartesian x-axis in global coordinates
|
|
virtual const vector e1() const
|
|
{
|
|
NotImplemented;
|
|
return vector::zero;
|
|
}
|
|
|
|
//- Return local Cartesian y-axis in global coordinates
|
|
virtual const vector e2() const
|
|
{
|
|
NotImplemented;
|
|
return vector::zero;
|
|
}
|
|
|
|
//- Return local Cartesian z-axis in global coordinates
|
|
virtual const vector e3() const
|
|
{
|
|
return e3_;
|
|
}
|
|
|
|
virtual const tensorField& Tr() const
|
|
{
|
|
return Rptr_();
|
|
}
|
|
|
|
//- Transform vectorField using transformation tensor field
|
|
virtual tmp<vectorField> transform(const vectorField& tf) const;
|
|
|
|
//- Transform vector using transformation tensor
|
|
virtual vector transform(const vector& v) const;
|
|
|
|
//- Transform vector using transformation tensor for component
|
|
virtual vector transform(const vector& v, const label cmptI) const;
|
|
|
|
//- Inverse transform vectorField using transformation tensor field
|
|
virtual tmp<vectorField> invTransform(const vectorField& vf) const;
|
|
|
|
//- Inverse transform vector using transformation tensor
|
|
virtual vector invTransform(const vector& v) const;
|
|
|
|
//- Inverse transform vector using transformation tensor for component
|
|
virtual vector invTransform(const vector& v, const label cmptI) const;
|
|
|
|
//- Return if the rotation is uniform
|
|
virtual bool uniform() const
|
|
{
|
|
return false;
|
|
}
|
|
|
|
//- Transform tensor field using transformation tensorField
|
|
virtual tmp<tensorField> transformTensor(const tensorField& tf) const;
|
|
|
|
//- Transform tensor using transformation tensorField
|
|
virtual tensor transformTensor(const tensor& t) const;
|
|
|
|
//- Transform tensor sub-field using transformation tensorField
|
|
virtual tmp<tensorField> transformTensor
|
|
(
|
|
const tensorField& tf,
|
|
const labelList& cellMap
|
|
) const;
|
|
|
|
//- Transform vectorField using transformation tensorField and return
|
|
// symmetrical tensorField
|
|
virtual tmp<symmTensorField> transformVector
|
|
(
|
|
const vectorField& vf
|
|
) const;
|
|
|
|
//- Transform vector using transformation tensor and return
|
|
// symmetrical tensor (R & st & R.T())
|
|
virtual symmTensor transformVector(const vector& v) const;
|
|
|
|
|
|
// Write
|
|
|
|
//- Write
|
|
virtual void write(Ostream&) const;
|
|
};
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
} // End namespace Foam
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
#endif
|
|
|
|
// ************************************************************************* //
|