slicedFvPatchField.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 | www.openfoam.com
6  \\/ M anipulation |
7 -------------------------------------------------------------------------------
8  Copyright (C) 2011-2017 OpenFOAM Foundation
9  Copyright (C) 2017-2023 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 Class
28  Foam::slicedFvPatchField
29 
30 Group
31  grpGenericBoundaryConditions
32 
33 Description
34  Specialization of fvPatchField which creates the underlying
35  fvPatchField as a slice of the given complete field.
36 
37  The destructor is wrapped to avoid deallocation of the storage of the
38  complete fields when this is destroyed.
39 
40  Should only used as a template argument for SlicedGeometricField.
41 
42 See also
43  Foam::fvPatchField
44 
45 SourceFiles
46  slicedFvPatchField.C
47 
48 \*---------------------------------------------------------------------------*/
49 
50 #ifndef Foam_slicedFvPatchField_H
51 #define Foam_slicedFvPatchField_H
52 
53 #include "fvPatchField.H"
54 #include "processorFvPatch.H"
55 
56 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
57 
58 namespace Foam
59 {
60 
61 /*---------------------------------------------------------------------------*\
62  Class slicedFvPatchField Declaration
63 \*---------------------------------------------------------------------------*/
64 
65 template<class Type>
67 :
68  public fvPatchField<Type>
69 {
70 public:
71 
72  //- The mesh processor patch type
74 
75 
76  //- Runtime type information
77  TypeName("sliced");
78 
79 
80  // Constructors
81 
82  //- Construct from patch, internal field and field to slice
84  (
85  const fvPatch&,
87  const Field<Type>& completeOrBoundaryField,
88  const bool isBoundaryOnly = false
89  );
90 
91  //- Construct from patch and internal field. Assign value later.
93  (
94  const fvPatch&,
96  );
97 
98  //- Construct from patch, internal field and dictionary
100  (
101  const fvPatch&,
103  const dictionary&
104  );
105 
106  //- Construct by mapping the given sliced patch field onto a new patch
108  (
110  const fvPatch&,
112  const fvPatchFieldMapper&
113  );
114 
115  //- Construct as copy
117 
118  //- Construct and return a clone
119  virtual tmp<fvPatchField<Type>> clone() const;
120 
121  //- Construct as copy setting internal field reference
123  (
126  );
127 
128  //- Construct and return a clone setting internal field reference
130  (
132  ) const;
133 
134 
135  //- Destructor
136  virtual ~slicedFvPatchField<Type>();
137 
138 
139  // Member Functions
140 
141  //- True: this patch field fixes a value.
142  virtual bool fixesValue() const { return true; }
143 
144  //- False: this patch field is not altered by assignment.
145  virtual bool assignable() const { return false; }
146 
147 
148  // Evaluation functions
149 
150  //- Return patch-normal gradient
151  virtual tmp<Field<Type>> snGrad() const;
152 
153  //- Return internal field next to patch as patch field
154  virtual tmp<Field<Type>> patchInternalField() const;
155 
156  //- Return internal field next to patch as patch field
157  virtual void patchInternalField(Field<Type>&) const;
158 
159  //- Return neighbour coupled given internal cell data
160  virtual tmp<Field<Type>> patchNeighbourField
161  (
162  const Field<Type>& iField
163  ) const;
164 
165  //- Return patchField of the values on the patch or on the
166  // opposite patch
167  virtual tmp<Field<Type>> patchNeighbourField() const;
168 
169  //- Initialise the evaluation of the patch field
170  virtual void initEvaluate
171  (
172  const Pstream::commsTypes commsType =
174  )
175  {}
176 
177  //- Evaluate the patch field, sets updated() to false
178  virtual void evaluate
179  (
180  const Pstream::commsTypes commsType =
182  )
183  {}
184 
185  //- Return the matrix diagonal coefficients corresponding to the
186  // evaluation of the value of this patchField with given weights
187  virtual tmp<Field<Type>> valueInternalCoeffs
188  (
189  const tmp<scalarField>&
190  ) const;
191 
192  //- Return the matrix source coefficients corresponding to the
193  // evaluation of the value of this patchField with given weights
194  virtual tmp<Field<Type>> valueBoundaryCoeffs
195  (
196  const tmp<scalarField>&
197  ) const;
198 
199  //- Return the matrix diagonal coefficients corresponding to the
200  // evaluation of the gradient of this patchField
201  virtual tmp<Field<Type>> gradientInternalCoeffs() const;
202 
203  //- Return the matrix source coefficients corresponding to the
204  // evaluation of the gradient of this patchField
206 
207 
208  //- Write
209  virtual void write(Ostream&) const;
210 
211 
212  // Member operators
213 
214  virtual void operator=(const UList<Type>&) {}
216  virtual void operator=(const fvPatchField<Type>&) {}
217  virtual void operator+=(const fvPatchField<Type>&) {}
218  virtual void operator-=(const fvPatchField<Type>&) {}
219  virtual void operator*=(const fvPatchField<scalar>&) {}
220  virtual void operator/=(const fvPatchField<scalar>&) {}
221 
222  virtual void operator+=(const Field<Type>&) {}
223  virtual void operator-=(const Field<Type>&) {}
224 
225  virtual void operator*=(const Field<scalar>&) {}
226  virtual void operator/=(const Field<scalar>&) {}
227 
228  virtual void operator=(const Type&) {}
229  virtual void operator+=(const Type&) {}
230  virtual void operator-=(const Type&) {}
231  virtual void operator*=(const scalar) {}
232  virtual void operator/=(const scalar) {}
233 };
234 
235 
236 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
237 
238 } // End namespace Foam
239 
240 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
241 
242 #ifdef NoRepository
243  #include "slicedFvPatchField.C"
244 #endif
245 
246 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
247 
248 #endif
249 
250 // ************************************************************************* //
Specialization of fvPatchField which creates the underlying fvPatchField as a slice of the given comp...
virtual tmp< Field< Type > > patchInternalField() const
Return internal field next to patch as patch field.
virtual bool assignable() const
False: this patch field is not altered by assignment.
"blocking" : (MPI_Bsend, MPI_Recv)
slicedFvPatchField(const fvPatch &, const DimensionedField< Type, volMesh > &, const Field< Type > &completeOrBoundaryField, const bool isBoundaryOnly=false)
Construct from patch, internal field and field to slice.
virtual void evaluate(const Pstream::commsTypes commsType=Pstream::commsTypes::blocking)
Evaluate the patch field, sets updated() to false.
processorFvPatch processorPatchType
The mesh processor patch type.
commsTypes
Communications types.
Definition: UPstream.H:72
A list of keyword definitions, which are a keyword followed by a number of values (eg...
Definition: dictionary.H:129
A finiteVolume patch using a polyPatch and a fvBoundaryMesh.
Definition: fvPatch.H:70
virtual tmp< Field< Type > > patchNeighbourField() const
Return patchField of the values on the patch or on the.
Abstract base class with a fat-interface to all derived classes covering all possible ways in which t...
virtual tmp< fvPatchField< Type > > clone() const
Construct and return a clone.
virtual tmp< Field< Type > > valueInternalCoeffs(const tmp< scalarField > &) const
Return the matrix diagonal coefficients corresponding to the.
Generic templated field type.
Definition: Field.H:62
A FieldMapper for finite-volume patch fields.
Processor patch.
virtual void operator+=(const fvPatchField< Type > &)
virtual tmp< Field< Type > > gradientBoundaryCoeffs() const
Return the matrix source coefficients corresponding to the.
An Ostream is an abstract base class for all output systems (streams, files, token lists...
Definition: Ostream.H:56
virtual bool fixesValue() const
True: this patch field fixes a value.
virtual void operator-=(const fvPatchField< Type > &)
virtual void write(Ostream &) const
Write.
TypeName("sliced")
Runtime type information.
virtual void operator*=(const fvPatchField< scalar > &)
virtual void operator/=(const fvPatchField< scalar > &)
virtual tmp< Field< Type > > snGrad() const
Return patch-normal gradient.
Field with dimensions and associated with geometry type GeoMesh which is used to size the field and a...
Definition: areaFieldsFwd.H:42
virtual tmp< Field< Type > > gradientInternalCoeffs() const
Return the matrix diagonal coefficients corresponding to the.
virtual tmp< Field< Type > > valueBoundaryCoeffs(const tmp< scalarField > &) const
Return the matrix source coefficients corresponding to the.
A class for managing temporary objects.
Definition: HashPtrTable.H:50
virtual void initEvaluate(const Pstream::commsTypes commsType=Pstream::commsTypes::blocking)
Initialise the evaluation of the patch field.
Namespace for OpenFOAM.
virtual void operator=(const UList< Type > &)