initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / src / OpenFOAM / fields / GeometricFields / transformGeometricField / transformGeometricField.H
blob90770ebc3c0b2faea4e04af8855863a51a0097a5
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 InClass
26     Foam::transformGeometricField
28 Description
29     Spatial transformation functions for FieldFields.
31 SourceFiles
32     transformGeometricField.C
34 \*---------------------------------------------------------------------------*/
36 #ifndef transformGeometricField_H
37 #define transformGeometricField_H
39 #include "transform.H"
40 #include "GeometricField.H"
42 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
44 namespace Foam
47 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
49 template<class Type, template<class> class PatchField, class GeoMesh>
50 void transform
52     GeometricField<Type, PatchField, GeoMesh>&,
53     const GeometricField<tensor, PatchField, GeoMesh>&,
54     const GeometricField<Type, PatchField, GeoMesh>&
57 template<class Type, template<class> class PatchField, class GeoMesh>
58 tmp<GeometricField<Type, PatchField, GeoMesh> > transform
60     const GeometricField<tensor, PatchField, GeoMesh>&,
61     const GeometricField<Type, PatchField, GeoMesh>&
64 template<class Type, template<class> class PatchField, class GeoMesh>
65 tmp<GeometricField<Type, PatchField, GeoMesh> > transform
67     const GeometricField<tensor, PatchField, GeoMesh>&,
68     const tmp<GeometricField<Type, PatchField, GeoMesh> >&
71 template<class Type, template<class> class PatchField, class GeoMesh>
72 tmp<GeometricField<Type, PatchField, GeoMesh> > transform
74     const tmp<GeometricField<tensor, PatchField, GeoMesh> >&,
75     const GeometricField<Type, PatchField, GeoMesh>&
78 template<class Type, template<class> class PatchField, class GeoMesh>
79 tmp<GeometricField<Type, PatchField, GeoMesh> > transform
81     const tmp<GeometricField<tensor, PatchField, GeoMesh> >&,
82     const tmp<GeometricField<Type, PatchField, GeoMesh> >&
86 template<class Type, template<class> class PatchField, class GeoMesh>
87 void transform
89     GeometricField<Type, PatchField, GeoMesh>&,
90     const dimensionedTensor&,
91     const GeometricField<Type, PatchField, GeoMesh>&
94 template<class Type, template<class> class PatchField, class GeoMesh>
95 tmp<GeometricField<Type, PatchField, GeoMesh> > transform
97     const dimensionedTensor&,
98     const GeometricField<Type, PatchField, GeoMesh>&
101 template<class Type, template<class> class PatchField, class GeoMesh>
102 tmp<GeometricField<Type, PatchField, GeoMesh> > transform
104     const dimensionedTensor&,
105     const tmp<GeometricField<Type, PatchField, GeoMesh> >&
109 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
111 } // End namespace Foam
113 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
115 #ifdef NoRepository
116 #   include "transformGeometricField.C"
117 #endif
119 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
121 #endif
123 // ************************************************************************* //