Loading...
Searching...
No Matches
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-------------------------------------------------------------------------------
8License
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/>.
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// ************************************************************************* //
Pointer management similar to std::unique_ptr, with some additional methods and type checking.
Definition autoPtr.H:65
A list of keyword definitions, which are a keyword followed by a number of values (eg,...
Definition dictionary.H:133
label index() const noexcept
The index of this patch in the boundaryMesh.
const word & name() const noexcept
The patch name.
friend class pointBoundaryMesh
Definition pointPatch.H:81
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.
A class for handling words, derived from Foam::string.
Definition word.H:66
#define DebugInFunction
Report an information message using Foam::Info.
Ostream & endl(Ostream &os)
Add newline and flush stream.
Definition Ostream.H:519
dictionary dict