Loading...
Searching...
No Matches
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-2021 OpenCFD Ltd.
9-------------------------------------------------------------------------------
10License
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\*---------------------------------------------------------------------------*/
28#include "UniformValueField.H"
29#include "polyMesh.H"
30
31// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
32
33template<class Type>
35(
36 const polyPatch& pp,
37 const word& redirectType,
38 const word& entryName,
39 const dictionary& dict,
40 const bool faceValues
41)
42:
44 uniformValuePtr_
45 (
46 Function1<Type>::New
47 (
49 dict,
50 redirectType,
51 patchFunction1Base::whichDb() // mesh registry
52 )
53 )
54{}
55
56
57template<class Type>
59(
61 const polyPatch& pp
62)
63:
64 PatchFunction1<Type>(rhs, pp),
65 uniformValuePtr_(rhs.uniformValuePtr_.clone())
66{
67 if (uniformValuePtr_)
68 {
69 uniformValuePtr_->resetDb(patchFunction1Base::whichDb());
70 }
71}
72
73
74template<class Type>
76(
77 const UniformValueField<Type>& rhs
78)
79:
81{}
82
83
84// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
85
86template<class Type>
89 const FieldMapper& mapper
90)
91{}
92
93
94template<class Type>
96(
98 const labelList& addr
99)
100{}
101
102
103template<class Type>
105(
106 Ostream& os
107) const
108{
110
111 uniformValuePtr_->writeData(os);
112}
113
114
115// ************************************************************************* //
uindirectPrimitivePatch pp(UIndirectList< face >(mesh.faces(), faceLabels), mesh.points())
Abstract base class to hold the Field mapping addressing and weights.
Definition FieldMapper.H:44
Top level data entry class for use in dictionaries. Provides a mechanism to specify a variable as a c...
Definition Function1.H:92
An Ostream is an abstract base class for all output systems (streams, files, token lists,...
Definition Ostream.H:59
Templated function that returns a uniform field based on a run-time selectable Function1 entry.
virtual void rmap(const PatchFunction1< Type > &pf1, const labelList &addr)
Reverse map the given PatchFunction1 onto this PatchFunction1.
virtual void autoMap(const FieldMapper &mapper)
Map (and resize as needed) from self given a mapping object.
virtual void writeData(Ostream &os) const
Write in dictionary format.
virtual tmp< PatchFunction1< Type > > clone() const
Return a clone.
UniformValueField(const polyPatch &pp, const word &redirectType, const word &entryName, const dictionary &dict, const bool faceValues=true)
Construct from entry name and dictionary.
Top level data entry class for use in dictionaries. Provides a mechanism to specify a variable as a c...
const polyPatch const word const word & entryName
virtual void writeData(Ostream &os) const
Write in dictionary format.
const polyPatch const word const word const dictionary & dict
const polyPatch & pp
const polyPatch const word const word const dictionary const bool faceValues
const polyPatch & patch() const noexcept
Reference to the patch.
patchFunction1Base(const polyPatch &pp, const word &entryName, const bool faceValues=true)
Construct from polyPatch and entry name.
const objectRegistry * whichDb() const
Return the associated registry (ie, the mesh).
A patch is a list of labels that address the faces in the global face list.
Definition polyPatch.H:73
A class for handling words, derived from Foam::string.
Definition word.H:66
OBJstream os(runTime.globalPath()/outputName)
List< label > labelList
A List of labels.
Definition List.H:62
void rhs(fvMatrix< typename Expr::value_type > &m, const Expr &expression)