Loading...
Searching...
No Matches
surfaceNormalFixedValueFvPatchVectorField.C
Go to the documentation of this file.
1/*---------------------------------------------------------------------------*\
2 ========= |
3 \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4 \\ / O peration |
5 \\ / A nd | www.openfoam.com
6 \\/ M anipulation |
7-------------------------------------------------------------------------------
8 Copyright (C) 2011-2016 OpenFOAM Foundation
9 Copyright (C) 2019-2021 OpenCFD Ltd.
10-------------------------------------------------------------------------------
11License
12 This file is part of OpenFOAM.
13
14 OpenFOAM is free software: you can redistribute it and/or modify it
15 under the terms of the GNU General Public License as published by
16 the Free Software Foundation, either version 3 of the License, or
17 (at your option) any later version.
18
19 OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
20 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
21 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
22 for more details.
23
24 You should have received a copy of the GNU General Public License
25 along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
26
27\*---------------------------------------------------------------------------*/
28
31#include "volFields.H"
32#include "fvPatchFieldMapper.H"
33
34// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
35
38(
39 const fvPatch& p,
41)
43 fixedValueFvPatchVectorField(p, iF),
44 refValue_(p.size()),
45 ramp_(nullptr)
46{}
47
48
51(
52 const fvPatch& p,
54 const dictionary& dict
55)
56:
57 fixedValueFvPatchVectorField(p, iF, dict, IOobjectOption::NO_READ),
58 refValue_("refValue", dict, p.size()),
59 ramp_(Function1<scalar>::NewIfPresent("ramp", dict, word::null, &db()))
60{
61 tmp<vectorField> tvalues(refValue_*patch().nf());
62
63 if (ramp_)
64 {
65 tvalues.ref() *= ramp_->value(this->db().time().timeOutputValue());
66 }
67
69}
70
71
74(
75 const surfaceNormalFixedValueFvPatchVectorField& ptf,
76 const fvPatch& p,
77 const DimensionedField<vector, volMesh>& iF,
78 const fvPatchFieldMapper& mapper
79)
80:
81 fixedValueFvPatchVectorField(p, iF),
82 refValue_(ptf.refValue_, mapper, pTraits<scalar>::zero),
83 ramp_(ptf.ramp_.clone())
84{
85 // Note: refValue_ will have default value of 0 for unmapped faces. This
86 // can temporarily happen during e.g. redistributePar. We should not
87 // access ptf.patch() instead since redistributePar has destroyed this
88 // at the time of mapping.
89
90 tmp<vectorField> tvalues(refValue_*patch().nf());
91
92 if (ramp_)
93 {
94 tvalues.ref() *= ramp_->value(this->db().time().timeOutputValue());
95 }
96
98}
99
100
103(
104 const surfaceNormalFixedValueFvPatchVectorField& ptf
105)
107 fixedValueFvPatchVectorField(ptf),
108 refValue_(ptf.refValue_),
109 ramp_(ptf.ramp_.clone())
110{}
111
112
115(
118)
119:
120 fixedValueFvPatchVectorField(ptf, iF),
121 refValue_(ptf.refValue_),
122 ramp_(ptf.ramp_.clone())
123{}
124
125
126// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
127
129(
130 const fvPatchFieldMapper& mapper
132{
133 fixedValueFvPatchVectorField::autoMap(mapper);
134 refValue_.autoMap(mapper);
135}
136
137
139(
140 const fvPatchVectorField& ptf,
141 const labelList& addr
142)
143{
144 fixedValueFvPatchVectorField::rmap(ptf, addr);
145
148
149 refValue_.rmap(tiptf.refValue_, addr);
150}
151
152
154{
155 if (updated())
156 {
157 return;
158 }
159
160 tmp<vectorField> tvalues(refValue_*patch().nf());
161
162 if (ramp_)
163 {
164 tvalues.ref() *= ramp_->value(this->db().time().timeOutputValue());
175 refValue_.writeEntry("refValue", os);
176 if (ramp_)
177 {
178 ramp_->writeData(os);
179 }
181
182
183// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
184
185namespace Foam
186{
188 (
190 surfaceNormalFixedValueFvPatchVectorField
191 );
192}
193
194// ************************************************************************* //
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...
Top level data entry class for use in dictionaries. Provides a mechanism to specify a variable as a c...
Definition Function1.H:92
A simple container of IOobject preferences. Can also be used for general handling of read/no-read/rea...
An Ostream is an abstract base class for all output systems (streams, files, token lists,...
Definition Ostream.H:59
A list of keyword definitions, which are a keyword followed by a number of values (eg,...
Definition dictionary.H:133
A FieldMapper for finite-volume patch fields.
virtual void write(Ostream &) const
Write.
virtual void operator=(const UList< vector > &)
A finiteVolume patch using a polyPatch and a fvBoundaryMesh.
Definition fvPatch.H:71
A traits class, which is primarily used for primitives and vector-space.
Definition pTraits.H:64
This boundary condition provides a surface-normal vector boundary condition by its magnitude.
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.
virtual tmp< fvPatchField< vector > > clone() const
Return a clone.
virtual void updateCoeffs()
Update the coefficients associated with the patch field.
surfaceNormalFixedValueFvPatchVectorField(const fvPatch &, const DimensionedField< vector, volMesh > &)
Construct from patch and internal field.
A class for managing temporary objects.
Definition tmp.H:75
T & ref() const
Return non-const reference to the contents of a non-null managed pointer.
Definition tmpI.H:235
A class for handling words, derived from Foam::string.
Definition word.H:66
A class representing the concept of 0 (zero) that can be used to avoid manipulating objects known to ...
Definition zero.H:58
volScalarField & p
OBJstream os(runTime.globalPath()/outputName)
#define makePatchTypeField(PatchTypeField, typePatchTypeField)
Define a concrete fvPatchField type and add to run-time tables Example, (fvPatchScalarField,...
Namespace for OpenFOAM.
Type & refCast(U &obj)
A dynamic_cast (for references) to Type reference.
Definition typeInfo.H:172
List< label > labelList
A List of labels.
Definition List.H:62
fvPatchField< vector > fvPatchVectorField
dictionary dict