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::genericPointPatchField
28 A generic version of calculatedPointPatchField, useful as a fallback for
29 handling unknown patch types.
32 genericPointPatchField.C
34 \*---------------------------------------------------------------------------*/
36 #ifndef genericPointPatchField_H
37 #define genericPointPatchField_H
39 #include "calculatedPointPatchField.H"
40 #include "HashPtrTable.H"
42 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
47 /*---------------------------------------------------------------------------*\
48 Class genericPointPatchField Declaration
49 \*---------------------------------------------------------------------------*/
52 class genericPointPatchField
54 public calculatedPointPatchField<Type>
61 HashPtrTable<scalarField> scalarFields_;
62 HashPtrTable<vectorField> vectorFields_;
63 HashPtrTable<sphericalTensorField> sphericalTensorFields_;
64 HashPtrTable<symmTensorField> symmTensorFields_;
65 HashPtrTable<tensorField> tensorFields_;
70 //- Runtime type information
76 //- Construct from patch and internal field
77 genericPointPatchField
80 const DimensionedField<Type, pointMesh>&
83 //- Construct from patch, internal field and dictionary
84 genericPointPatchField
87 const DimensionedField<Type, pointMesh>&,
91 //- Construct by mapping given patchField<Type> onto a new patch
92 genericPointPatchField
94 const genericPointPatchField<Type>&,
96 const DimensionedField<Type, pointMesh>&,
97 const pointPatchFieldMapper&
100 //- Construct and return a clone
101 virtual autoPtr<pointPatchField<Type> > clone() const
103 return autoPtr<pointPatchField<Type> >
105 new genericPointPatchField<Type>
112 //- Construct as copy setting internal field reference
113 genericPointPatchField
115 const genericPointPatchField<Type>&,
116 const DimensionedField<Type, pointMesh>&
119 //- Construct and return a clone setting internal field reference
120 virtual autoPtr<pointPatchField<Type> > clone
122 const DimensionedField<Type, pointMesh>& iF
125 return autoPtr<pointPatchField<Type> >
127 new genericPointPatchField<Type>
140 //- Map (and resize as needed) from self given a mapping object
143 const pointPatchFieldMapper&
146 //- Reverse map the given pointPatchField onto this pointPatchField
149 const pointPatchField<Type>&,
155 virtual void write(Ostream&) const;
159 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
161 } // End namespace Foam
163 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
166 # include "genericPointPatchField.C"
169 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
173 // ************************************************************************* //