Function1 is an abstract base-class of run-time selectable unary functions which may be composed of other Function1's allowing the user to specify complex functions of a single scalar variable, e.g. time. The implementations need not be a simple or continuous functions; interpolated tables and polynomials are also supported. In fact form of mapping between a single scalar input and a single primitive type output is supportable. The primary application of Function1 is in time-varying boundary conditions, it also used for other functions of time, e.g. injected mass is spray simulations but is not limited to functions of time.
193 lines
6 KiB
C++
193 lines
6 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::rotatingPressureInletOutletVelocityFvPatchVectorField
|
|
|
|
Group
|
|
grpInletBoundaryConditions grpOutletBoundaryConditions
|
|
|
|
Description
|
|
This velocity inlet/outlet boundary condition is applied to patches in a
|
|
rotating frame where the pressure is specified. A zero-gradient is applied
|
|
for outflow (as defined by the flux); for inflow, the velocity is obtained
|
|
from the flux with a direction normal to the patch faces.
|
|
|
|
\heading Patch usage
|
|
|
|
\table
|
|
Property | Description | Required | Default value
|
|
phi | flux field name | no | phi
|
|
tangentialVelocity | tangential velocity field | no |
|
|
omega | angular velocty of the frame [rad/s] | yes |
|
|
\endtable
|
|
|
|
Example of the boundary condition specification:
|
|
\verbatim
|
|
myPatch
|
|
{
|
|
type rotatingPressureInletOutletVelocity;
|
|
phi phi;
|
|
tangentialVelocity uniform (0 0 0);
|
|
omega 100;
|
|
}
|
|
\endverbatim
|
|
|
|
The \c omega entry is a Function1 type, able to describe time varying
|
|
functions.
|
|
|
|
Note
|
|
Sign conventions:
|
|
- positive flux (out of domain): apply zero-gradient condition
|
|
- negative flux (into of domain): derive from the flux in the patch-normal
|
|
direction
|
|
|
|
SeeAlso
|
|
Foam::pressureInletOutletVelocityFvPatchVectorField
|
|
|
|
SourceFiles
|
|
rotatingPressureInletOutletVelocityFvPatchVectorField.C
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#ifndef rotatingPressureInletOutletVelocityFvPatchVectorField_H
|
|
#define rotatingPressureInletOutletVelocityFvPatchVectorField_H
|
|
|
|
#include "fvPatchFields.H"
|
|
#include "pressureInletOutletVelocityFvPatchVectorField.H"
|
|
#include "Function1.H"
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
namespace Foam
|
|
{
|
|
|
|
/*---------------------------------------------------------------------------*\
|
|
Class rotatingPressureInletOutletVelocityFvPatchVectorField Declaration
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
class rotatingPressureInletOutletVelocityFvPatchVectorField
|
|
:
|
|
public pressureInletOutletVelocityFvPatchVectorField
|
|
{
|
|
// Private data
|
|
|
|
//- Angular velocity of the frame
|
|
autoPtr<Function1<vector>> omega_;
|
|
|
|
|
|
// Private Member Functions
|
|
|
|
//- Calculate the tangentialVelocity from omega
|
|
void calcTangentialVelocity();
|
|
|
|
|
|
public:
|
|
|
|
//- Runtime type information
|
|
TypeName("rotatingPressureInletOutletVelocity");
|
|
|
|
|
|
// Constructors
|
|
|
|
//- Construct from patch and internal field
|
|
rotatingPressureInletOutletVelocityFvPatchVectorField
|
|
(
|
|
const fvPatch&,
|
|
const DimensionedField<vector, volMesh>&
|
|
);
|
|
|
|
//- Construct from patch, internal field and dictionary
|
|
rotatingPressureInletOutletVelocityFvPatchVectorField
|
|
(
|
|
const fvPatch&,
|
|
const DimensionedField<vector, volMesh>&,
|
|
const dictionary&
|
|
);
|
|
|
|
//- Construct by mapping given
|
|
// rotatingPressureInletOutletVelocityFvPatchVectorField
|
|
// onto a new patch
|
|
rotatingPressureInletOutletVelocityFvPatchVectorField
|
|
(
|
|
const rotatingPressureInletOutletVelocityFvPatchVectorField&,
|
|
const fvPatch&,
|
|
const DimensionedField<vector, volMesh>&,
|
|
const fvPatchFieldMapper&
|
|
);
|
|
|
|
//- Construct as copy
|
|
rotatingPressureInletOutletVelocityFvPatchVectorField
|
|
(
|
|
const rotatingPressureInletOutletVelocityFvPatchVectorField&
|
|
);
|
|
|
|
//- Construct and return a clone
|
|
virtual tmp<fvPatchVectorField> clone() const
|
|
{
|
|
return tmp<fvPatchVectorField>
|
|
(
|
|
new rotatingPressureInletOutletVelocityFvPatchVectorField(*this)
|
|
);
|
|
}
|
|
|
|
//- Construct as copy setting internal field reference
|
|
rotatingPressureInletOutletVelocityFvPatchVectorField
|
|
(
|
|
const rotatingPressureInletOutletVelocityFvPatchVectorField&,
|
|
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 rotatingPressureInletOutletVelocityFvPatchVectorField
|
|
(
|
|
*this,
|
|
iF
|
|
)
|
|
);
|
|
}
|
|
|
|
|
|
// Member functions
|
|
|
|
//- Write
|
|
virtual void write(Ostream&) const;
|
|
};
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
} // End namespace Foam
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
#endif
|
|
|
|
// ************************************************************************* //
|