179 lines
5.2 KiB
C++
179 lines
5.2 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
|
|
parabolicVelocityFvPatchVectorField
|
|
|
|
Description
|
|
Boundary condition specifies a parabolic velocity inlet profile
|
|
(fixed value), given maximum velocity value (peak of the parabola),
|
|
flow direction n and direction of the parabolic coordinate y
|
|
|
|
SourceFiles
|
|
transitionalParabolicVelocityFvPatchVectorField.C
|
|
|
|
Author
|
|
Hrvoje Jasak, Wikki Ltd. All rights reserved
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#ifndef transitionalParabolicVelocityFvPatchVectorField_H
|
|
#define transitionalParabolicVelocityFvPatchVectorField_H
|
|
|
|
#include "fvPatchFields.H"
|
|
#include "fixedValueFvPatchFields.H"
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
namespace Foam
|
|
{
|
|
|
|
/*---------------------------------------------------------------------------*\
|
|
Class parabolicVelocityFvPatchField Declaration
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
class transitionalParabolicVelocityFvPatchVectorField
|
|
:
|
|
public fixedValueFvPatchVectorField
|
|
{
|
|
// Private data
|
|
|
|
//- Peak velocity magnitude
|
|
scalar maxValue_;
|
|
|
|
//- Flow direction
|
|
vector n_;
|
|
|
|
//- Direction of the y-coordinate
|
|
vector y_;
|
|
|
|
//- Transition period
|
|
scalar transitionPeriod_;
|
|
|
|
//- Bound box min (must be specified duo to bug in parallel run)
|
|
vector boundBoxMin_;
|
|
|
|
//- Bound box max (must be specified duo to bug in parallel run)
|
|
vector boundBoxMax_;
|
|
|
|
public:
|
|
|
|
//- Runtime type information
|
|
TypeName("transitionalParabolicVelocity");
|
|
|
|
|
|
// Constructors
|
|
|
|
//- Construct from patch and internal field
|
|
transitionalParabolicVelocityFvPatchVectorField
|
|
(
|
|
const fvPatch&,
|
|
const DimensionedField<vector, volMesh>&
|
|
);
|
|
|
|
//- Construct from patch, internal field and dictionary
|
|
transitionalParabolicVelocityFvPatchVectorField
|
|
(
|
|
const fvPatch&,
|
|
const DimensionedField<vector, volMesh>&,
|
|
const dictionary&
|
|
);
|
|
|
|
//- Construct by mapping given
|
|
// transitionalParabolicVelocityFvPatchVectorField
|
|
// onto a new patch
|
|
transitionalParabolicVelocityFvPatchVectorField
|
|
(
|
|
const transitionalParabolicVelocityFvPatchVectorField&,
|
|
const fvPatch&,
|
|
const DimensionedField<vector, volMesh>&,
|
|
const fvPatchFieldMapper&
|
|
);
|
|
|
|
//- Construct and return a clone
|
|
virtual tmp<fvPatchVectorField> clone() const
|
|
{
|
|
return tmp<fvPatchVectorField>
|
|
(
|
|
new transitionalParabolicVelocityFvPatchVectorField(*this)
|
|
);
|
|
}
|
|
|
|
//- Construct as copy setting internal field reference
|
|
transitionalParabolicVelocityFvPatchVectorField
|
|
(
|
|
const transitionalParabolicVelocityFvPatchVectorField&,
|
|
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 transitionalParabolicVelocityFvPatchVectorField(*this, iF)
|
|
);
|
|
}
|
|
|
|
|
|
// Member functions
|
|
|
|
//- Return max value
|
|
scalar& maxValue()
|
|
{
|
|
return maxValue_;
|
|
}
|
|
|
|
//- Return flow direction
|
|
vector& n()
|
|
{
|
|
return n_;
|
|
}
|
|
|
|
//- Return y direction
|
|
vector& y()
|
|
{
|
|
return y_;
|
|
}
|
|
|
|
//- Update coefficients
|
|
virtual void updateCoeffs();
|
|
|
|
//- Write
|
|
virtual void write(Ostream&) const;
|
|
};
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
} // End namespace Foam
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
#endif
|
|
|
|
// ************************************************************************* //
|