uniformJumpFvPatchField.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) 2012-2017 OpenFOAM Foundation
9 Copyright (C) 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
30
31// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
32
33template<class Type>
35(
36 const fvPatch& p,
38)
39:
40 fixedJumpFvPatchField<Type>(p, iF),
41 jumpTable_()
42{}
43
44
45template<class Type>
47(
49 const fvPatch& p,
51 const fvPatchFieldMapper& mapper
52)
53:
54 fixedJumpFvPatchField<Type>(ptf, p, iF, mapper),
55 jumpTable_(ptf.jumpTable_.clone())
56{}
57
58
59template<class Type>
61(
62 const fvPatch& p,
64 const dictionary& dict,
65 const bool valueRequired
66)
67:
68 fixedJumpFvPatchField<Type>(p, iF, dict, false), // Pass no valueRequired
69 jumpTable_()
70{
71 if (valueRequired)
72 {
73 if (this->cyclicPatch().owner())
74 {
75 jumpTable_ = Function1<Type>::New("jumpTable", dict, &this->db());
76 }
77
78 if (dict.found("value"))
79 {
81 (
82 Field<Type>("value", dict, p.size())
83 );
84 }
85 else
86 {
88 }
89 }
90}
91
92
93template<class Type>
95(
97)
98:
99 fixedJumpFvPatchField<Type>(ptf),
100 jumpTable_(ptf.jumpTable_.clone())
101{}
102
103
104template<class Type>
106(
109)
110:
111 fixedJumpFvPatchField<Type>(ptf, iF),
112 jumpTable_(ptf.jumpTable_.clone())
113{}
114
115
116// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
117
118template<class Type>
120{
121 if (this->updated())
122 {
123 return;
124 }
125
126 if (this->cyclicPatch().owner())
127 {
128 this->setJump(jumpTable_->value(this->db().time().value()));
129 }
130
132}
133
134
135template<class Type>
137{
139
140 if (this->cyclicPatch().owner())
141 {
142 jumpTable_->writeData(os);
143 }
144}
145
146
147// ************************************************************************* //
Field with dimensions and associated with geometry type GeoMesh which is used to size the field and a...
Generic templated field type.
Definition: Field.H:82
An Ostream is an abstract base class for all output systems (streams, files, token lists,...
Definition: Ostream.H:62
static autoPtr< Time > New()
Construct (dummy) Time - no functionObjects or libraries.
Definition: Time.C:717
void size(const label n)
Older name for setAddressableSize.
Definition: UList.H:114
virtual void updateCoeffs()
Update the coefficients associated with the patch field.
virtual void evaluate(const Pstream::commsTypes commsType)
Evaluate the patch field.
const cyclicFvPatch & cyclicPatch() const
Return local reference cast into the cyclic patch.
A list of keyword definitions, which are a keyword followed by a number of values (eg,...
Definition: dictionary.H:126
bool found(const word &keyword, enum keyType::option matchOpt=keyType::REGEX) const
Search for an entry (const access) with the given keyword.
Definition: dictionaryI.H:87
This boundary condition provides a jump condition, using the cyclic condition as a base.
virtual bool write()
Write the output fields.
A FieldMapper for finite-volume patch fields.
Abstract base class with a fat-interface to all derived classes covering all possible ways in which t...
Definition: fvPatchField.H:82
const objectRegistry & db() const
Return local objectRegistry.
Definition: fvPatchField.C:210
A finiteVolume patch using a polyPatch and a fvBoundaryMesh.
Definition: fvPatch.H:71
This boundary condition provides a jump condition, using the cyclic condition as a base....
virtual void updateCoeffs()
Update the coefficients.
autoPtr< Function1< Type > > jumpTable_
The "jump" table.
volScalarField & p
OBJstream os(runTime.globalPath()/outputName)
dictionary dict