161 lines
4.8 KiB
C++
161 lines
4.8 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::fixedDisplacementFvPatchVectorField
|
|
|
|
Description
|
|
Fixed displacement boundary condition with boundary non-orthogonal
|
|
correction for stress solvers.
|
|
Essentially fixedValue with non-orthogonal correction.
|
|
|
|
SourceFiles
|
|
fixedDisplacementFvPatchVectorField.C
|
|
|
|
Author
|
|
Zeljko Tukovic FSB Zagreb
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#ifndef fixedDisplacementFvPatchVectorField_H
|
|
#define fixedDisplacementFvPatchVectorField_H
|
|
|
|
#include "fvPatchFields.H"
|
|
#include "fixedValueFvPatchFields.H"
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
namespace Foam
|
|
{
|
|
|
|
/*---------------------------------------------------------------------------*\
|
|
Class fixedDisplacementFvPatch Declaration
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
class fixedDisplacementFvPatchVectorField
|
|
:
|
|
public fixedValueFvPatchVectorField
|
|
{
|
|
|
|
// Private Data
|
|
|
|
//- Name of the displacement field
|
|
const word fieldName_;
|
|
|
|
public:
|
|
|
|
//- Runtime type information
|
|
TypeName("fixedDisplacement");
|
|
|
|
|
|
// Constructors
|
|
|
|
//- Construct from patch and internal field
|
|
fixedDisplacementFvPatchVectorField
|
|
(
|
|
const fvPatch&,
|
|
const DimensionedField<vector, volMesh>&
|
|
);
|
|
|
|
//- Construct from patch, internal field and dictionary
|
|
fixedDisplacementFvPatchVectorField
|
|
(
|
|
const fvPatch&,
|
|
const DimensionedField<vector, volMesh>&,
|
|
const dictionary&
|
|
);
|
|
|
|
//- Construct by mapping given fixedDisplacementFvPatchVectorField
|
|
// onto a new patch
|
|
fixedDisplacementFvPatchVectorField
|
|
(
|
|
const fixedDisplacementFvPatchVectorField&,
|
|
const fvPatch&,
|
|
const DimensionedField<vector, volMesh>&,
|
|
const fvPatchFieldMapper&
|
|
);
|
|
|
|
//- Construct as copy
|
|
fixedDisplacementFvPatchVectorField
|
|
(
|
|
const fixedDisplacementFvPatchVectorField&
|
|
);
|
|
|
|
//- Construct and return a clone
|
|
virtual tmp<fvPatchVectorField> clone() const
|
|
{
|
|
return tmp<fvPatchVectorField>
|
|
(
|
|
new fixedDisplacementFvPatchVectorField(*this)
|
|
);
|
|
}
|
|
|
|
//- Construct as copy setting internal field reference
|
|
fixedDisplacementFvPatchVectorField
|
|
(
|
|
const fixedDisplacementFvPatchVectorField&,
|
|
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 fixedDisplacementFvPatchVectorField(*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;
|
|
|
|
//- 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
|
|
|
|
// ************************************************************************* //
|