fixedNormalSlipPointPatchField.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 
28 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
29 
30 template<class Type>
32 (
33  const pointPatch& p,
34  const DimensionedField<Type, pointMesh>& iF
35 )
36 :
37  slipPointPatchField<Type>(p, iF),
38  n_(vector::max)
39 {}
40 
41 
42 template<class Type>
44 (
45  const pointPatch& p,
46  const DimensionedField<Type, pointMesh>& iF,
47  const dictionary& dict
48 )
49 :
50  slipPointPatchField<Type>(p, iF, dict),
51  n_(dict.lookup("n"))
52 {}
53 
54 
55 template<class Type>
57 (
58  const fixedNormalSlipPointPatchField<Type>& ptf,
59  const pointPatch& p,
60  const DimensionedField<Type, pointMesh>& iF,
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 (
72  const fixedNormalSlipPointPatchField<Type>& ptf,
73  const DimensionedField<Type, pointMesh>& iF
74 )
75 :
76  slipPointPatchField<Type>(ptf, iF),
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->internalField());
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 // ************************************************************************* //
Foam::token::END_STATEMENT
@ END_STATEMENT
Definition: token.H:99
Foam::fixedNormalSlipPointPatchField::write
virtual void write(Ostream &) const
Write.
Definition: fixedNormalSlipPointPatchField.C:100
p
p
Definition: pEqn.H:62
Foam::tmp
A class for managing temporary objects.
Definition: PtrList.H:118
Foam::fixedNormalSlipPointPatchField::evaluate
virtual void evaluate(const Pstream::commsTypes commsType=Pstream::blocking)
Update the patch field.
Definition: fixedNormalSlipPointPatchField.C:85
Foam::transform
dimensionSet transform(const dimensionSet &)
Definition: dimensionSet.C:465
Foam::Field< Type >
Foam::nl
static const char nl
Definition: Ostream.H:260
fixedNormalSlipPointPatchField.H
Foam::pointPatchField< Type >::write
virtual void write(Ostream &) const
Write.
Definition: pointPatchField.C:119
Foam::I
static const sphericalTensor I(1)
dict
dictionary dict
Definition: searchingEngine.H:14
Foam::vector
Vector< scalar > vector
A scalar version of the templated Vector.
Definition: vector.H:49
internalField
conserve internalField()+
Foam::max
dimensioned< Type > max(const dimensioned< Type > &, const dimensioned< Type > &)
Foam::UPstream::commsTypes
commsTypes
Types of communications.
Definition: UPstream.H:64
Foam::Ostream::writeKeyword
Ostream & writeKeyword(const keyType &)
Write the keyword followed by an appropriate indentation.
Definition: Ostream.C:59
Foam::Ostream
An Ostream is an abstract base class for all output systems (streams, files, token lists,...
Definition: Ostream.H:53
Foam::fixedNormalSlipPointPatchField::fixedNormalSlipPointPatchField
fixedNormalSlipPointPatchField(const pointPatch &, const DimensionedField< Type, pointMesh > &)
Construct from patch and internal field.
lookup
stressControl lookup("compactNormalStress") >> compactNormalStress