174 lines
5 KiB
C
174 lines
5 KiB
C
|
/*---------------------------------------------------------------------------*\
|
||
|
========= |
|
||
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||
|
\\ / O peration |
|
||
|
\\ / A nd | Copyright held by original author
|
||
|
\\/ 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
|
||
|
|
||
|
Class
|
||
|
Foam::fixedRotationFvPatchVectorField
|
||
|
|
||
|
Description
|
||
|
Fixed rotation boundary condition with boundary non-orthogonal
|
||
|
correction for stress solvers.
|
||
|
|
||
|
SourceFiles
|
||
|
fixedRotationFvPatchVectorField.C
|
||
|
|
||
|
Author
|
||
|
Philip Cardiff
|
||
|
|
||
|
\*---------------------------------------------------------------------------*/
|
||
|
|
||
|
#ifndef fixedRotationFvPatchVectorField_H
|
||
|
#define fixedRotationFvPatchVectorField_H
|
||
|
|
||
|
#include "fvPatchFields.H"
|
||
|
#include "fixedValueFvPatchFields.H"
|
||
|
|
||
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||
|
|
||
|
namespace Foam
|
||
|
{
|
||
|
|
||
|
/*---------------------------------------------------------------------------*\
|
||
|
Class fixedRotationFvPatch Declaration
|
||
|
\*---------------------------------------------------------------------------*/
|
||
|
|
||
|
class fixedRotationFvPatchVectorField
|
||
|
:
|
||
|
public fixedValueFvPatchVectorField
|
||
|
{
|
||
|
|
||
|
// Private Data
|
||
|
|
||
|
//- Name of the displacement field
|
||
|
const word fieldName_;
|
||
|
|
||
|
//- Rotation in degrees
|
||
|
const scalar rotationAngle_;
|
||
|
|
||
|
//- Rotation in degrees
|
||
|
const vector rotationAxis_;
|
||
|
|
||
|
//- Origin of rotation
|
||
|
const vector rotationOrigin_;
|
||
|
|
||
|
|
||
|
public:
|
||
|
|
||
|
//- Runtime type information
|
||
|
TypeName("fixedRotation");
|
||
|
|
||
|
|
||
|
// Constructors
|
||
|
|
||
|
//- Construct from patch and internal field
|
||
|
fixedRotationFvPatchVectorField
|
||
|
(
|
||
|
const fvPatch&,
|
||
|
const DimensionedField<vector, volMesh>&
|
||
|
);
|
||
|
|
||
|
//- Construct from patch, internal field and dictionary
|
||
|
fixedRotationFvPatchVectorField
|
||
|
(
|
||
|
const fvPatch&,
|
||
|
const DimensionedField<vector, volMesh>&,
|
||
|
const dictionary&
|
||
|
);
|
||
|
|
||
|
//- Construct by mapping given fixedRotationFvPatchVectorField
|
||
|
// onto a new patch
|
||
|
fixedRotationFvPatchVectorField
|
||
|
(
|
||
|
const fixedRotationFvPatchVectorField&,
|
||
|
const fvPatch&,
|
||
|
const DimensionedField<vector, volMesh>&,
|
||
|
const fvPatchFieldMapper&
|
||
|
);
|
||
|
|
||
|
//- Construct as copy
|
||
|
fixedRotationFvPatchVectorField
|
||
|
(
|
||
|
const fixedRotationFvPatchVectorField&
|
||
|
);
|
||
|
|
||
|
//- Construct and return a clone
|
||
|
virtual tmp<fvPatchVectorField> clone() const
|
||
|
{
|
||
|
return tmp<fvPatchVectorField>
|
||
|
(
|
||
|
new fixedRotationFvPatchVectorField(*this)
|
||
|
);
|
||
|
}
|
||
|
|
||
|
//- Construct as copy setting internal field reference
|
||
|
fixedRotationFvPatchVectorField
|
||
|
(
|
||
|
const fixedRotationFvPatchVectorField&,
|
||
|
const DimensionedField<vector, volMesh>&
|
||
|
);
|
||
|
|
||
|
//- Construct and return a clone setting internal field reference
|
||
|
virtual tmp<fvPatchVectorField> clone
|
||
|
(
|
||
|
const DimensionedField<vector, volMesh>& iF
|
||
|
) const
|
||
|
{
|
||
|
return tmp<fvPatchVectorField>
|
||
|
(
|
||
|
new fixedRotationFvPatchVectorField(*this, iF)
|
||
|
);
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
// Member functions
|
||
|
|
||
|
// Evaluation functions
|
||
|
|
||
|
//- Return patch-normal gradient
|
||
|
//- with non-orthogonal correction regardless of whether snGrad
|
||
|
//- is corrected or not
|
||
|
virtual tmp<Field<vector> > snGrad() const;
|
||
|
|
||
|
//- Update the coefficients associated with the patch field
|
||
|
virtual void updateCoeffs();
|
||
|
|
||
|
//- Return the matrix source coefficients corresponding to the
|
||
|
// evaluation of the gradient of this patchField
|
||
|
virtual tmp<Field<vector> > gradientBoundaryCoeffs() const;
|
||
|
|
||
|
//- Write
|
||
|
virtual void write(Ostream&) const;
|
||
|
};
|
||
|
|
||
|
|
||
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||
|
|
||
|
} // End namespace Foam
|
||
|
|
||
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||
|
|
||
|
#endif
|
||
|
|
||
|
// ************************************************************************* //
|