mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
- as part of the cleanup of dictionary access methods (c6520033c9)
made the dictionary class single inheritance from IDLList<entry>.
This eliminates any ambiguities for iterators and allows
for simple use of range-for looping.
Eg,
for (const entry& e : topDict))
{
Info<< "entry:" << e.keyword() << " is dict:" << e.isDict() << nl;
}
vs
forAllConstIter(dictionary, topDict, iter))
{
Info<< "entry:" << iter().keyword()
<< " is dict:" << iter().isDict() << nl;
}
155 lines
3.9 KiB
C
155 lines
3.9 KiB
C
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 2011-2012 OpenFOAM Foundation
|
|
\\/ M anipulation | Copyright (C) 2016 OpenCFD Ltd.
|
|
-------------------------------------------------------------------------------
|
|
License
|
|
This file is part of OpenFOAM.
|
|
|
|
OpenFOAM is free software: you can redistribute it and/or modify it
|
|
under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
|
|
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#include "genericPolyPatch.H"
|
|
#include "addToRunTimeSelectionTable.H"
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
namespace Foam
|
|
{
|
|
defineTypeNameAndDebug(genericPolyPatch, 0);
|
|
|
|
addToRunTimeSelectionTable(polyPatch, genericPolyPatch, word);
|
|
addToRunTimeSelectionTable(polyPatch, genericPolyPatch, dictionary);
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * * * * * //
|
|
|
|
Foam::genericPolyPatch::genericPolyPatch
|
|
(
|
|
const word& name,
|
|
const label size,
|
|
const label start,
|
|
const label index,
|
|
const polyBoundaryMesh& bm,
|
|
const word& patchType
|
|
)
|
|
:
|
|
polyPatch(name, size, start, index, bm, patchType)
|
|
{}
|
|
|
|
|
|
Foam::genericPolyPatch::genericPolyPatch
|
|
(
|
|
const word& name,
|
|
const dictionary& dict,
|
|
const label index,
|
|
const polyBoundaryMesh& bm,
|
|
const word& patchType
|
|
)
|
|
:
|
|
polyPatch(name, dict, index, bm, patchType),
|
|
actualTypeName_(dict.get<word>("type")),
|
|
dict_(dict)
|
|
{}
|
|
|
|
|
|
Foam::genericPolyPatch::genericPolyPatch
|
|
(
|
|
const genericPolyPatch& pp,
|
|
const polyBoundaryMesh& bm
|
|
)
|
|
:
|
|
polyPatch(pp, bm),
|
|
actualTypeName_(pp.actualTypeName_),
|
|
dict_(pp.dict_)
|
|
{}
|
|
|
|
|
|
Foam::genericPolyPatch::genericPolyPatch
|
|
(
|
|
const genericPolyPatch& pp,
|
|
const polyBoundaryMesh& bm,
|
|
const label index,
|
|
const label newSize,
|
|
const label newStart
|
|
)
|
|
:
|
|
polyPatch(pp, bm, index, newSize, newStart),
|
|
actualTypeName_(pp.actualTypeName_),
|
|
dict_(pp.dict_)
|
|
{}
|
|
|
|
|
|
Foam::genericPolyPatch::genericPolyPatch
|
|
(
|
|
const genericPolyPatch& pp,
|
|
const polyBoundaryMesh& bm,
|
|
const label index,
|
|
const labelUList& mapAddressing,
|
|
const label newStart
|
|
)
|
|
:
|
|
polyPatch(pp, bm, index, mapAddressing, newStart),
|
|
actualTypeName_(pp.actualTypeName_),
|
|
dict_(pp.dict_)
|
|
{}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
|
|
|
|
Foam::genericPolyPatch::~genericPolyPatch()
|
|
{}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
|
|
|
|
const Foam::word& Foam::genericPolyPatch::actualType() const
|
|
{
|
|
return actualTypeName_;
|
|
}
|
|
|
|
|
|
void Foam::genericPolyPatch::write(Ostream& os) const
|
|
{
|
|
os.writeEntry("type", actualTypeName_);
|
|
patchIdentifier::write(os);
|
|
os.writeEntry("nFaces", size());
|
|
os.writeEntry("startFace", start());
|
|
|
|
for (const entry& e : dict_)
|
|
{
|
|
const word& key = e.keyword();
|
|
|
|
// Filter out any keywords already written by above
|
|
if
|
|
(
|
|
key != "type"
|
|
&& key != "nFaces"
|
|
&& key != "startFace"
|
|
&& key != "physicalType"
|
|
&& key != "inGroups"
|
|
)
|
|
{
|
|
e.write(os);
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|