ENH: autoLayerDriver: better layering information message
[OpenFOAM-2.0.x.git] / src / OpenFOAM / fields / Fields / transformField / transformField.H
blobec881641b7f5738309706524edbc72e61f1599a3
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 2011 OpenFOAM Foundation
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 InNamespace
25     Foam
27 Description
28     Spatial transformation functions for primitive fields.
30 SourceFiles
31     transformField.C
33 \*---------------------------------------------------------------------------*/
35 #ifndef transformField_H
36 #define transformField_H
38 #include "transform.H"
39 #include "quaternion.H"
40 #include "septernion.H"
41 #include "vectorField.H"
42 #include "tensorField.H"
44 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
46 namespace Foam
49 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
51 template<class Type>
52 void transform(Field<Type>&, const tensorField&, const Field<Type>&);
54 template<class Type>
55 tmp<Field<Type> > transform(const tensorField&, const Field<Type>&);
57 template<class Type>
58 tmp<Field<Type> > transform(const tensorField&, const tmp<Field<Type> >&);
60 template<class Type>
61 tmp<Field<Type> > transform(const tmp<tensorField>&, const Field<Type>&);
63 template<class Type>
64 tmp<Field<Type> > transform(const tmp<tensorField>&, const tmp<Field<Type> >&);
67 template<class Type>
68 void transform(Field<Type>&, const tensor&, const Field<Type>&);
70 template<class Type>
71 tmp<Field<Type> > transform(const tensor&, const Field<Type>&);
73 template<class Type>
74 tmp<Field<Type> > transform(const tensor&, const tmp<Field<Type> >&);
77 template<class Type1, class Type2>
78 tmp<Field<Type1> > transformFieldMask(const Field<Type2>&);
80 template<class Type1, class Type2>
81 tmp<Field<Type1> > transformFieldMask(const tmp<Field<Type2> >&);
84 template<>
85 tmp<Field<symmTensor> > transformFieldMask<symmTensor>
87     const tensorField&
90 template<>
91 tmp<Field<symmTensor> > transformFieldMask<symmTensor>
93     const tmp<tensorField>&
97 template<>
98 tmp<Field<sphericalTensor> > transformFieldMask<sphericalTensor>
100     const tensorField&
103 template<>
104 tmp<Field<sphericalTensor> > transformFieldMask<sphericalTensor>
106     const tmp<tensorField>&
110 //- Rotate given vectorField with the given quaternion
111 void transform(vectorField&, const quaternion&, const vectorField&);
113 //- Rotate given vectorField with the given quaternion
114 tmp<vectorField> transform(const quaternion&, const vectorField&);
116 //- Rotate given tmp<vectorField> with the given quaternion
117 tmp<vectorField> transform(const quaternion&, const tmp<vectorField>&);
120 //- Transform given vectorField with the given septernion
121 void transform(vectorField&, const septernion&, const vectorField&);
123 //- Transform given vectorField with the given septernion
124 tmp<vectorField> transform(const septernion&, const vectorField&);
126 //- Transform given tmp<vectorField> with the given septernion
127 tmp<vectorField> transform(const septernion&, const tmp<vectorField>&);
130 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
132 } // End namespace Foam
134 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
136 #ifdef NoRepository
137 #   include "transformFieldTemplates.C"
138 #endif
140 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
142 #endif
144 // ************************************************************************* //