cellsToCellsTemplates.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) 2012-2023 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 "cellsToCells.H"
27 #include "patchToPatchTools.H"
28 
29 // * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * * //
30 
31 template<class Type>
34 {
35  return
37  (
40  srcMapPtr_,
41  srcFld
42  );
43 }
44 
45 
46 template<class Type>
48 (
49  const Field<Type>& srcFld,
50  const Field<Type>& leftOverTgtFld
51 ) const
52 {
53  return
55  (
56  tgtLocalSrcCells_,
57  tgtWeights_,
58  srcMapPtr_,
59  srcFld,
60  leftOverTgtFld
61  );
62 }
63 
64 
65 template<class Type>
68 {
69  return
71  (
72  srcLocalTgtCells_,
73  srcWeights_,
74  tgtMapPtr_,
75  tgtFld
76  );
77 }
78 
79 
80 template<class Type>
82 (
83  const Field<Type>& tgtFld,
84  const Field<Type>& leftOverSrcFld
85 ) const
86 {
87  return
89  (
90  srcLocalTgtCells_,
91  srcWeights_,
92  tgtMapPtr_,
93  tgtFld,
94  leftOverSrcFld
95  );
96 }
97 
98 
99 // ************************************************************************* //
Pre-declare SubField and related Field type.
Definition: Field.H:82
tmp< Field< Type > > tgtToSrc(const Field< Type > &tgtFld) const
Interpolate a target cell field to the source with no left.
autoPtr< distributionMap > srcMapPtr_
Map from source patch cells to target-local source patch cells.
Definition: cellsToCells.H:77
labelListList tgtLocalSrcCells_
For each target cell, the coupled local source cells.
Definition: cellsToCells.H:68
tmp< Field< Type > > srcToTgt(const Field< Type > &srcFld) const
Interpolate a source cell field to the target with no left.
scalarListList tgtWeights_
For each target cell, the coupled source weights.
Definition: cellsToCells.H:74
A class for managing temporary objects.
Definition: tmp.H:55
static tmp< Field< Type > > interpolate(const List< LabelList > &localOtherFaces, const List< ScalarList > &weights, const autoPtr< distributionMap > &otherMapPtr, const Field< Type > &otherFld)
Interpolate with normalisation.