pressureFvPatchScalarField.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) 2018-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 
28 #include "fieldMapper.H"
29 #include "volFields.H"
31 
32 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
33 
35 (
36  const fvPatch& p,
38  const dictionary& dict
39 )
40 :
41  fixedValueFvPatchScalarField(p, iF, dict, false),
42  p_("p", dimPressure, dict, p.size())
43 {
44  if (dict.found("value"))
45  {
47  (
48  scalarField("value", iF.dimensions(), dict, p.size())
49  );
50  }
51  else
52  {
54  }
55 }
56 
57 
59 (
60  const pressureFvPatchScalarField& ptf,
61  const fvPatch& p,
63  const fieldMapper& mapper
64 )
65 :
66  fixedValueFvPatchScalarField(ptf, p, iF, mapper),
67  p_(mapper(ptf.p_))
68 {}
69 
70 
72 (
73  const pressureFvPatchScalarField& ptf,
75 )
76 :
77  fixedValueFvPatchScalarField(ptf, iF),
78  p_(ptf.p_)
79 {}
80 
81 
82 // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
83 
85 (
86  const fvPatchScalarField& ptf,
87  const fieldMapper& mapper
88 )
89 {
90  fixedValueFvPatchScalarField::map(ptf, mapper);
91 
92  const pressureFvPatchScalarField& tiptf =
93  refCast<const pressureFvPatchScalarField>(ptf);
94 
95  mapper(p_, tiptf.p_);
96 }
97 
98 
100 (
101  const fvPatchScalarField& ptf
102 )
103 {
104  fixedValueFvPatchScalarField::reset(ptf);
105 
106  const pressureFvPatchScalarField& tiptf =
107  refCast<const pressureFvPatchScalarField>(ptf);
108 
109  p_.reset(tiptf.p_);
110 }
111 
112 
114 {
115  if (updated())
116  {
117  return;
118  }
119 
120  operator==(p_);
121 
122  fixedValueFvPatchScalarField::updateCoeffs();
123 }
124 
125 
127 {
129  writeEntry(os, "p", p_);
130  writeEntry(os, "value", *this);
131 }
132 
133 
134 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
135 
136 namespace Foam
137 {
139  (
142  );
143 }
144 
145 // ************************************************************************* //
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.
void size(const label)
Override size to be inconsistent with allocated storage.
Definition: ListI.H:164
An Ostream is an abstract base class for all output systems (streams, files, token lists,...
Definition: Ostream.H:57
A list of keyword definitions, which are a keyword followed by any number of values (e....
Definition: dictionary.H:162
Abstract base class for field mapping.
Definition: fieldMapper.H:48
Abstract base class with a fat-interface to all derived classes covering all possible ways in which t...
Definition: fvPatchField.H:88
virtual void write(Ostream &) const
Write.
Definition: fvPatchField.C:229
friend Ostream & operator(Ostream &, const fvPatchField< Type > &)
virtual void operator=(const UList< Type > &)
Definition: fvPatchField.C:249
A finiteVolume patch using a polyPatch and a fvBoundaryMesh.
Definition: fvPatch.H:64
Static pressure boundary condition.
virtual void write(Ostream &) const
Write.
virtual void reset(const fvPatchScalarField &)
Reset the fvPatchField to the given fvPatchField.
const scalarField & p() const
Return the static pressure.
virtual void updateCoeffs()
Update the coefficients associated with the patch field.
virtual void map(const fvPatchScalarField &, const fieldMapper &)
Map the given fvPatchField onto this fvPatchField.
pressureFvPatchScalarField(const fvPatch &, const DimensionedField< scalar, volMesh > &, const dictionary &)
Construct from patch, internal field and dictionary.
Namespace for OpenFOAM.
const dimensionSet dimPressure
tmp< fvMatrix< Type > > operator==(const fvMatrix< Type > &, const fvMatrix< Type > &)
Field< scalar > scalarField
Specialisation of Field<T> for scalar.
void writeEntry(Ostream &os, const HashTable< T, Key, Hash > &ht)
Definition: HashTableIO.C:96
makePatchTypeField(fvPatchScalarField, atmBoundaryLayerInletEpsilonFvPatchScalarField)
dictionary dict
volScalarField & p