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 -------------------------------------------------------------------------------
10 License
11  This file is part of OpenFOAM.
12 
13  OpenFOAM is free software: you can redistribute it and/or modify it
14  under the terms of the GNU General Public License as published by
15  the Free Software Foundation, either version 3 of the License, or
16  (at your option) any later version.
17 
18  OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
19  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
20  FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
21  for more details.
22 
23  You should have received a copy of the GNU General Public License
24  along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
25 
26 \*---------------------------------------------------------------------------*/
27 
29 
30 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
31 
32 template<class Type>
34 (
35  const fvPatch& p,
37 )
38 :
40  jumpTable_()
41 {}
42 
43 
44 template<class Type>
46 (
48  const fvPatch& p,
50  const fvPatchFieldMapper& mapper
51 )
52 :
53  fixedJumpAMIFvPatchField<Type>(ptf, p, iF, mapper),
54  jumpTable_(ptf.jumpTable_.clone())
55 {}
56 
57 
58 template<class Type>
60 (
61  const fvPatch& p,
63  const dictionary& dict
64 )
65 :
67  jumpTable_()
68 {
69  if (this->cyclicAMIPatch().owner())
70  {
71  jumpTable_ = Function1<Type>::New("jumpTable", dict);
72  }
73 
74  if (dict.found("value"))
75  {
77  }
78  else
79  {
80  this->evaluate(Pstream::commsTypes::blocking);
81  }
82 }
83 
84 
85 template<class Type>
87 (
89 )
90 :
92  jumpTable_(ptf.jumpTable_.clone())
93 {}
94 
95 
96 template<class Type>
98 (
101 )
102 :
104  jumpTable_(ptf.jumpTable_.clone())
105 {}
106 
107 
108 // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
109 
110 template<class Type>
112 {
113  if (this->updated())
114  {
115  return;
116  }
117 
118  if (this->cyclicAMIPatch().owner())
119  {
120  this->jump_ = jumpTable_->value(this->db().time().value());
121  }
122 
124 }
125 
126 
127 template<class Type>
129 {
131  if (this->cyclicAMIPatch().owner())
132  {
133  jumpTable_->writeData(os);
134  }
135 }
136 
137 
138 // ************************************************************************* //
Foam::fvPatchField
Abstract base class with a fat-interface to all derived classes covering all possible ways in which t...
Definition: volSurfaceMapping.H:50
Foam::uniformJumpAMIFvPatchField::updateCoeffs
virtual void updateCoeffs()
Update the coefficients.
Definition: uniformJumpAMIFvPatchField.C:111
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:102
Foam::uniformJumpAMIFvPatchField::jumpTable_
autoPtr< Function1< Type > > jumpTable_
"jump" table
Definition: uniformJumpAMIFvPatchField.H:112
Foam::fixedJumpAMIFvPatchField
This boundary condition provides a jump condition, across non-conformal cyclic path-pairs,...
Definition: fixedJumpAMIFvPatchField.H:98
uniformJumpAMIFvPatchField.H
Foam::Field
Generic templated field type.
Definition: Field.H:63
Foam::uniformJumpAMIFvPatchField::uniformJumpAMIFvPatchField
uniformJumpAMIFvPatchField(const fvPatch &, const DimensionedField< Type, volMesh > &)
Construct from patch and internal field.
Definition: uniformJumpAMIFvPatchField.C:34
Foam::fvPatch
A finiteVolume patch using a polyPatch and a fvBoundaryMesh.
Definition: fvPatch.H:65
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:121
Foam::New
tmp< DimensionedField< TypeR, GeoMesh > > New(const tmp< DimensionedField< TypeR, GeoMesh >> &tdf1, const word &name, const dimensionSet &dimensions)
Global function forwards to reuseTmpDimensionedField::New.
Definition: DimensionedFieldReuseFunctions.H:105
Foam::uniformJumpAMIFvPatchField::write
virtual void write(Ostream &) const
Write.
Definition: uniformJumpAMIFvPatchField.C:128
Foam::vtk::write
void write(vtk::formatter &fmt, const Type &val, const label n=1)
Component-wise write of a value (N times)
Definition: foamVtkOutputTemplates.C:35
Foam::fvPatchFieldMapper
Foam::fvPatchFieldMapper.
Definition: fvPatchFieldMapper.H:47
Foam::Ostream
An Ostream is an abstract base class for all output systems (streams, files, token lists,...
Definition: Ostream.H:56
Foam::stringOps::evaluate
string evaluate(const std::string &s, size_t pos=0, size_t len=std::string::npos)
Definition: stringOpsEvaluate.C:37
Foam::DimensionedField
Field with dimensions and associated with geometry type GeoMesh which is used to size the field and a...
Definition: DimensionedField.H:54