processorFvPatch.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-2024 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 "processorFvPatch.H"
28 #include "transformField.H"
29 
30 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
31 
32 namespace Foam
33 {
36 }
37 
38 
39 // * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * * //
40 
42 {
43  if (Pstream::parRun())
44  {
46  (
47  w,
48  procPolyPatch_.neighbFaceAreas(),
49  procPolyPatch_.neighbFaceCentres()
50  - procPolyPatch_.neighbFaceCellCentres()
51  );
52  }
53  else
54  {
55  w = 1;
56  }
57 }
58 
59 
61 {
62  if (Pstream::parRun())
63  {
64  return
66  (
67  procPolyPatch_.neighbFaceCentres()
68  - procPolyPatch_.neighbFaceCellCentres()
69  );
70  }
71  else
72  {
73  return coupledFvPatch::delta();
74  }
75 }
76 
77 
79 (
80  const labelUList& internalData
81 ) const
82 {
83  return patchInternalField(internalData);
84 }
85 
86 
88 (
89  const Pstream::commsTypes commsType,
90  const labelUList& iF
91 ) const
92 {
93  send(commsType, patchInternalField(iF)());
94 }
95 
96 
98 (
99  const Pstream::commsTypes commsType,
100  const labelUList&
101 ) const
102 {
103  return receive<label>(commsType, this->size());
104 }
105 
106 
107 // ************************************************************************* //
Macros for easy insertion into run-time selection tables.
commsTypes
Types of communications.
Definition: UPstream.H:65
static bool & parRun()
Is this a parallel run?
Definition: UPstream.H:399
void makeWeights(scalarField &w, const vectorField &nbrSf, const vectorField &nbrDelta) const
Make patch weighting factors.
virtual tmp< vectorField > delta() const =0
Return delta (P to N) vectors across coupled patch.
A finiteVolume patch using a polyPatch and a fvBoundaryMesh.
Definition: fvPatch.H:64
A patch is a list of labels that address the faces in the global face list.
Definition: polyPatch.H:70
virtual tmp< labelField > internalFieldTransfer(const Pstream::commsTypes commsType, const labelUList &internalData) const
Return neighbour field.
virtual void makeWeights(scalarField &w) const
Make patch weighting factors.
virtual void initInternalFieldTransfer(const Pstream::commsTypes commsType, labelUList &iF) const
Inherit initInternalFieldTransfer from coupledFvPatch.
virtual tmp< vectorField > delta() const
Return delta (P to N) vectors across coupled patch.
virtual tmp< labelField > interfaceInternalField(const labelUList &internalData) const
Return the values of the given internal data adjacent to.
const vectorField & neighbFaceCentres() const
Return processor-neighbour patch face centres.
const vectorField & neighbFaceAreas() const
Return processor-neighbour patch face areas.
const vectorField & neighbFaceCellCentres() const
Return processor-neighbour patch neighbour cell centres.
A class for managing temporary objects.
Definition: tmp.H:55
Namespace for OpenFOAM.
addToRunTimeSelectionTable(polyPatch, mergedCyclicPolyPatch, word)
defineTypeNameAndDebug(combustionModel, 0)
Spatial transformation functions for primitive fields.