UniformValueField.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 | www.openfoam.com
6  \\/ M anipulation |
7 -------------------------------------------------------------------------------
8  Copyright (C) 2018 OpenCFD Ltd.
9 -------------------------------------------------------------------------------
10 License
11  This file is part of OpenFOAM.
12 
13  OpenFOAM is free software: you can redistribute it and/or modify it
14  under the terms of the GNU General Public License as published by
15  the Free Software Foundation, either version 3 of the License, or
16  (at your option) any later version.
17 
18  OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
19  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
20  FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
21  for more details.
22 
23  You should have received a copy of the GNU General Public License
24  along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
25 
26 \*---------------------------------------------------------------------------*/
27 
28 #include "UniformValueField.H"
29 #include "polyMesh.H"
30 
31 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
32 
33 template<class Type>
35 (
36  const polyPatch& pp,
37  const word& type,
38  const word& entryName,
39  const dictionary& dict,
40  const bool faceValues
41 )
42 :
43  PatchFunction1<Type>(pp, entryName, dict, faceValues),
44  uniformValuePtr_
45  (
47  (
48  entryName,
49  dict,
50  type
51  )
52  )
53 {}
54 
55 
56 template<class Type>
58 (
59  const UniformValueField<Type>& ut
60 )
61 :
63  uniformValuePtr_(ut.uniformValuePtr_.clone())
64 {}
65 
66 
67 template<class Type>
69 (
70  const UniformValueField<Type>& ut,
71  const polyPatch& pp
72 )
73 :
74  PatchFunction1<Type>(ut, pp),
75  uniformValuePtr_(ut.uniformValuePtr_.clone())
76 {}
77 
78 
79 // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
80 
81 template<class Type>
83 (
84  const FieldMapper& mapper
85 )
86 {}
87 
88 
89 template<class Type>
91 (
92  const PatchFunction1<Type>& pf1,
93  const labelList& addr
94 )
95 {}
96 
97 
98 template<class Type>
100 (
101  Ostream& os
102 ) const
103 {
105  //os << token::END_STATEMENT << nl;
106  uniformValuePtr_->writeData(os);
107  //os << endl;
108 }
109 
110 
111 // ************************************************************************* //
Foam::word
A class for handling words, derived from Foam::string.
Definition: word.H:62
UniformValueField.H
writeData
const bool writeData(pdfDictionary.get< bool >("writeData"))
Foam::FieldMapper
Abstract base class to hold the Field mapping addressing and weights.
Definition: FieldMapper.H:49
Foam::PatchFunction1Types::UniformValueField::rmap
virtual void rmap(const PatchFunction1< Type > &pf1, const labelList &addr)
Reverse map the given PatchFunction1 onto this PatchFunction1.
Definition: UniformValueField.C:91
polyMesh.H
Foam::Function1
Top level data entry class for use in dictionaries. Provides a mechanism to specify a variable as a c...
Definition: Function1.H:56
Foam::PatchFunction1Types::UniformValueField::UniformValueField
UniformValueField(const polyPatch &pp, const word &type, const word &entryName, const dictionary &dict, const bool faceValues=true)
Construct from entry name and dictionary.
Definition: UniformValueField.C:35
Foam::polyPatch
A patch is a list of labels that address the faces in the global face list.
Definition: polyPatch.H:66
dict
dictionary dict
Definition: searchingEngine.H:14
Foam::dictionary
A list of keyword definitions, which are a keyword followed by a number of values (eg,...
Definition: dictionary.H:121
Foam::PatchFunction1
Top level data entry class for use in dictionaries. Provides a mechanism to specify a variable as a c...
Definition: PatchFunction1.H:63
Foam::PatchFunction1Types::UniformValueField::writeData
virtual void writeData(Ostream &os) const
Write in dictionary format.
Definition: UniformValueField.C:100
Foam::PatchFunction1Types::UniformValueField::autoMap
virtual void autoMap(const FieldMapper &mapper)
Map (and resize as needed) from self given a mapping object.
Definition: UniformValueField.C:83
Foam::PatchFunction1Types::UniformValueField
Templated function that returns a uniform field based on a run-time selectable Function1 entry.
Definition: UniformValueField.H:60
Foam::List< label >
Foam::roots::type
type
Types of root.
Definition: Roots.H:54
Foam::Ostream
An Ostream is an abstract base class for all output systems (streams, files, token lists,...
Definition: Ostream.H:56
Foam::autoPtr::clone
autoPtr< T > clone(Args &&... args) const
Construct copy by invoking clone on underlying managed object.