1 /*---------------------------------------------------------------------------*\
3 \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
5 \\ / A nd | Copyright held by original author
7 -------------------------------------------------------------------------------
9 This file is part of OpenFOAM.
11 OpenFOAM is free software; you can redistribute it and/or modify it
12 under the terms of the GNU General Public License as published by the
13 Free Software Foundation; either version 2 of the License, or (at your
14 option) any later version.
16 OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
17 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
21 You should have received a copy of the GNU General Public License
22 along with OpenFOAM; if not, write to the Free Software Foundation,
23 Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
26 Foam::oscillatingVelocityPointPatchVectorField
29 Foam::oscillatingVelocityPointPatchVectorField
32 oscillatingVelocityPointPatchVectorField.C
34 \*---------------------------------------------------------------------------*/
36 #ifndef oscillatingVelocityPointPatchVectorField_H
37 #define oscillatingVelocityPointPatchVectorField_H
39 #include "fixedValuePointPatchFields.H"
41 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
46 /*---------------------------------------------------------------------------*\
47 Class oscillatingVelocityPointPatchVectorField Declaration
48 \*---------------------------------------------------------------------------*/
50 class oscillatingVelocityPointPatchVectorField
52 public FixedValuePointPatchField
71 //- Runtime type information
72 TypeName("oscillatingVelocity");
77 //- Construct from patch and internal field
78 oscillatingVelocityPointPatchVectorField
81 const DimensionedField<vector, pointMesh>&
84 //- Construct from patch, internal field and dictionary
85 oscillatingVelocityPointPatchVectorField
88 const DimensionedField<vector, pointMesh>&,
92 //- Construct by mapping given patchField<vector> onto a new patch
93 oscillatingVelocityPointPatchVectorField
95 const oscillatingVelocityPointPatchVectorField&,
97 const DimensionedField<vector, pointMesh>&,
98 const PointPatchFieldMapper&
101 //- Construct and return a clone
102 virtual autoPtr<pointPatchField<vector> > clone() const
104 return autoPtr<pointPatchField<vector> >
106 new oscillatingVelocityPointPatchVectorField(*this)
110 //- Construct as copy setting internal field reference
111 oscillatingVelocityPointPatchVectorField
113 const oscillatingVelocityPointPatchVectorField&,
114 const DimensionedField<vector, pointMesh>&
117 //- Construct and return a clone setting internal field reference
118 virtual autoPtr<pointPatchField<vector> > clone
120 const DimensionedField<vector, pointMesh>& iF
123 return autoPtr<pointPatchField<vector> >
125 new oscillatingVelocityPointPatchVectorField(*this, iF)
132 // Evaluation functions
134 //- Update the coefficients associated with the patch field
135 virtual void updateCoeffs();
139 virtual void write(Ostream&) const;
143 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
145 } // End namespace Foam
147 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
151 // ************************************************************************* //