mixedFixedValueSlipFvPatchField.H
Go to the documentation of this file.
1 /*---------------------------------------------------------------------------*\
2  ========= |
3  \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4  \\ / O peration | Website: https://openfoam.org
5  \\ / A nd | Copyright (C) 2011-2020 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  //- Disallow copy without setting internal field reference
99  (
101  ) = delete;
102 
103  //- Copy constructor setting internal field reference
105  (
108  );
109 
110  //- Construct and return a clone setting internal field reference
112  (
114  ) const
115  {
116  return tmp<fvPatchField<Type>>
117  (
119  );
120  }
121 
122  // Member Functions
123 
124  // Access
125 
126  //- Return false: this patch field is not altered by assignment
127  virtual bool assignable() const
128  {
129  return false;
130  }
131 
132 
133  // Mapping functions
134 
135  //- Map (and resize as needed) from self given a mapping object
136  // Used to update fields following mesh topology change
137  virtual void autoMap(const fvPatchFieldMapper&);
138 
139  //- Reverse map the given fvPatchField onto this fvPatchField
140  // Used to reconstruct fields
141  virtual void rmap(const fvPatchField<Type>&, const labelList&);
142 
143 
144  // Return defining fields
146  virtual Field<Type>& refValue()
147  {
148  return refValue_;
149  }
151  virtual const Field<Type>& refValue() const
152  {
153  return refValue_;
154  }
156  virtual scalarField& valueFraction()
157  {
158  return valueFraction_;
159  }
161  virtual const scalarField& valueFraction() const
162  {
163  return valueFraction_;
164  }
165 
166  // Evaluation functions
167 
168  //- Return gradient at boundary
169  virtual tmp<Field<Type>> snGrad() const;
170 
171  //- Evaluate the patch field
172  virtual void evaluate
173  (
174  const Pstream::commsTypes commsType=
176  );
177 
178  //- Return face-gradient transform diagonal
179  virtual tmp<Field<Type>> snGradTransformDiag() const;
180 
181 
182  //- Write
183  virtual void write(Ostream&) const;
184 
185 
186  // Member Operators
188  virtual void operator=(const UList<Type>&) {}
190  virtual void operator=(const fvPatchField<Type>&) {}
191  virtual void operator+=(const fvPatchField<Type>&) {}
192  virtual void operator-=(const fvPatchField<Type>&) {}
193  virtual void operator*=(const fvPatchField<scalar>&) {}
194  virtual void operator/=(const fvPatchField<scalar>&) {}
196  virtual void operator+=(const Field<Type>&) {}
197  virtual void operator-=(const Field<Type>&) {}
199  virtual void operator*=(const Field<scalar>&) {}
200  virtual void operator/=(const Field<scalar>&) {}
202  virtual void operator=(const Type&) {}
203  virtual void operator+=(const Type&) {}
204  virtual void operator-=(const Type&) {}
205  virtual void operator*=(const scalar) {}
206  virtual void operator/=(const scalar) {}
207 };
208 
209 
210 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
211 
212 } // End namespace Foam
213 
214 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
215 
216 #ifdef NoRepository
218 #endif
219 
220 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
221 
222 #endif
223 
224 // ************************************************************************* //
A list of keyword definitions, which are a keyword followed by any number of values (e...
Definition: dictionary.H:156
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:62
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:56
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:54
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...
tmp< fvPatchField< Type > > clone() const
Disallow clone without setting internal field reference.
Definition: fvPatchField.H:199
virtual void operator-=(const fvPatchField< Type > &)
Namespace for OpenFOAM.
mixedFixedValueSlipFvPatchField(const fvPatch &, const DimensionedField< Type, volMesh > &)
Construct from patch and internal field.