Minor update to faceCells' fringe interface
This commit is contained in:
parent
f041b8e746
commit
2ac52835c6
2 changed files with 7 additions and 1 deletions
|
@ -72,7 +72,7 @@ void Foam::faceCellsFringe::calcAddressing() const
|
||||||
(
|
(
|
||||||
"void faceCellsFringe::calcAddressing() const"
|
"void faceCellsFringe::calcAddressing() const"
|
||||||
) << "Fringe patch " << patchNames_[nameI]
|
) << "Fringe patch " << patchNames_[nameI]
|
||||||
<< " cannot be found"
|
<< " cannot be found."
|
||||||
<< abort(FatalError);
|
<< abort(FatalError);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -115,6 +115,12 @@ public:
|
||||||
|
|
||||||
// Member Functions
|
// Member Functions
|
||||||
|
|
||||||
|
//- Access to patch names
|
||||||
|
const wordList& patchNames() const
|
||||||
|
{
|
||||||
|
return patchNames_;
|
||||||
|
}
|
||||||
|
|
||||||
//- Update iteration. Note: invalidates parameter
|
//- Update iteration. Note: invalidates parameter
|
||||||
virtual bool updateIteration
|
virtual bool updateIteration
|
||||||
(
|
(
|
||||||
|
|
Reference in a new issue