zeroGradientFvPatchField.C
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 \*---------------------------------------------------------------------------*/
25 
27 #include "fvPatchFieldMapper.H"
28 
29 // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
30 
31 template<class Type>
33 (
34  const fvPatch& p,
36 )
37 :
39 {}
40 
41 
42 template<class Type>
44 (
45  const fvPatch& p,
47  const dictionary& dict
48 )
49 :
50  fvPatchField<Type>(p, iF, dict, false)
51 {
52  fvPatchField<Type>::operator=(this->patchInternalField());
53 }
54 
55 
56 template<class Type>
58 (
60  const fvPatch& p,
62  const fvPatchFieldMapper& mapper
63 )
64 :
65  fvPatchField<Type>(ptf, p, iF, mapper)
66 {}
67 
68 
69 template<class Type>
71 (
72  const zeroGradientFvPatchField& zgpf
73 )
74 :
75  fvPatchField<Type>(zgpf)
76 {}
77 
78 
79 template<class Type>
81 (
82  const zeroGradientFvPatchField& zgpf,
84 )
85 :
86  fvPatchField<Type>(zgpf, iF)
87 {}
88 
89 
90 // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
91 
92 template<class Type>
94 {
95  if (!this->updated())
96  {
97  this->updateCoeffs();
98  }
99 
100  fvPatchField<Type>::operator==(this->patchInternalField());
102 }
103 
104 
105 template<class Type>
108 (
109  const tmp<scalarField>&
110 ) const
111 {
112  return tmp<Field<Type>>
113  (
114  new Field<Type>(this->size(), pTraits<Type>::one)
115  );
116 }
117 
118 
119 template<class Type>
122 (
123  const tmp<scalarField>&
124 ) const
125 {
126  return tmp<Field<Type>>
127  (
128  new Field<Type>(this->size(), Zero)
129  );
130 }
131 
132 
133 template<class Type>
136 {
137  return tmp<Field<Type>>
138  (
139  new Field<Type>(this->size(), Zero)
140  );
141 }
142 
143 
144 template<class Type>
147 {
148  return tmp<Field<Type>>
149  (
150  new Field<Type>(this->size(), Zero)
151  );
152 }
153 
154 
155 // ************************************************************************* //
dictionary dict
virtual void evaluate(const Pstream::commsTypes commsType=Pstream::commsTypes::blocking)
Evaluate the patch field.
A list of keyword definitions, which are a keyword followed by any number of values (e...
Definition: dictionary.H:137
virtual tmp< Field< Type > > valueInternalCoeffs(const tmp< scalarField > &) const
Return the matrix diagonal coefficients corresponding to the.
commsTypes
Types of communications.
Definition: UPstream.H:64
A finiteVolume patch using a polyPatch and a fvBoundaryMesh.
Definition: fvPatch.H:61
Traits class for primitives.
Definition: pTraits.H:50
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 > > 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.
Pre-declare SubField and related Field type.
Definition: Field.H:57
tmp< fvMatrix< Type > > operator==(const fvMatrix< Type > &, const fvMatrix< Type > &)
Foam::fvPatchFieldMapper.
virtual tmp< Field< Type > > gradientBoundaryCoeffs() const
Return the matrix source coefficients corresponding to the.
static const zero Zero
Definition: zero.H:91
zeroGradientFvPatchField(const fvPatch &, const DimensionedField< Type, volMesh > &)
Construct from patch and internal field.
This boundary condition applies a zero-gradient condition from the patch internal field onto the patc...
Field with dimensions and associated with geometry type GeoMesh which is used to size the field and a...
volScalarField & p
A class for managing temporary objects.
Definition: PtrList.H:53