uniformJumpAMIFvPatchField.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 -------------------------------------------------------------------------------
11 License
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 
33 template<class Type>
35 (
36  const fvPatch& p,
38 )
39 :
41  jumpTable_()
42 {}
43 
44 
45 template<class Type>
47 (
49  const fvPatch& p,
51  const fvPatchFieldMapper& mapper
52 )
53 :
54  fixedJumpAMIFvPatchField<Type>(ptf, p, iF, mapper),
55  jumpTable_(ptf.jumpTable_.clone())
56 {}
57 
58 
59 template<class Type>
61 (
62  const fvPatch& p,
64  const dictionary& dict
65 )
66 :
67  fixedJumpAMIFvPatchField<Type>(p, iF),
68  jumpTable_()
69 {
70  if (this->cyclicAMIPatch().owner())
71  {
72  jumpTable_ = Function1<Type>::New("jumpTable", dict, &this->db());
73  }
74 
75  if (dict.found("value"))
76  {
77  fvPatchField<Type>::operator=(Field<Type>("value", dict, p.size()));
78  }
79  else
80  {
82  }
83 }
84 
85 
86 template<class Type>
88 (
89  const uniformJumpAMIFvPatchField<Type>& ptf
90 )
91 :
93  jumpTable_(ptf.jumpTable_.clone())
94 {}
95 
96 
97 template<class Type>
99 (
102 )
103 :
104  fixedJumpAMIFvPatchField<Type>(ptf, iF),
105  jumpTable_(ptf.jumpTable_.clone())
106 {}
107 
108 
109 // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
110 
111 template<class Type>
113 {
114  if (this->updated())
115  {
116  return;
117  }
118 
119  if (this->cyclicAMIPatch().owner())
120  {
121  this->jump_ = jumpTable_->value(this->db().time().value());
122  }
123 
125 }
126 
127 
128 template<class Type>
130 {
132  if (this->cyclicAMIPatch().owner())
133  {
134  jumpTable_->writeData(os);
135  }
136 }
137 
138 
139 // ************************************************************************* //
Foam::fvPatchField
Abstract base class with a fat-interface to all derived classes covering all possible ways in which t...
Definition: volSurfaceMapping.H:47
Foam::uniformJumpAMIFvPatchField::updateCoeffs
virtual void updateCoeffs()
Definition: uniformJumpAMIFvPatchField.C:105
Foam::fvPatchField::operator=
virtual void operator=(const UList< Type > &)
p
volScalarField & p
Definition: createFieldRefs.H:8
Foam::uniformJumpAMIFvPatchField
This boundary condition provides a jump condition, using the cyclicAMI condition as a base....
Definition: uniformJumpAMIFvPatchField.H:98
Foam::uniformJumpAMIFvPatchField::jumpTable_
autoPtr< Function1< Type > > jumpTable_
Definition: uniformJumpAMIFvPatchField.H:108
Foam::dictionary::found
bool found(const word &keyword, enum keyType::option matchOpt=keyType::REGEX) const
Definition: dictionaryI.H:80
Foam::fixedJumpAMIFvPatchField
This boundary condition provides a jump condition, across non-conformal cyclic path-pairs,...
Definition: fixedJumpAMIFvPatchField.H:94
uniformJumpAMIFvPatchField.H
Foam::Field< Type >
Foam::uniformJumpAMIFvPatchField::uniformJumpAMIFvPatchField
uniformJumpAMIFvPatchField(const fvPatch &, const DimensionedField< Type, volMesh > &)
Definition: uniformJumpAMIFvPatchField.C:28
Foam::fvPatch
A finiteVolume patch using a polyPatch and a fvBoundaryMesh.
Definition: fvPatch.H:61
Foam::coupledFvPatchField::evaluate
virtual void evaluate(const Pstream::commsTypes commsType)
Definition: coupledFvPatchField.C:126
dict
dictionary dict
Definition: searchingEngine.H:14
Foam::dictionary
A list of keyword definitions, which are a keyword followed by a number of values (eg,...
Definition: dictionary.H:119
os
OBJstream os(runTime.globalPath()/outputName)
Foam::cyclicAMIFvPatchField::cyclicAMIPatch
const cyclicAMIFvPatch & cyclicAMIPatch() const
Definition: cyclicAMIFvPatchField.H:182
Foam::fvPatchField< Type >::updateCoeffs
virtual void updateCoeffs()
Definition: fvPatchField.C:314
Foam::New
tmp< DimensionedField< TypeR, GeoMesh > > New(const tmp< DimensionedField< TypeR, GeoMesh >> &tdf1, const word &name, const dimensionSet &dimensions)
Definition: DimensionedFieldReuseFunctions.H:100
Foam::uniformJumpAMIFvPatchField::write
virtual void write(Ostream &) const
Definition: uniformJumpAMIFvPatchField.C:122
Foam::fvPatchField< Type >::db
const objectRegistry & db() const
Definition: fvPatchField.C:199
Foam::fixedJumpAMIFvPatchField::write
virtual void write(Ostream &) const
Definition: fixedJumpAMIFvPatchField.C:164
Foam::vtk::write
void write(vtk::formatter &fmt, const Type &val, const label n=1)
Definition: foamVtkOutputTemplates.C:29
Foam::fvPatchFieldMapper
Foam::fvPatchFieldMapper.
Definition: fvPatchFieldMapper.H:41
Foam::Ostream
An Ostream is an abstract base class for all output systems (streams, files, token lists,...
Definition: Ostream.H:52
Foam::DimensionedField
Field with dimensions and associated with geometry type GeoMesh which is used to size the field and a...
Definition: DimensionedField.H:50
Foam::UPstream::commsTypes::blocking
@ blocking
Foam::stringOps::evaluate
string evaluate(label fieldWidth, const std::string &s, size_t pos=0, size_t len=std::string::npos)
Definition: stringOpsEvaluate.C:30