fixedNormalSlipPointPatchField.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 
28 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
29 
30 template<class Type>
32 (
33  const pointPatch& p,
35 )
36 :
38  n_(vector::max)
39 {}
40 
41 
42 template<class Type>
44 (
45  const pointPatch& p,
47  const dictionary& dict
48 )
49 :
51  n_(dict.lookup("n"))
52 {}
53 
54 
55 template<class Type>
57 (
59  const pointPatch& p,
61  const pointPatchFieldMapper& mapper
62 )
63 :
64  slipPointPatchField<Type>(ptf, p, iF, mapper),
65  n_(ptf.n_)
66 {}
67 
68 
69 template<class Type>
71 (
74 )
75 :
77  n_(ptf.n_)
78 {}
79 
80 
81 // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
82 
83 template<class Type>
85 (
87 )
88 {
89  tmp<Field<Type>> tvalues =
90  transform(I - n_*n_, this->patchInternalField());
91 
92  // Get internal field to insert values into
93  Field<Type>& iF = const_cast<Field<Type>&>(this->primitiveField());
94 
95  this->setInInternalField(iF, tvalues());
96 }
97 
98 
99 template<class Type>
101 {
103  os.writeKeyword("n")
104  << n_ << token::END_STATEMENT << nl;
105 }
106 
107 
108 // ************************************************************************* //
dictionary dict
A list of keyword definitions, which are a keyword followed by any number of values (e...
Definition: dictionary.H:158
dimensioned< Type > max(const dimensioned< Type > &, const dimensioned< Type > &)
commsTypes
Types of communications.
Definition: UPstream.H:64
Foam::pointPatchFieldMapper.
void write(Ostream &, const label, const dictionary &)
Write with dictionary lookup.
fixedNormalSlipPointPatchField(const pointPatch &, const DimensionedField< Type, pointMesh > &)
Construct from patch and internal field.
static const Identity< scalar > I
Definition: Identity.H:93
Pre-declare SubField and related Field type.
Definition: Field.H:56
Foam::slipPointPatchField.
An Ostream is an abstract base class for all output systems (streams, files, token lists...
Definition: Ostream.H:53
static const char nl
Definition: Ostream.H:265
Ostream & writeKeyword(const keyType &)
Write the keyword followed by an appropriate indentation.
Definition: Ostream.C:54
Basic pointPatch represents a set of points from the mesh.
Definition: pointPatch.H:56
virtual void evaluate(const Pstream::commsTypes commsType=Pstream::commsTypes::blocking)
Update the patch field.
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
virtual void write(Ostream &) const
Write.
dimensionSet transform(const dimensionSet &)
Definition: dimensionSet.C:477
ITstream & lookup(const word &, bool recursive=false, bool patternMatch=true) const
Find and return an entry data stream.
Definition: dictionary.C:583