patchMeanVelocityForce.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) 2015-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 "patchMeanVelocityForce.H"
27 #include "volFields.H"
30 
31 // * * * * * * * * * * * * * Static Member Functions * * * * * * * * * * * * //
32 
33 namespace Foam
34 {
35 namespace fv
36 {
38 
40  (
44  );
45 }
46 }
47 
48 
49 // * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * //
50 
51 void Foam::fv::patchMeanVelocityForce::readCoeffs()
52 {
53  patch_ = coeffs().lookup<word>("patch");
54 
55  if (mesh().boundaryMesh().findPatchID(patch_) < 0)
56  {
58  << "Cannot find patch " << patch_
59  << exit(FatalError);
60  }
61 }
62 
63 
64 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
65 
67 (
68  const word& sourceName,
69  const word& modelType,
70  const fvMesh& mesh,
71  const dictionary& dict
72 )
73 :
74  meanVelocityForce(sourceName, modelType, mesh, dict),
75  patch_(word::null)
76 {
77  readCoeffs();
78 }
79 
80 
81 // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
82 
83 Foam::scalar Foam::fv::patchMeanVelocityForce::magUbarAve
84 (
85  const volVectorField& U
86 ) const
87 {
88  const label patchi = mesh().boundaryMesh().findPatchID(patch_);
89 
90  scalar sumA = sum(mesh().boundary()[patchi].magSf());
91  scalar sumAmagU =
92  sum
93  (
94  mesh().boundary()[patchi].magSf()
95  *(normalised(Ubar()) & U.boundaryField()[patchi])
96  );
97 
98  // If the mean velocity force is applied to a cyclic patch
99  // for parallel runs include contributions from processorCyclic patches
100  // generated from the decomposition of the cyclic patch
101  const polyBoundaryMesh& patches = mesh().boundaryMesh();
102  if (Pstream::parRun() && isA<cyclicPolyPatch>(patches[patchi]))
103  {
104  const labelList processorCyclicPatches
105  (
107  );
108 
109  forAll(processorCyclicPatches, pcpi)
110  {
111  const label patchi = processorCyclicPatches[pcpi];
112 
113  sumA += sum(mesh().boundary()[patchi].magSf());
114  sumAmagU +=
115  sum
116  (
117  mesh().boundary()[patchi].magSf()
118  *(normalised(Ubar()) & U.boundaryField()[patchi])
119  );
120  }
121  }
122 
123  mesh().reduce(sumA, sumOp<scalar>());
124  mesh().reduce(sumAmagU, sumOp<scalar>());
125 
126  return sumAmagU/sumA;
127 }
128 
129 
131 {
133  {
134  readCoeffs();
135  return true;
136  }
137  else
138  {
139  return false;
140  }
141 }
142 
143 
144 // ************************************************************************* //
#define forAll(list, i)
Loop across all elements in list.
Definition: UList.H:434
Macros for easy insertion into run-time selection tables.
Generic GeometricField class.
static bool & parRun()
Is this a parallel run?
Definition: UPstream.H:399
A list of keyword definitions, which are a keyword followed by any number of values (e....
Definition: dictionary.H:160
ITstream & lookup(const word &, bool recursive=false, bool patternMatch=true) const
Find and return an entry data stream.
Definition: dictionary.C:860
Finite volume options abstract base class.
Definition: fvConstraint.H:57
const dictionary & coeffs() const
Return dictionary.
Definition: fvConstraintI.H:40
const fvMesh & mesh() const
Return const access to the mesh database.
Definition: fvConstraintI.H:34
Mesh data needed to do the Finite Volume discretisation.
Definition: fvMesh.H:101
Calculates and applies the force necessary to maintain the specified mean velocity.
virtual bool read(const dictionary &dict)
Read source dictionary.
Calculates and applies the force necessary to maintain the specified mean velocity averaged over the ...
virtual bool read(const dictionary &dict)
Read dictionary.
patchMeanVelocityForce(const word &sourceName, const word &modelType, const fvMesh &mesh, const dictionary &dict)
Construct from explicit source name and mesh.
Foam::polyBoundaryMesh.
label findPatchID(const word &patchName) const
Find patch index given a name.
const polyBoundaryMesh & boundaryMesh() const
Return boundary mesh.
Definition: polyMesh.H:403
static labelList patchIDs(const word &cyclicPolyPatchName, const polyBoundaryMesh &bm)
Return the indices of a processorCyclicPolyPatchs.
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
label patchi
const fvPatchList & patches
U
Definition: pEqn.H:72
addToRunTimeSelectionTable(fvConstraint, bound, dictionary)
defineTypeNameAndDebug(bound, 0)
Namespace for OpenFOAM.
errorManipArg< error, int > exit(error &err, const int errNo=1)
Definition: errorManip.H:124
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
dimensioned< Type > sum(const DimensionedField< Type, GeoMesh > &df)
Form normalised(const VectorSpace< Form, Cmpt, Ncmpts > &vs)
Definition: VectorSpaceI.H:413
error FatalError
faceListList boundary(nPatches)
labelList fv(nPoints)
dictionary dict
dimensionedVector Ubar("Ubar", dimVelocity, viscosity)