BUG: UListIO: byteSize overflowing on really big faceLists
[OpenFOAM-2.0.x.git] / src / OpenFOAM / fields / Fields / symmTransformField / symmTransformField.C
blob47a22217b9c07fd0839b7854983fdda3215f6839
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 \*---------------------------------------------------------------------------*/
26 #include "symmTransformField.H"
27 #include "FieldM.H"
29 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
31 namespace Foam
34 // * * * * * * * * * * * * * * * global functions  * * * * * * * * * * * * * //
36 template<class Type>
37 void transform
39     Field<Type>& rtf,
40     const symmTensorField& trf,
41     const Field<Type>& tf
44     if (trf.size() == 1)
45     {
46         return transform(rtf, trf[0], tf);
47     }
48     else
49     {
50         TFOR_ALL_F_OP_FUNC_F_F
51         (
52             Type, rtf, =, transform, symmTensor, trf, Type, tf
53         )
54     }
58 template<class Type>
59 tmp<Field<Type> > transform
61     const symmTensorField& trf,
62     const Field<Type>& tf
65     tmp<Field<Type> > tranf(new Field<Type> (tf.size()));
66     transform(tranf(), trf, tf);
67     return tranf;
71 template<class Type>
72 tmp<Field<Type> > transform
74     const symmTensorField& trf,
75     const tmp<Field<Type> >& ttf
78     tmp<Field<Type> > tranf = reuseTmp<Type, Type>::New(ttf);
79     transform(tranf(), trf, ttf());
80     reuseTmp<Type, Type>::clear(ttf);
81     return tranf;
85 template<class Type>
86 tmp<Field<Type> > transform
88     const tmp<symmTensorField>& ttrf,
89     const Field<Type>& tf
92     tmp<Field<Type> > tranf(new Field<Type> (tf.size()));
93     transform(tranf(), ttrf(), tf);
94     ttrf.clear();
95     return tranf;
99 template<class Type>
100 tmp<Field<Type> > transform
102     const tmp<symmTensorField>& ttrf,
103     const tmp<Field<Type> >& ttf
106     tmp<Field<Type> > tranf = reuseTmp<Type, Type>::New(ttf);
107     transform(tranf(), ttrf(), ttf());
108     reuseTmp<Type, Type>::clear(ttf);
109     ttrf.clear();
110     return tranf;
114 template<class Type>
115 void transform
117     Field<Type>& rtf,
118     const symmTensor& t,
119     const Field<Type>& tf
122     TFOR_ALL_F_OP_FUNC_S_F(Type, rtf, =, transform, tensor, t, Type, tf)
126 template<class Type>
127 tmp<Field<Type> > transform
129     const symmTensor& t,
130     const Field<Type>& tf
133     tmp<Field<Type> > tranf(new Field<Type>(tf.size()));
134     transform(tranf(), t, tf);
135     return tranf;
139 template<class Type>
140 tmp<Field<Type> > transform
142     const symmTensor& t,
143     const tmp<Field<Type> >& ttf
146     tmp<Field<Type> > tranf = reuseTmp<Type, Type>::New(ttf);
147     transform(tranf(), t, ttf());
148     reuseTmp<Type, Type>::clear(ttf);
149     return tranf;
153 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
155 } // End namespace Foam
157 // ************************************************************************* //