mixedFixedValueSlipFvPatchField.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-2017 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::mixedFixedValueSlipFvPatchField
26 
27 Description
28  A mixed boundary type that blends between fixedValue and slip, as opposed
29  to the standard mixed condition that blends between fixedValue and
30  fixedGradient; required to implement maxwellSlipU condition.
31 
32 SourceFiles
33  mixedFixedValueSlipFvPatchField.C
34 
35 \*---------------------------------------------------------------------------*/
36 
37 #ifndef mixedFixedValueSlipFvPatchField_H
38 #define mixedFixedValueSlipFvPatchField_H
39 
40 #include "transformFvPatchField.H"
41 
42 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
43 
44 namespace Foam
45 {
46 
47 /*---------------------------------------------------------------------------*\
48  Class mixedFixedValueSlipFvPatch Declaration
49 \*---------------------------------------------------------------------------*/
50 
51 template<class Type>
53 :
54  public transformFvPatchField<Type>
55 {
56  // Private data
57 
58  //- Value field used for boundary condition
59  Field<Type> refValue_;
60 
61  //- Fraction (0-1) of value used for boundary condition
62  scalarField valueFraction_;
63 
64 public:
65 
66  //- Runtime type information
67  TypeName("mixedFixedValueSlip");
68 
69 
70  // Constructors
71 
72  //- Construct from patch and internal field
74  (
75  const fvPatch&,
77  );
78 
79  //- Construct from patch, internal field and dictionary
81  (
82  const fvPatch&,
84  const dictionary&
85  );
86 
87  //- Construct by mapping given mixedFixedValueSlipFvPatchField
88  //- Onto a new patch
90  (
92  const fvPatch&,
94  const fvPatchFieldMapper&
95  );
96 
97  //- Construct as copy
99  (
101  );
102 
103  //- Construct and return a clone
104  virtual tmp<fvPatchField<Type>> clone() const
105  {
106  return tmp<fvPatchField<Type>>
107  (
109  );
110  }
111 
112  //- Construct as copy setting internal field reference
114  (
117  );
118 
119  //- Construct and return a clone setting internal field reference
121  (
123  ) const
124  {
125  return tmp<fvPatchField<Type>>
126  (
128  );
129  }
130 
131  // Member functions
132 
133  // Access
134 
135  //- Return false: this patch field is not altered by assignment
136  virtual bool assignable() const
137  {
138  return false;
139  }
140 
141 
142  // Mapping functions
143 
144  //- Map (and resize as needed) from self given a mapping object
145  virtual void autoMap
146  (
147  const fvPatchFieldMapper&
148  );
149 
150  //- Reverse map the given fvPatchField onto this fvPatchField
151  virtual void rmap
152  (
153  const fvPatchField<Type>&,
154  const labelList&
155  );
156 
157  // Return defining fields
159  virtual Field<Type>& refValue()
160  {
161  return refValue_;
162  }
164  virtual const Field<Type>& refValue() const
165  {
166  return refValue_;
167  }
169  virtual scalarField& valueFraction()
170  {
171  return valueFraction_;
172  }
174  virtual const scalarField& valueFraction() const
175  {
176  return valueFraction_;
177  }
178 
179  // Evaluation functions
180 
181  //- Return gradient at boundary
182  virtual tmp<Field<Type>> snGrad() const;
183 
184  //- Evaluate the patch field
185  virtual void evaluate
186  (
187  const Pstream::commsTypes commsType=
189  );
190 
191  //- Return face-gradient transform diagonal
192  virtual tmp<Field<Type>> snGradTransformDiag() const;
193 
194 
195  //- Write
196  virtual void write(Ostream&) const;
197 
198 
199  // Member operators
201  virtual void operator=(const UList<Type>&) {}
203  virtual void operator=(const fvPatchField<Type>&) {}
204  virtual void operator+=(const fvPatchField<Type>&) {}
205  virtual void operator-=(const fvPatchField<Type>&) {}
206  virtual void operator*=(const fvPatchField<scalar>&) {}
207  virtual void operator/=(const fvPatchField<scalar>&) {}
209  virtual void operator+=(const Field<Type>&) {}
210  virtual void operator-=(const Field<Type>&) {}
212  virtual void operator*=(const Field<scalar>&) {}
213  virtual void operator/=(const Field<scalar>&) {}
215  virtual void operator=(const Type&) {}
216  virtual void operator+=(const Type&) {}
217  virtual void operator-=(const Type&) {}
218  virtual void operator*=(const scalar) {}
219  virtual void operator/=(const scalar) {}
220 };
221 
222 
223 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
224 
225 } // End namespace Foam
226 
227 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
228 
229 #ifdef NoRepository
231 #endif
232 
233 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
234 
235 #endif
236 
237 // ************************************************************************* //
A list of keyword definitions, which are a keyword followed by any number of values (e...
Definition: dictionary.H:137
commsTypes
Types of communications.
Definition: UPstream.H:64
virtual void operator=(const UList< Type > &)
A finiteVolume patch using a polyPatch and a fvBoundaryMesh.
Definition: fvPatch.H:61
virtual tmp< fvPatchField< Type > > clone() const
Construct and return a clone.
Abstract base class with a fat-interface to all derived classes covering all possible ways in which t...
Definition: fvPatchField.H:66
virtual tmp< Field< Type > > snGradTransformDiag() const
Return face-gradient transform diagonal.
virtual tmp< Field< Type > > snGrad() const
Return gradient at boundary.
virtual void evaluate(const Pstream::commsTypes commsType=Pstream::commsTypes::blocking)
Evaluate the patch field.
virtual void operator*=(const fvPatchField< scalar > &)
TypeName("mixedFixedValueSlip")
Runtime type information.
Pre-declare SubField and related Field type.
Definition: Field.H:57
virtual void operator/=(const fvPatchField< scalar > &)
Foam::fvPatchFieldMapper.
An Ostream is an abstract base class for all output systems (streams, files, token lists...
Definition: Ostream.H:53
virtual bool assignable() const
Return false: this patch field is not altered by assignment.
Foam::transformFvPatchField.
virtual void rmap(const fvPatchField< Type > &, const labelList &)
Reverse map the given fvPatchField onto this fvPatchField.
virtual void write(Ostream &) const
Write.
Field with dimensions and associated with geometry type GeoMesh which is used to size the field and a...
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
virtual void operator+=(const fvPatchField< Type > &)
A mixed boundary type that blends between fixedValue and slip, as opposed to the standard mixed condi...
virtual void operator-=(const fvPatchField< Type > &)
Namespace for OpenFOAM.
mixedFixedValueSlipFvPatchField(const fvPatch &, const DimensionedField< Type, volMesh > &)
Construct from patch and internal field.