fixedNormalSlipFvPatchField.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-2022 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 
27 #include "symmTransformField.H"
28 
29 
30 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
31 
32 template<class Type>
34 (
35  const fvPatch& p,
37 )
38 :
40  fixedValue_(p.size(), Zero)
41 {}
42 
43 
44 template<class Type>
46 (
47  const fvPatch& p,
49  const dictionary& dict
50 )
51 :
53  fixedValue_("fixedValue", dict, p.size())
54 {
55  evaluate();
56 }
57 
58 
59 template<class Type>
61 (
63  const fvPatch& p,
65  const fvPatchFieldMapper& mapper
66 )
67 :
68  transformFvPatchField<Type>(ptf, p, iF, mapper),
69  fixedValue_(mapper(ptf.fixedValue_))
70 {}
71 
72 
73 template<class Type>
75 (
78 )
79 :
81  fixedValue_(ptf.fixedValue_)
82 {}
83 
84 
85 // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
86 
87 template<class Type>
89 (
90  const fvPatchFieldMapper& m
91 )
92 {
94  m(fixedValue_, fixedValue_);
95 }
96 
97 
98 template<class Type>
100 (
101  const fvPatchField<Type>& ptf,
102  const labelList& addr
103 )
104 {
106 
107  const fixedNormalSlipFvPatchField<Type>& dmptf =
108  refCast<const fixedNormalSlipFvPatchField<Type>>(ptf);
109 
110  fixedValue_.rmap(dmptf.fixedValue_, addr);
111 }
112 
113 
114 template<class Type>
116 (
117  const fvPatchField<Type>& ptf
118 )
119 {
121 
122  const fixedNormalSlipFvPatchField<Type>& dmptf =
123  refCast<const fixedNormalSlipFvPatchField<Type>>(ptf);
124 
125  fixedValue_.reset(dmptf.fixedValue_);
126 }
127 
128 
129 template<class Type>
132 {
133  const vectorField nHat(this->patch().nf());
134  const Field<Type> pif(this->patchInternalField());
135 
136  return
137  (
138  (nHat*(nHat & fixedValue_) + transform(I - sqr(nHat), pif)) - pif
139  )*this->patch().deltaCoeffs();
140 }
141 
142 
143 template<class Type>
145 (
146  const Pstream::commsTypes
147 )
148 {
149  if (!this->updated())
150  {
151  this->updateCoeffs();
152  }
153 
154  const vectorField nHat(this->patch().nf());
155 
157  (
158  nHat*(nHat & fixedValue_)
159  + transform(I - sqr(nHat), this->patchInternalField())
160  );
161 
163 }
164 
165 
166 template<class Type>
169 {
170  const vectorField nHat(this->patch().nf());
171  vectorField diag(nHat.size());
172 
173  diag.replace(vector::X, mag(nHat.component(vector::X)));
174  diag.replace(vector::Y, mag(nHat.component(vector::Y)));
175  diag.replace(vector::Z, mag(nHat.component(vector::Z)));
176 
177  return transformFieldMask<Type>(pow<vector, pTraits<Type>::rank>(diag));
178 }
179 
180 
181 template<class Type>
183 {
185  writeEntry(os, "fixedValue", fixedValue_);
186 }
187 
188 
189 // ************************************************************************* //
virtual void evaluate(const Pstream::commsTypes commsType=Pstream::commsTypes::blocking)
Evaluate the patch field.
void evaluate(GeometricField< Type, PatchField, GeoMesh > &result, const Function1< Type > &func, const GeometricField< Type, PatchField, GeoMesh > &x)
A list of keyword definitions, which are a keyword followed by any number of values (e...
Definition: dictionary.H:156
commsTypes
Types of communications.
Definition: UPstream.H:64
dimensionedSymmTensor sqr(const dimensionedVector &dv)
void size(const label)
Override size to be inconsistent with allocated storage.
Definition: ListI.H:164
fixedNormalSlipFvPatchField(const fvPatch &, const DimensionedField< Type, volMesh > &)
Construct from patch and internal field.
A finiteVolume patch using a polyPatch and a fvBoundaryMesh.
Definition: fvPatch.H:63
Abstract base class with a fat-interface to all derived classes covering all possible ways in which t...
Definition: fvPatchField.H:66
virtual void write(Ostream &) const
Write.
virtual void rmap(const fvPatchField< Type > &, const labelList &)
Reverse map the given fvPatchField onto this fvPatchField.
void diag(pointPatchField< vector > &, const pointPatchField< tensor > &)
static const Identity< scalar > I
Definition: Identity.H:93
virtual tmp< Field< Type > > snGrad() const
Return gradient at boundary.
Foam::fvPatchFieldMapper.
void write(std::ostream &os, const bool binary, List< floatScalar > &fField)
Write floats ascii or binary.
static const zero Zero
Definition: zero.H:97
tmp< Field< cmptType > > component(const direction) const
Return a component field of the field.
Definition: Field.C:455
An Ostream is an abstract base class for all output systems (streams, files, token lists...
Definition: Ostream.H:54
Foam::transformFvPatchField.
void writeEntry(Ostream &os, const HashTable< T, Key, Hash > &ht)
Definition: HashTableIO.C:96
PtrList< volScalarField > & Y
Field with dimensions and associated with geometry type GeoMesh which is used to size the field and a...
virtual tmp< Field< Type > > snGradTransformDiag() const
Return face-gradient transform diagonal.
dimensioned< scalar > mag(const dimensioned< Type > &)
This boundary condition sets the patch-normal component to a fixed value.
volScalarField & p
A class for managing temporary objects.
Definition: PtrList.H:53
virtual void reset(const fvPatchField< Type > &)
Reset the fvPatchField to the given fvPatchField.
dimensionSet transform(const dimensionSet &)
Definition: dimensionSet.C:483
virtual void autoMap(const fvPatchFieldMapper &)
Map (and resize as needed) from self given a mapping object.