fixedJumpFvPatchField.H
Go to the documentation of this file.
1 /*---------------------------------------------------------------------------*\
2  ========= |
3  \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4  \\ / O peration |
5  \\ / A nd | Copyright (C) 2011-2016 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 Class
25  Foam::fixedJumpFvPatchField
26 
27 Group
28  grpCoupledBoundaryConditions
29 
30 Description
31  This boundary condition provides a jump condition, using the \c cyclic
32  condition as a base.
33 
34  The jump is specified as a fixed value field, applied as an offset to the
35  'owner' patch.
36 
37 Usage
38  \table
39  Property | Description | Required | Default value
40  patchType | underlying patch type should be \c cyclic| yes |
41  jump | current jump value | yes |
42  \endtable
43 
44  Example of the boundary condition specification:
45  \verbatim
46  <patchName>
47  {
48  type fixedJump;
49  patchType cyclic;
50  jump uniform 10;
51  }
52  \endverbatim
53 
54  The above example shows the use of a fixed jump of '10'.
55 
56 Note
57  The underlying \c patchType should be set to \c cyclic
58 
59 See also
60  Foam::jumpCyclicFvPatchField
61 
62 SourceFiles
63  fixedJumpFvPatchField.C
64 
65 \*---------------------------------------------------------------------------*/
66 
67 #ifndef fixedJumpFvPatchField_H
68 #define fixedJumpFvPatchField_H
69 
70 #include "jumpCyclicFvPatchField.H"
71 
72 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
73 
74 namespace Foam
75 {
76 
77 /*---------------------------------------------------------------------------*\
78  Class fixedJumpFvPatchField Declaration
79 \*---------------------------------------------------------------------------*/
80 
81 template<class Type>
82 class fixedJumpFvPatchField
83 :
84  public jumpCyclicFvPatchField<Type>
85 {
86 
87 protected:
88 
89  // Protected data
90 
91  //- "jump" field
92  Field<Type> jump_;
93 
94 
95 public:
96 
97  //- Runtime type information
98  TypeName("fixedJump");
99 
100  // Constructors
101 
102  //- Construct from patch and internal field
104  (
105  const fvPatch&,
107  );
108 
109  //- Construct from patch, internal field and dictionary
111  (
112  const fvPatch&,
114  const dictionary&
115  );
116 
117  //- Construct by mapping given fixedJumpFvPatchField onto a
118  // new patch
120  (
122  const fvPatch&,
124  const fvPatchFieldMapper&
125  );
126 
127  //- Construct as copy
129  (
131  );
132 
133  //- Construct and return a clone
134  virtual tmp<fvPatchField<Type>> clone() const
135  {
136  return tmp<fvPatchField<Type>>
137  (
138  new fixedJumpFvPatchField<Type>(*this)
139  );
140  }
141 
142  //- Construct as copy setting internal field reference
144  (
147  );
149  //- Construct and return a clone setting internal field reference
151  (
153  ) const
154  {
155  return tmp<fvPatchField<Type>>
156  (
157  new fixedJumpFvPatchField<Type>(*this, iF)
158  );
159  }
160 
161 
162  // Member functions
163 
164  // Access
166  //- Return the "jump" across the patch
167  virtual tmp<Field<Type>> jump() const;
168 
169 
170  // Mapping functions
171 
172  //- Map (and resize as needed) from self given a mapping object
173  virtual void autoMap
174  (
175  const fvPatchFieldMapper&
176  );
177 
178  //- Reverse map the given fvPatchField onto this fvPatchField
179  virtual void rmap
180  (
181  const fvPatchField<Type>&,
182  const labelList&
183  );
184 
185 
186  //- Write
187  virtual void write(Ostream&) const;
188 };
189 
190 
191 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
192 
193 } // End namespace Foam
194 
195 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
196 
197 #ifdef NoRepository
198  #include "fixedJumpFvPatchField.C"
199 #endif
200 
201 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
202 
203 #endif
204 
205 // ************************************************************************* //
TypeName("fixedJump")
Runtime type information.
A list of keyword definitions, which are a keyword followed by any number of values (e...
Definition: dictionary.H:137
A finiteVolume patch using a polyPatch and a fvBoundaryMesh.
Definition: fvPatch.H:61
Field< Type > jump_
"jump" field
Abstract base class with a fat-interface to all derived classes covering all possible ways in which t...
Definition: fvPatchField.H:66
fixedJumpFvPatchField(const fvPatch &, const DimensionedField< Type, volMesh > &)
Construct from patch and internal field.
Foam::fvPatchFieldMapper.
virtual void write(Ostream &) const
Write.
An Ostream is an abstract base class for all output systems (streams, files, token lists...
Definition: Ostream.H:53
virtual tmp< fvPatchField< Type > > clone() const
Construct and return a clone.
This boundary condition provides a jump condition, using the cyclic condition as a base...
virtual void rmap(const fvPatchField< Type > &, const labelList &)
Reverse map the given fvPatchField onto this fvPatchField.
Field with dimensions and associated with geometry type GeoMesh which is used to size the field and a...
virtual tmp< Field< Type > > jump() const
Return the "jump" across the patch.
virtual void autoMap(const fvPatchFieldMapper &)
Map (and resize as needed) from self given a mapping object.
A class for managing temporary objects.
Definition: PtrList.H:53
Namespace for OpenFOAM.