Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / src / OpenFOAM / fields / GeometricFields / transformGeometricField / transformGeometricField.H
blobad09614300975bd46b83367f57d06b9a4705a58f
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 2004-2010 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
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
19     for more details.
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/>.
24 InClass
25     Foam::transformGeometricField
27 Description
28     Spatial transformation functions for FieldFields.
30 SourceFiles
31     transformGeometricField.C
33 \*---------------------------------------------------------------------------*/
35 #ifndef transformGeometricField_H
36 #define transformGeometricField_H
38 #include "transform.H"
39 #include "GeometricField.H"
41 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
43 namespace Foam
46 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
48 template<class Type, template<class> class PatchField, class GeoMesh>
49 void transform
51     GeometricField<Type, PatchField, GeoMesh>&,
52     const GeometricField<tensor, PatchField, GeoMesh>&,
53     const GeometricField<Type, PatchField, GeoMesh>&
56 template<class Type, template<class> class PatchField, class GeoMesh>
57 tmp<GeometricField<Type, PatchField, GeoMesh> > transform
59     const GeometricField<tensor, PatchField, GeoMesh>&,
60     const GeometricField<Type, PatchField, GeoMesh>&
63 template<class Type, template<class> class PatchField, class GeoMesh>
64 tmp<GeometricField<Type, PatchField, GeoMesh> > transform
66     const GeometricField<tensor, PatchField, GeoMesh>&,
67     const tmp<GeometricField<Type, PatchField, GeoMesh> >&
70 template<class Type, template<class> class PatchField, class GeoMesh>
71 tmp<GeometricField<Type, PatchField, GeoMesh> > transform
73     const tmp<GeometricField<tensor, PatchField, GeoMesh> >&,
74     const GeometricField<Type, PatchField, GeoMesh>&
77 template<class Type, template<class> class PatchField, class GeoMesh>
78 tmp<GeometricField<Type, PatchField, GeoMesh> > transform
80     const tmp<GeometricField<tensor, PatchField, GeoMesh> >&,
81     const tmp<GeometricField<Type, PatchField, GeoMesh> >&
85 template<class Type, template<class> class PatchField, class GeoMesh>
86 void transform
88     GeometricField<Type, PatchField, GeoMesh>&,
89     const dimensionedTensor&,
90     const GeometricField<Type, PatchField, GeoMesh>&
93 template<class Type, template<class> class PatchField, class GeoMesh>
94 tmp<GeometricField<Type, PatchField, GeoMesh> > transform
96     const dimensionedTensor&,
97     const GeometricField<Type, PatchField, GeoMesh>&
100 template<class Type, template<class> class PatchField, class GeoMesh>
101 tmp<GeometricField<Type, PatchField, GeoMesh> > transform
103     const dimensionedTensor&,
104     const tmp<GeometricField<Type, PatchField, GeoMesh> >&
108 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
110 } // End namespace Foam
112 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
114 #ifdef NoRepository
115 #   include "transformGeometricField.C"
116 #endif
118 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
120 #endif
122 // ************************************************************************* //