1 /*---------------------------------------------------------------------------*\
3 \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
5 \\ / A nd | Copyright (C) 2011 OpenFOAM Foundation
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
13 the Free Software Foundation, either version 3 of the License, or
14 (at your 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, see <http://www.gnu.org/licenses/>.
25 Foam::fixedNormalSlipPointPatchField
28 slip with user-specified normal
31 fixedNormalSlipPointPatchField.C
33 \*---------------------------------------------------------------------------*/
35 #ifndef fixedNormalSlipPointPatchField_H
36 #define fixedNormalSlipPointPatchField_H
38 #include "slipPointPatchField.H"
40 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
45 // Forward declaration of friend functions and operators
48 class fixedNormalSlipPointPatchField;
54 const fixedNormalSlipPointPatchField<Type>&
58 /*---------------------------------------------------------------------------*\
59 Class fixedNormalSlipPointPatchField Declaration
60 \*---------------------------------------------------------------------------*/
63 class fixedNormalSlipPointPatchField
65 public slipPointPatchField<Type>
69 //- User specified normal
75 //- Runtime type information
76 TypeName("fixedNormalSlip");
81 //- Construct from patch and internal field
82 fixedNormalSlipPointPatchField
85 const DimensionedField<Type, pointMesh>&
88 //- Construct from patch, internal field and dictionary
89 fixedNormalSlipPointPatchField
92 const DimensionedField<Type, pointMesh>&,
96 //- Construct by mapping given patchField<Type> onto a new patch
97 fixedNormalSlipPointPatchField
99 const fixedNormalSlipPointPatchField<Type>&,
101 const DimensionedField<Type, pointMesh>&,
102 const pointPatchFieldMapper&
105 //- Construct and return a clone
106 virtual autoPtr<pointPatchField<Type> > clone() const
108 return autoPtr<pointPatchField<Type> >
110 new fixedNormalSlipPointPatchField<Type>
117 //- Construct as copy setting internal field reference
118 fixedNormalSlipPointPatchField
120 const fixedNormalSlipPointPatchField<Type>&,
121 const DimensionedField<Type, pointMesh>&
124 //- Construct and return a clone setting internal field reference
125 virtual autoPtr<pointPatchField<Type> > clone
127 const DimensionedField<Type, pointMesh>& iF
130 return autoPtr<pointPatchField<Type> >
132 new fixedNormalSlipPointPatchField<Type>
142 // Evaluation functions
144 //- Update the patch field
145 virtual void evaluate
147 const Pstream::commsTypes commsType=Pstream::blocking
152 virtual void write(Ostream&) const;
156 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
158 } // End namespace Foam
160 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
163 # include "fixedNormalSlipPointPatchField.C"
166 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
170 // ************************************************************************* //