FieldField.C
Go to the documentation of this file.
1 /*---------------------------------------------------------------------------*\
2  ========= |
3  \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4  \\ / O peration | Website: https://openfoam.org
5  \\ / A nd | Copyright (C) 2011-2019 OpenFOAM Foundation
6  \\/ M anipulation |
7 -------------------------------------------------------------------------------
8 License
9  This file is part of OpenFOAM.
10 
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.
15 
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.
20 
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/>.
23 
24 Description
25  Generic fieldField type.
26 
27 \*---------------------------------------------------------------------------*/
28 
29 #include "FieldField.H"
30 
31 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
32 
33 namespace Foam
34 {
35 
36 #ifdef FULLDEBUG
37 
38 template<template<class> class Field, class Type1, class Type2>
39 void checkFields
40 (
41  const FieldField<Field, Type1>& f1,
42  const FieldField<Field, Type2>& f2,
43  const char* op
44 )
45 {
46  if (f1.size() != f2.size())
47  {
49  << " FieldField<" << pTraits<Type1>::typeName
50  << "> f1(" << f1.size() << ')'
51  << " and FieldField<" << pTraits<Type2>::typeName
52  << "> f2(" << f2.size() << ')'
53  << endl << " for operation " << op
54  << abort(FatalError);
55  }
56 }
57 
58 template<template<class> class Field, class Type1, class Type2, class Type3>
59 void checkFields
60 (
61  const FieldField<Field, Type1>& f1,
62  const FieldField<Field, Type2>& f2,
63  const FieldField<Field, Type3>& f3,
64  const char* op
65 )
66 {
67  if (f1.size() != f2.size() || f1.size() != f3.size())
68  {
70  << " FieldField<" << pTraits<Type1>::typeName
71  << "> f1(" << f1.size() << ')'
72  << ", FieldField<" <<pTraits<Type2>::typeName
73  << "> f2(" << f2.size() << ')'
74  << " and FieldField<"<<pTraits<Type3>::typeName
75  << "> f3("<<f3.size() << ')'
76  << endl << " for operation " << op
77  << abort(FatalError);
78  }
79 }
80 
81 #else
82 
83 template<template<class> class Field, class Type1, class Type2>
85 (
88  const char* op
89 )
90 {}
91 
92 template<template<class> class Field, class Type1, class Type2, class Type3>
94 (
98  const char* op
99 )
100 {}
101 
102 #endif
103 
104 
105 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
106 
107 template<template<class> class Field, class Type>
109 :
110  PtrList<Field<Type>>()
111 {}
112 
113 
114 template<template<class> class Field, class Type>
116 :
117  PtrList<Field<Type>>(size)
118 {}
119 
120 
121 template<template<class> class Field, class Type>
123 (
124  const word& type,
126 )
127 :
128  PtrList<Field<Type>>(ff.size())
129 {
130  forAll(*this, i)
131  {
132  set(i, Field<Type>::New(type, ff[i]));
133  }
134 }
135 
136 
137 template<template<class> class Field, class Type>
139 :
140  tmp<FieldField<Field, Type>>::refCount(),
141  PtrList<Field<Type>>(f)
142 {}
143 
144 
145 template<template<class> class Field, class Type>
147 :
148  tmp<FieldField<Field, Type>>::refCount(),
149  PtrList<Field<Type>>(move(f))
150 {}
151 
152 
153 template<template<class> class Field, class Type>
155 :
156  PtrList<Field<Type>>(f, reuse)
157 {}
158 
159 
160 template<template<class> class Field, class Type>
162 :
163  PtrList<Field<Type>>(tl)
164 {}
165 
166 
167 template<template<class> class Field, class Type>
169 :
170  PtrList<Field<Type>>
171  (
172  const_cast<FieldField<Field, Type>&>(tf()),
173  tf.isTmp()
174  )
175 {
176  tf.clear();
177 }
178 
179 
180 template<template<class> class Field, class Type>
182 :
183  PtrList<Field<Type>>(is)
184 {}
185 
186 
187 template<template<class> class Field, class Type>
189 {
191 }
192 
193 
194 template<template<class> class Field, class Type>
195 template<class Type2>
197 (
199 )
200 {
202  (
203  new FieldField<Field, Type>(ff.size())
204  );
205 
206  forAll(*nffPtr, i)
207  {
208  nffPtr->set(i, Field<Type>::NewCalculatedType(ff[i]).ptr());
209  }
210 
211  return tmp<FieldField<Field, Type>>(nffPtr);
212 }
213 
214 
215 // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
216 
217 template<template<class> class Field, class Type>
219 {
220  forAll(*this, i)
221  {
222  this->operator[](i).negate();
223  }
224 }
225 
226 
227 template<template<class> class Field, class Type>
230 (
231  const direction d
232 ) const
233 {
235  (
237  NewCalculatedType(*this)
238  );
239 
240  ::Foam::component(Component.ref(), *this, d);
241 
242  return Component;
243 }
244 
245 
246 template<template<class> class Field, class Type>
248 (
249  const direction d,
251 )
252 {
253  forAll(*this, i)
254  {
255  this->operator[](i).replace(d, sf[i]);
256  }
257 }
258 
259 
260 template<template<class> class Field, class Type>
262 (
263  const direction d,
264  const cmptType& s
265 )
266 {
267  forAll(*this, i)
268  {
269  this->operator[](i).replace(d, s);
270  }
271 }
272 
273 
274 template<template<class> class Field, class Type>
276 {
277  tmp<FieldField<Field, Type>> transpose
278  (
280  );
281 
282  ::Foam::T(transpose.ref(), *this);
283  return transpose;
284 }
285 
286 
287 // * * * * * * * * * * * * * * * Member Operators * * * * * * * * * * * * * //
288 
289 template<template<class> class Field, class Type>
291 {
292  if (this == &f)
293  {
295  << "attempted assignment to self"
296  << abort(FatalError);
297  }
298 
299  forAll(*this, i)
300  {
301  this->operator[](i) = f[i];
302  }
303 }
304 
305 
306 template<template<class> class Field, class Type>
308 {
309  if (this == &f)
310  {
312  << "attempted assignment to self"
313  << abort(FatalError);
314  }
315 
316  PtrList<Field<Type>>::operator=(move(f));
317 }
318 
319 
320 template<template<class> class Field, class Type>
322 {
323  if (this == &(tf()))
324  {
326  << "attempted assignment to self"
327  << abort(FatalError);
328  }
329 
330  // This is dodgy stuff, don't try this at home.
331  FieldField* fieldPtr = tf.ptr();
332  PtrList<Field<Type>>::transfer(*fieldPtr);
333  delete fieldPtr;
334 }
335 
336 
337 template<template<class> class Field, class Type>
339 {
340  forAll(*this, i)
341  {
342  this->operator[](i) = t;
343  }
344 }
345 
346 
347 #define COMPUTED_ASSIGNMENT(TYPE, op) \
348  \
349 template<template<class> class Field, class Type> \
350 void FieldField<Field, Type>::operator op(const FieldField<Field, TYPE>& f) \
351 { \
352  forAll(*this, i) \
353  { \
354  this->operator[](i) op f[i]; \
355  } \
356 } \
357  \
358 template<template<class> class Field, class Type> \
359 void FieldField<Field, Type>::operator op \
360 ( \
361  const tmp<FieldField<Field, TYPE>>& tf \
362 ) \
363 { \
364  operator op(tf()); \
365  tf.clear(); \
366 } \
367  \
368 template<template<class> class Field, class Type> \
369 void FieldField<Field, Type>::operator op(const TYPE& t) \
370 { \
371  forAll(*this, i) \
372  { \
373  this->operator[](i) op t; \
374  } \
375 }
376 
381 
382 #undef COMPUTED_ASSIGNMENT
383 
384 
385 // * * * * * * * * * * * * * * * Ostream Operator * * * * * * * * * * * * * //
386 
387 template<template<class> class Field, class Type>
389 {
390  os << static_cast<const PtrList<Field<Type>>&>(f);
391  return os;
392 }
393 
394 
395 template<template<class> class Field, class Type>
397 {
398  os << tf();
399  tf.clear();
400  return os;
401 }
402 
403 
404 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
405 
406 } // End namespace Foam
407 
408 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
409 
410  #include "FieldFieldFunctions.C"
411 
412 // ************************************************************************* //
#define COMPUTED_ASSIGNMENT(TYPE, op)
Definition: FieldField.C:347
#define forAll(list, i)
Loop across all elements in list.
Definition: UList.H:434
Generic field type.
Definition: FieldField.H:77
tmp< FieldField< Field, Type > > T() const
Return the field transpose (only defined for second rank tensors)
Definition: FieldField.C:275
FieldField()
Construct null.
Definition: FieldField.C:108
tmp< FieldField< Field, Type > > clone() const
Clone.
Definition: FieldField.C:188
static tmp< FieldField< Field, Type > > NewCalculatedType(const FieldField< Field, Type2 > &ff)
Return a pointer to a new calculatedFvPatchFieldField created on.
Definition: FieldField.C:197
void replace(const direction, const FieldField< Field, cmptType > &)
Replace a component field of the field.
Definition: FieldField.C:248
pTraits< Type >::cmptType cmptType
Component type.
Definition: FieldField.H:82
void operator=(const FieldField< Field, Type > &)
Definition: FieldField.C:290
void negate()
Negate this field.
Definition: FieldField.C:218
tmp< FieldField< Field, cmptType > > component(const direction) const
Return a component field of the field.
Definition: FieldField.C:230
Pre-declare SubField and related Field type.
Definition: Field.H:82
An Istream is an abstract base class for all input systems (streams, files, token lists etc)....
Definition: Istream.H:60
void clear()
Clear the list, i.e. set size to zero.
Definition: ListI.H:125
An Ostream is an abstract base class for all output systems (streams, files, token lists,...
Definition: Ostream.H:57
A templated 1D list of pointers to objects of type <T>, where the size of the array is known and used...
Definition: PtrList.H:75
bool set(const label) const
Is element set.
Definition: PtrListI.H:65
Reference counter for various OpenFOAM components.
Definition: refCount.H:50
A class for managing temporary objects.
Definition: tmp.H:55
T & ref() const
Return non-const reference or generate a fatal error.
Definition: tmpI.H:181
A class for handling words, derived from string.
Definition: word.H:62
#define FatalErrorInFunction
Report an error message using Foam::FatalError.
Definition: error.H:306
volScalarField sf(fieldObject, mesh)
const tensorField & tf
gmvFile<< "tracers "<< particles.size()<< nl;forAllConstIter(Cloud< passiveParticle >, particles, iter){ gmvFile<< iter().position().x()<< " ";}gmvFile<< nl;forAllConstIter(Cloud< passiveParticle >, particles, iter){ gmvFile<< iter().position().y()<< " ";}gmvFile<< nl;forAllConstIter(Cloud< passiveParticle >, particles, iter){ gmvFile<< iter().position().z()<< " ";}gmvFile<< nl;forAll(lagrangianScalarNames, i){ word name=lagrangianScalarNames[i];IOField< scalar > s(IOobject(name, runTime.name(), cloud::prefix, mesh, IOobject::MUST_READ, IOobject::NO_WRITE))
const FieldField< fvPatchField, Type > & ff(const FieldField< fvPatchField, Type > &bf)
Namespace for OpenFOAM.
intWM_LABEL_SIZE_t label
A label is an int32_t or int64_t as specified by the pre-processor macro WM_LABEL_SIZE.
Definition: label.H:59
Ostream & endl(Ostream &os)
Add newline and flush stream.
Definition: Ostream.H:251
void component(FieldField< Field, typename FieldField< Field, Type >::cmptType > &sf, const FieldField< Field, Type > &f, const direction d)
errorManip< error > abort(error &err)
Definition: errorManip.H:131
void checkFields(const FieldField< Field, Type1 > &, const FieldField< Field, Type2 > &, const char *op)
Definition: FieldField.C:85
error FatalError
Ostream & operator<<(Ostream &, const ensightPart &)
void T(FieldField< Field, Type > &f1, const FieldField< Field, Type > &f2)
uint8_t direction
Definition: direction.H:45
fileType type(const fileName &, const bool checkVariants=true, const bool followLink=true)
Return the file type: directory or file.
Definition: POSIX.C:488
labelList f(nPoints)