1 /*---------------------------------------------------------------------------*\
3 \\ / F ield | cfMesh: A library for mesh generation
5 \\ / A nd | Author: Franjo Juretic (franjo.juretic@c-fields.com)
6 \\/ M anipulation | Copyright (C) Creative Fields, Ltd.
7 -------------------------------------------------------------------------------
9 This file is part of cfMesh.
11 cfMesh is free software; you can redistribute it and/or modify it
12 under the terms of the GNU General Public License as published by the
13 Free Software Foundation; either version 3 of the License, or (at your
14 option) any later version.
16 cfMesh 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
21 You should have received a copy of the GNU General Public License
22 along with cfMesh. If not, see <http://www.gnu.org/licenses/>.
26 \*---------------------------------------------------------------------------*/
28 #include "boundaryPatchBase.H"
32 #include "IOPtrList.H"
33 #include "dictionary.H"
38 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
40 defineTemplateTypeNameAndDebugWithName
42 IOPtrList<boundaryPatchBase>,
47 defineTypeNameAndDebug(boundaryPatchBase, 0);
48 defineRunTimeSelectionTable(boundaryPatchBase, dictionary);
50 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
52 autoPtr<boundaryPatchBase> boundaryPatchBase::New
55 const dictionary& dict
58 word type(dict.lookup("type"));
59 //- check the type of processor. Allowed types are processor and patch
60 //- Other patch types are treated as ordinary patches
61 if( type != "processor" )
64 dictionaryConstructorTable::iterator cstrIter =
65 dictionaryConstructorTablePtr_->find(type);
67 if( cstrIter == dictionaryConstructorTablePtr_->end() )
71 "boundaryPatchBase::New(const word&, const dictionary&)",
73 ) << "Unknown boundaryPatchBase type " << type << nl << nl
74 << "Valid boundaryPatchBase types are :" << nl
75 << "[default: " << typeName_() << "]"
76 << dictionaryConstructorTablePtr_->toc()
77 << exit(FatalIOError);
80 return autoPtr<boundaryPatchBase>(cstrIter()(name, dict));
83 autoPtr<boundaryPatchBase> boundaryPatchBase::New
91 return boundaryPatchBase::New(name, dict);
94 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
96 boundaryPatchBase::boundaryPatchBase
110 boundaryPatchBase::boundaryPatchBase(const word& name, const dictionary& dict)
117 word type(dict.lookup("type"));
119 nFaces_ = readLabel(dict.lookup("nFaces"));
120 startFace_ = readLabel(dict.lookup("startFace"));
123 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
125 Ostream& operator<<(Ostream& os, const boundaryPatchBase& wpb)
128 os.check("Ostream& operator<<(Ostream& f, const boundaryPatchBase& wpb");
132 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
134 } // End namespace Foam
136 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //