SRFWallVelocityFvPatchVectorField.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) 2016-2019 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 "volFields.H"
29 
30 #include "SRFModel.H"
31 
32 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
33 
35 (
36  const fvPatch& p,
38 )
39 :
40  fixedValueFvPatchVectorField(p, iF)
41 {}
42 
43 
45 (
47  const fvPatch& p,
49  const fvPatchFieldMapper& mapper
50 )
51 :
52  fixedValueFvPatchVectorField(ptf, p, iF, mapper)
53 {}
54 
55 
57 (
58  const fvPatch& p,
60  const dictionary& dict
61 )
62 :
63  fixedValueFvPatchVectorField(p, iF, dict)
64 {}
65 
66 
68 (
70 )
71 :
72  fixedValueFvPatchVectorField(srfvpvf)
73 {}
74 
75 
77 (
78  const SRFWallVelocityFvPatchVectorField& srfvpvf,
80 )
81 :
82  fixedValueFvPatchVectorField(srfvpvf, iF)
83 {}
84 
85 
86 // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
87 
89 (
90  const fvPatchFieldMapper& m
91 )
92 {
93  m(*this, *this);
94 }
95 
96 
98 (
99  const fvPatchVectorField& ptf,
100  const labelList& addr
101 )
102 {
103  fixedValueFvPatchVectorField::rmap(ptf, addr);
104 }
105 
106 
108 {
109  if (updated())
110  {
111  return;
112  }
113 
114  // Get reference to the SRF model
115  const SRF::SRFModel& srf =
116  db().lookupObject<SRF::SRFModel>("SRFProperties");
117 
118  // Determine patch velocity due to SRF
119  const vectorField Up(-srf.velocity(patch().Cf()));
120 
121  // Remove the component of Up normal to the wall
122  // just in case it is not exactly circular
123  const vectorField n(patch().nf());
124  vectorField::operator=(Up - n*(n & Up));
125 
126  fixedValueFvPatchVectorField::updateCoeffs();
127 }
128 
129 
131 {
133  writeEntry(os, "value", *this);
134 }
135 
136 
137 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
138 
139 namespace Foam
140 {
142  (
145  );
146 }
147 
148 // ************************************************************************* //
virtual void autoMap(const fvPatchFieldMapper &)
Map (and resize as needed) from self given a mapping object.
virtual void rmap(const fvPatchVectorField &, const labelList &)
Reverse map the given fvPatchField onto this fvPatchField.
A list of keyword definitions, which are a keyword followed by any number of values (e...
Definition: dictionary.H:158
A finiteVolume patch using a polyPatch and a fvBoundaryMesh.
Definition: fvPatch.H:61
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.
Definition: fvPatchField.C:280
Macros for easy insertion into run-time selection tables.
Foam::fvPatchFieldMapper.
Wall-velocity condition to be used in conjunction with the single rotating frame (SRF) model (see: FO...
An Ostream is an abstract base class for all output systems (streams, files, token lists...
Definition: Ostream.H:54
SRFWallVelocityFvPatchVectorField(const fvPatch &, const DimensionedField< vector, volMesh > &)
Construct from patch and internal field.
void operator=(const Field< vector > &)
Definition: Field.C:531
void writeEntry(Ostream &os, const HashTable< T, Key, Hash > &ht)
Definition: HashTableIO.C:96
Field with dimensions and associated with geometry type GeoMesh which is used to size the field and a...
label n
makePatchTypeField(fvPatchScalarField, atmBoundaryLayerInletEpsilonFvPatchScalarField)
Top level model for single rotating frame.
Definition: SRFModel.H:62
virtual void updateCoeffs()
Update the coefficients associated with the patch field.
vectorField velocity(const vectorField &positions) const
Return velocity vector from positions.
Definition: SRFModel.C:151
Namespace for OpenFOAM.