1 /*---------------------------------------------------------------------------*\
3 \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
5 \\ / A nd | Copyright (C) 2004-2010 OpenCFD Ltd.
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::transformGeometricField
28 Spatial transformation functions for FieldFields.
31 transformGeometricField.C
33 \*---------------------------------------------------------------------------*/
35 #ifndef transformGeometricField_H
36 #define transformGeometricField_H
38 #include "transform.H"
39 #include "GeometricField.H"
41 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
46 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
48 template<class Type, template<class> class PatchField, class GeoMesh>
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>
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 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
115 # include "transformGeometricField.C"
118 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
122 // ************************************************************************* //