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 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 namespace Foam
32 {
33 
34 // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
35 
36 template<class Type>
38 (
39  const fvPatch& p,
41 )
42 :
44 {}
45 
46 
47 template<class Type>
49 (
51  const fvPatch& p,
53  const fvPatchFieldMapper& mapper
54 )
55 :
56  fvPatchField<Type>(ptf, p, iF, mapper)
57 {}
58 
59 
60 template<class Type>
62 (
63  const fvPatch& p,
65  const dictionary& dict
66 )
67 :
69 {
70  fvPatchField<Type>::operator=(this->patchInternalField());
71 }
72 
73 
74 template<class Type>
76 (
77  const zeroGradientFvPatchField& zgpf
78 )
79 :
80  fvPatchField<Type>(zgpf)
81 {}
82 
83 
84 template<class Type>
86 (
87  const zeroGradientFvPatchField& zgpf,
88  const DimensionedField<Type, volMesh>& iF
89 )
90 :
91  fvPatchField<Type>(zgpf, iF)
92 {}
93 
94 
95 // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
96 
97 template<class Type>
99 {
100  if (!this->updated())
101  {
102  this->updateCoeffs();
103  }
104 
105  fvPatchField<Type>::operator==(this->patchInternalField());
107 }
108 
109 
110 template<class Type>
112 (
113  const tmp<scalarField>&
114 ) const
115 {
116  return tmp<Field<Type> >
117  (
118  new Field<Type>(this->size(), pTraits<Type>::one)
119  );
120 }
121 
122 
123 template<class Type>
125 (
126  const tmp<scalarField>&
127 ) const
128 {
129  return tmp<Field<Type> >
130  (
131  new Field<Type>(this->size(), pTraits<Type>::zero)
132  );
133 }
134 
135 
136 template<class Type>
138 {
139  return tmp<Field<Type> >
140  (
141  new Field<Type>(this->size(), pTraits<Type>::zero)
142  );
143 }
144 
145 
146 template<class Type>
148 {
149  return tmp<Field<Type> >
150  (
151  new Field<Type>(this->size(), pTraits<Type>::zero)
152  );
153 }
154 
155 
156 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
157 
158 } // End namespace Foam
159 
160 // ************************************************************************* //
Foam::fvPatchField< Type >
Foam::fvPatchField::operator=
virtual void operator=(const UList< Type > &)
Foam::fvPatchField::operator==
virtual void operator==(const fvPatchField< Type > &)
Foam::fvPatchField::evaluate
virtual void evaluate(const Pstream::commsTypes commsType=Pstream::blocking)
Evaluate the patch field, sets Updated to false.
Definition: fvPatchField.C:318
p
p
Definition: pEqn.H:62
Foam::tmp
A class for managing temporary objects.
Definition: PtrList.H:118
Foam::zeroGradientFvPatchField::gradientBoundaryCoeffs
virtual tmp< Field< Type > > gradientBoundaryCoeffs() const
Return the matrix source coefficients corresponding to the.
Definition: zeroGradientFvPatchField.C:147
fvPatchFieldMapper.H
zeroGradientFvPatchField.H
Foam::zeroGradientFvPatchField::zeroGradientFvPatchField
zeroGradientFvPatchField(const fvPatch &, const DimensionedField< Type, volMesh > &)
Construct from patch and internal field.
Definition: zeroGradientFvPatchField.C:38
Foam::zeroGradientFvPatchField
This boundary condition applies a zero-gradient condition from the patch internal field onto the patc...
Definition: zeroGradientFvPatchField.H:63
Foam::zeroGradientFvPatchField::gradientInternalCoeffs
virtual tmp< Field< Type > > gradientInternalCoeffs() const
Return the matrix diagonal coefficients corresponding to the.
Definition: zeroGradientFvPatchField.C:137
Foam::zeroGradientFvPatchField::valueBoundaryCoeffs
virtual tmp< Field< Type > > valueBoundaryCoeffs(const tmp< scalarField > &) const
Return the matrix source coefficients corresponding to the.
Definition: zeroGradientFvPatchField.C:125
Foam::Field< Type >
Foam::fvPatch
A finiteVolume patch using a polyPatch and a fvBoundaryMesh.
Definition: fvPatch.H:61
dict
dictionary dict
Definition: searchingEngine.H:14
Foam::dictionary
A list of keyword definitions, which are a keyword followed by any number of values (e....
Definition: dictionary.H:137
Foam
Namespace for OpenFOAM.
Definition: combustionModel.C:30
Foam::UPstream::commsTypes
commsTypes
Types of communications.
Definition: UPstream.H:64
Foam::zeroGradientFvPatchField::valueInternalCoeffs
virtual tmp< Field< Type > > valueInternalCoeffs(const tmp< scalarField > &) const
Return the matrix diagonal coefficients corresponding to the.
Definition: zeroGradientFvPatchField.C:112
Foam::zeroGradientFvPatchField::evaluate
virtual void evaluate(const Pstream::commsTypes commsType=Pstream::blocking)
Evaluate the patch field.
Definition: zeroGradientFvPatchField.C:98
Foam::pTraits
Traits class for primitives.
Definition: pTraits.H:50
Foam::fvPatchFieldMapper
Foam::fvPatchFieldMapper.
Definition: fvPatchFieldMapper.H:45
Foam::DimensionedField
Field with dimensions and associated with geometry type GeoMesh which is used to size the field and a...
Definition: DimensionedField.H:51