pointPatchNew.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) 2016 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 
26 #include "pointPatch.H"
27 
28 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
29 
31 (
32  const word& name,
33  const dictionary& dict,
34  const label index,
35  const pointBoundaryMesh& bm
36 )
37 {
38  // Similar to polyPatchNew but no support for generic since we want it
39  // to fall through to the construct-from-polyPatch
40  DebugInFunction << "Constructing pointPatch" << endl;
41 
42  const word patchType(dict.lookup("type"));
43  //dict.readIfPresent("geometricType", patchType);
44 
45  auto* ctorPtr = dictionaryConstructorTable(patchType);
46 
47  if (!ctorPtr)
48  {
49  return nullptr;
50  }
51 
52  return autoPtr<pointPatch>(ctorPtr(name, dict, index, bm, patchType));
53 }
54 
55 
56 // ************************************************************************* //
dictionary dict
A pointBoundaryMesh is a pointPatch list with registered IO, a reference to the associated pointMesh...
A list of keyword definitions, which are a keyword followed by a number of values (eg...
Definition: dictionary.H:129
static autoPtr< pointPatch > New(const word &name, const dictionary &dict, const label index, const pointBoundaryMesh &)
Return a pointer to a new patch created on freestore. Returns null if not found.
Definition: pointPatchNew.C:24
Ostream & endl(Ostream &os)
Add newline and flush stream.
Definition: Ostream.H:529
word name(const expressions::valueTypeCode typeCode)
A word representation of a valueTypeCode. Empty for expressions::valueTypeCode::INVALID.
Definition: exprTraits.C:127
A class for handling words, derived from Foam::string.
Definition: word.H:63
#define DebugInFunction
Report an information message using Foam::Info.
const word & name() const noexcept
The patch name.
Pointer management similar to std::unique_ptr, with some additional methods and type checking...
Definition: HashPtrTable.H:48
label index() const noexcept
The index of this patch in the boundaryMesh.