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::surfaceNormalFixedValueFvPatchVectorField
29 Describes a surface normal vector boundary condition by its magnitude.
30 Note: The value is positive for outward-pointing vectors
33 surfaceNormalFixedValueFvPatchVectorField.C
35 \*---------------------------------------------------------------------------*/
37 #ifndef surfaceNormalFixedValueFvPatchVectorField_H
38 #define surfaceNormalFixedValueFvPatchVectorField_H
40 #include "fvPatchFields.H"
41 #include "fixedValueFvPatchFields.H"
43 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
48 /*---------------------------------------------------------------------------*\
49 Class surfaceNormalFixedValueFvPatch Declaration
50 \*---------------------------------------------------------------------------*/
52 class surfaceNormalFixedValueFvPatchVectorField
54 public fixedValueFvPatchVectorField
58 //- Surface-normal velocity value
59 scalarField refValue_;
64 //- Runtime type information
65 TypeName("surfaceNormalFixedValue");
70 //- Construct from patch and internal field
71 surfaceNormalFixedValueFvPatchVectorField
74 const DimensionedField<vector, volMesh>&
77 //- Construct from patch, internal field and dictionary
78 surfaceNormalFixedValueFvPatchVectorField
81 const DimensionedField<vector, volMesh>&,
85 //- Construct by mapping given
86 // surfaceNormalFixedValueFvPatchVectorField
88 surfaceNormalFixedValueFvPatchVectorField
90 const surfaceNormalFixedValueFvPatchVectorField&,
92 const DimensionedField<vector, volMesh>&,
93 const fvPatchFieldMapper&
97 surfaceNormalFixedValueFvPatchVectorField
99 const surfaceNormalFixedValueFvPatchVectorField&
102 //- Construct and return a clone
103 virtual tmp<fvPatchVectorField> clone() const
105 return tmp<fvPatchVectorField>
107 new surfaceNormalFixedValueFvPatchVectorField(*this)
111 //- Construct as copy setting internal field reference
112 surfaceNormalFixedValueFvPatchVectorField
114 const surfaceNormalFixedValueFvPatchVectorField&,
115 const DimensionedField<vector, volMesh>&
118 //- Construct and return a clone setting internal field reference
119 virtual tmp<fvPatchVectorField> clone
121 const DimensionedField<vector, volMesh>& iF
124 return tmp<fvPatchVectorField>
126 new surfaceNormalFixedValueFvPatchVectorField
140 //- Map (and resize as needed) from self given a mapping object
143 const fvPatchFieldMapper&
146 //- Reverse map the given fvPatchField onto this fvPatchField
149 const fvPatchVectorField&,
155 virtual void write(Ostream&) const;
159 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
161 } // End namespace Foam
163 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
167 // ************************************************************************* //