calculatedFvsPatchField.C
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-2018 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 \*---------------------------------------------------------------------------*/
25 
27 #include "fvPatchFieldMapper.H"
28 
29 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
30 
31 template<class Type>
33 {
35 }
36 
37 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
38 
39 template<class Type>
41 (
42  const fvPatch& p,
44 )
45 :
47 {}
48 
49 
50 template<class Type>
52 (
53  const fvPatch& p,
55  const dictionary& dict
56 )
57 :
58  fvsPatchField<Type>(p, iF, Field<Type>("value", dict, p.size()))
59 {}
60 
61 
62 template<class Type>
64 (
66  const fvPatch& p,
68  const fvPatchFieldMapper& mapper
69 )
70 :
71  fvsPatchField<Type>(ptf, p, iF, mapper)
72 {}
73 
74 
75 template<class Type>
77 (
79 )
80 :
82 {}
83 
84 
85 template<class Type>
87 (
90 )
91 :
92  fvsPatchField<Type>(ptf, iF)
93 {}
94 
95 
96 template<class Type>
99 (
100  const fvPatch& p
101 )
102 {
103  typename patchConstructorTable::iterator patchTypeCstrIter =
104  patchConstructorTablePtr_->find(p.type());
105 
106  if (patchTypeCstrIter != patchConstructorTablePtr_->end())
107  {
108  return patchTypeCstrIter()
109  (
110  p,
112  );
113  }
114  else
115  {
117  (
119  (
120  p,
122  )
123  );
124  }
125 }
126 
127 
128 template<class Type>
129 template<class Type2>
132 (
133  const fvsPatchField<Type2>& pf
134 )
135 {
136  return NewCalculatedType(pf.patch());
137 }
138 
139 
140 // ************************************************************************* //
dictionary dict
A list of keyword definitions, which are a keyword followed by any number of values (e...
Definition: dictionary.H:158
calculatedFvsPatchField(const fvPatch &, const DimensionedField< Type, surfaceMesh > &)
Construct from patch and internal field.
void size(const label)
Override size to be inconsistent with allocated storage.
Definition: ListI.H:163
A finiteVolume patch using a polyPatch and a fvBoundaryMesh.
Definition: fvPatch.H:61
static tmp< fvsPatchField< Type > > NewCalculatedType(const fvPatch &)
Return a pointer to a new calculatedFvsPatchField created on.
A class for handling words, derived from string.
Definition: word.H:59
Foam::fvPatchFieldMapper.
const fvPatch & patch() const
Return patch.
Field with dimensions and associated with geometry type GeoMesh which is used to size the field and a...
Foam::calculatedFvsPatchField.
volScalarField & p
A class for managing temporary objects.
Definition: PtrList.H:53
static const word & calculatedType()
Return the type of the calculated for of fvsPatchField.
An abstract base class with a fat-interface to all derived classes covering all possible ways in whic...
Definition: fvsPatchField.H:65