generalFieldMapper.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) 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 \*---------------------------------------------------------------------------*/
25 
26 #include "generalFieldMapper.H"
27 
28 // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
29 
31 {
33  << "attempt to access null direct addressing"
34  << abort(FatalError);
35 
36  return labelUList::null();
37 }
38 
39 
41 {
43  << "attempt to access null interpolation addressing"
44  << abort(FatalError);
45 
46  return labelListList::null();
47 }
48 
49 
51 {
53  << "attempt to access null interpolation weights"
54  << abort(FatalError);
55 
56  return scalarListList::null();
57 }
58 
59 
60 // * * * * * * * * * * * * * * * Member Operators * * * * * * * * * * * * * //
61 
62 void Foam::generalFieldMapper::operator()
63 (
65  const Field<scalar>& mapF
66 ) const
67 {
68  map(f, mapF);
69 }
70 
71 
72 void Foam::generalFieldMapper::operator()
73 (
75  const Field<vector>& mapF
76 ) const
77 {
78  map(f, mapF);
79 }
80 
81 
82 void Foam::generalFieldMapper::operator()
83 (
85  const Field<sphericalTensor>& mapF
86 ) const
87 {
88  map(f, mapF);
89 }
90 
91 
92 void Foam::generalFieldMapper::operator()
93 (
95  const Field<symmTensor>& mapF
96 ) const
97 {
98  map(f, mapF);
99 }
100 
101 
102 void Foam::generalFieldMapper::operator()
103 (
104  Field<tensor>& f,
105  const Field<tensor>& mapF
106 ) const
107 {
108  map(f, mapF);
109 }
110 
111 
112 Foam::tmp<Foam::Field<Foam::scalar>> Foam::generalFieldMapper::operator()
113 (
114  const Field<scalar>& mapF
115 ) const
116 {
117  return map(mapF);
118 }
119 
120 
121 Foam::tmp<Foam::Field<Foam::vector>> Foam::generalFieldMapper::operator()
122 (
123  const Field<vector>& mapF
124 ) const
125 {
126  return map(mapF);
127 }
128 
129 
131 Foam::generalFieldMapper::operator()
132 (
133  const Field<sphericalTensor>& mapF
134 ) const
135 {
136  return map(mapF);
137 }
138 
139 
140 Foam::tmp<Foam::Field<Foam::symmTensor>> Foam::generalFieldMapper::operator()
141 (
142  const Field<symmTensor>& mapF
143 ) const
144 {
145  return map(mapF);
146 }
147 
148 
149 Foam::tmp<Foam::Field<Foam::tensor>> Foam::generalFieldMapper::operator()
150 (
151  const Field<tensor>& mapF
152 ) const
153 {
154  return map(mapF);
155 }
156 
157 
158 // ************************************************************************* //
virtual const labelListList & addressing() const
error FatalError
#define FatalErrorInFunction
Report an error message using Foam::FatalError.
Definition: error.H:323
virtual const labelUList & directAddressing() const
static const List< labelList > & null()
Return a null List.
Definition: ListI.H:118
errorManip< error > abort(error &err)
Definition: errorManip.H:131
A 1D vector of objects of type <T>, where the size of the vector is known and can be used for subscri...
Definition: HashTable.H:60
static const UList< T > & null()
Return a null UList.
Definition: UListI.H:51
labelList f(nPoints)
virtual const scalarListList & weights() const
A class for managing temporary objects.
Definition: PtrList.H:53