33 const word& patchType,
43 Info<<
"polyPatch::New(const word&, const word&, const label, "
44 "const label, const label, const polyBoundaryMesh&) : "
45 "constructing polyPatch"
49 wordConstructorTable::iterator cstrIter =
50 wordConstructorTablePtr_->find(patchType);
52 if (cstrIter == wordConstructorTablePtr_->end())
56 "polyPatch::New(const word&, const word&, const label, "
57 "const label, const label, const polyBoundaryMesh&) "
58 ) <<
"Unknown polyPatch type " << patchType <<
" for patch " << name
60 <<
"Valid polyPatch types are :" <<
endl
61 << wordConstructorTablePtr_->sortedToc()
79 Info<<
"polyPatch::New(const word&, const dictionary&, const label, "
80 "const polyBoundaryMesh&) : constructing polyPatch"
88 dictionaryConstructorTable::iterator cstrIter =
89 dictionaryConstructorTablePtr_->find(patchType);
91 if (cstrIter == dictionaryConstructorTablePtr_->end())
93 if (!disallowGenericPolyPatch)
95 cstrIter = dictionaryConstructorTablePtr_->find(
"genericPatch");
98 if (cstrIter == dictionaryConstructorTablePtr_->end())
102 "polyPatch::New(const word&, const dictionary&, "
103 "const label, const polyBoundaryMesh&)",
105 ) <<
"Unknown polyPatch type " << patchType
106 <<
" for patch " << name
108 <<
"Valid polyPatch types are :" <<
endl
109 << dictionaryConstructorTablePtr_->sortedToc()