initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / src / OpenFOAM / fields / pointPatchFields / basic / calculated / calculatedPointPatchField.C
blob5eef0a42e8aa785b42a80e09680275220d1f7507
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 1991-2009 OpenCFD Ltd.
6      \\/     M anipulation  |
7 -------------------------------------------------------------------------------
8 License
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
19     for more details.
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
25 \*---------------------------------------------------------------------------*/
27 #include "calculatedPointPatchField.H"
29 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
31 namespace Foam
34 template<class Type>
35 const word& pointPatchField<Type>::calculatedType()
37     return calculatedPointPatchField<Type>::typeName;
41 // * * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * //
43 template<class Type>
44 calculatedPointPatchField<Type>::calculatedPointPatchField
46     const pointPatch& p,
47     const DimensionedField<Type, pointMesh>& iF
50     pointPatchField<Type>(p, iF)
54 template<class Type>
55 calculatedPointPatchField<Type>::calculatedPointPatchField
57     const pointPatch& p,
58     const DimensionedField<Type, pointMesh>& iF,
59     const dictionary& dict
62     pointPatchField<Type>(p, iF, dict)
66 template<class Type>
67 calculatedPointPatchField<Type>::calculatedPointPatchField
69     const calculatedPointPatchField<Type>& ptf,
70     const pointPatch& p,
71     const DimensionedField<Type, pointMesh>& iF,
72     const pointPatchFieldMapper&
75     pointPatchField<Type>(p, iF)
79 template<class Type>
80 calculatedPointPatchField<Type>::calculatedPointPatchField
82     const calculatedPointPatchField<Type>& ptf,
83     const DimensionedField<Type, pointMesh>& iF
86     pointPatchField<Type>(ptf, iF)
90 template<class Type>
91 template<class Type2>
92 autoPtr<pointPatchField<Type> >
93 pointPatchField<Type>::NewCalculatedType
95     const pointPatchField<Type2>& pf
98     typename pointPatchConstructorTable::iterator patchTypeCstrIter =
99         pointPatchConstructorTablePtr_->find(pf.patch().type());
101     if (patchTypeCstrIter != pointPatchConstructorTablePtr_->end())
102     {
103         return autoPtr<pointPatchField<Type> >
104         (
105             patchTypeCstrIter()
106             (
107                 pf.patch(),
108                 Field<Type>::null()
109             )
110         );
111     }
112     else
113     {
114         return autoPtr<pointPatchField<Type> >
115         (
116             new calculatedPointPatchField<Type>
117             (
118                 pf.patch(),
119                 Field<Type>::null()
120             )
121         );
122     }
126 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
128 } // End namespace Foam
130 // ************************************************************************* //