fluxCorrectedVelocityFvPatchVectorField.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-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 
28 #include "fvPatchFieldMapper.H"
29 #include "volFields.H"
30 #include "surfaceFields.H"
31 
32 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
33 
36 (
37  const fvPatch& p,
39  const dictionary& dict
40 )
41 :
42  zeroGradientFvPatchVectorField(p, iF),
43  phiName_(dict.lookupOrDefault<word>("phi", "phi")),
44  rhoName_(dict.lookupOrDefault<word>("rho", "rho"))
45 {
46  fvPatchVectorField::operator=(patchInternalField());
47 }
48 
49 
52 (
54  const fvPatch& p,
56  const fvPatchFieldMapper& mapper
57 )
58 :
59  zeroGradientFvPatchVectorField(ptf, p, iF, mapper),
60  phiName_(ptf.phiName_),
61  rhoName_(ptf.rhoName_)
62 {}
63 
64 
67 (
70 )
71 :
72  zeroGradientFvPatchVectorField(fcvpvf, iF),
73  phiName_(fcvpvf.phiName_),
74  rhoName_(fcvpvf.rhoName_)
75 {}
76 
77 
78 // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
79 
81 (
83 )
84 {
85  if (!updated())
86  {
87  updateCoeffs();
88  }
89 
91 
92  const surfaceScalarField& phi =
93  db().lookupObject<surfaceScalarField>(phiName_);
94 
95  const fvsPatchField<scalar>& phip =
96  patch().patchField<surfaceScalarField, scalar>(phi);
97 
98  const vectorField n(patch().nf());
99  const Field<scalar>& magS = patch().magSf();
100 
101  if (phi.dimensions() == dimFlux)
102  {
103  operator==(*this - n*(n & *this) + n*phip/magS);
104  }
105  else if (phi.dimensions() == dimMassFlux)
106  {
107  const fvPatchField<scalar>& rhop =
108  patch().lookupPatchField<volScalarField, scalar>(rhoName_);
109 
110  operator==(*this - n*(n & *this) + n*phip/(rhop*magS));
111  }
112  else
113  {
115  << "dimensions of phi are incorrect\n"
116  << " on patch " << this->patch().name()
117  << " of field " << this->internalField().name()
118  << " in file " << this->internalField().objectPath()
119  << exit(FatalError);
120  }
121 }
122 
123 
125 {
127  writeEntryIfDifferent<word>(os, "phi", "phi", phiName_);
128  writeEntryIfDifferent<word>(os, "rho", "rho", rhoName_);
129  writeEntry(os, "value", *this);
130 }
131 
132 
133 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
134 
135 namespace Foam
136 {
138  (
141  );
142 }
143 
144 // ************************************************************************* //
label n
Macros for easy insertion into run-time selection tables.
Field with dimensions and associated with geometry type GeoMesh which is used to size the field and a...
const dimensionSet & dimensions() const
Return dimensions.
Generic GeometricField class.
An Ostream is an abstract base class for all output systems (streams, files, token lists,...
Definition: Ostream.H:57
commsTypes
Types of communications.
Definition: UPstream.H:65
A list of keyword definitions, which are a keyword followed by any number of values (e....
Definition: dictionary.H:160
This boundary condition provides a velocity outlet boundary condition for patches where the pressure ...
virtual void evaluate(const Pstream::commsTypes commsType=Pstream::commsTypes::blocking)
Evaluate the patch field.
fluxCorrectedVelocityFvPatchVectorField(const fvPatch &, const DimensionedField< vector, volMesh > &, const dictionary &)
Construct from patch, internal field and dictionary.
Foam::fvPatchFieldMapper.
Abstract base class with a fat-interface to all derived classes covering all possible ways in which t...
Definition: fvPatchField.H:87
virtual void write(Ostream &) const
Write.
Definition: fvPatchField.C:231
virtual void operator=(const UList< Type > &)
Definition: fvPatchField.C:251
A finiteVolume patch using a polyPatch and a fvBoundaryMesh.
Definition: fvPatch.H:64
An abstract base class with a fat-interface to all derived classes covering all possible ways in whic...
Definition: fvsPatchField.H:82
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
Namespace for OpenFOAM.
errorManipArg< error, int > exit(error &err, const int errNo=1)
Definition: errorManip.H:124
tmp< fvMatrix< Type > > operator==(const fvMatrix< Type > &, const fvMatrix< Type > &)
const dimensionSet dimMassFlux
SurfaceField< scalar > surfaceScalarField
void writeEntry(Ostream &os, const HashTable< T, Key, Hash > &ht)
Definition: HashTableIO.C:96
VolField< scalar > volScalarField
Definition: volFieldsFwd.H:61
void evaluate(GeometricField< Type, PatchField, GeoMesh > &result, const Function1< Type > &func, const GeometricField< Type, PatchField, GeoMesh > &x)
error FatalError
makePatchTypeField(fvPatchScalarField, atmBoundaryLayerInletEpsilonFvPatchScalarField)
const dimensionSet dimFlux
dictionary dict
volScalarField & p
Foam::surfaceFields.