Better error messaging for coupled patches
This commit is contained in:
parent
ed73abd931
commit
568a927388
1 changed files with 4 additions and 2 deletions
|
@ -198,11 +198,13 @@ public:
|
||||||
Field<Type>& f
|
Field<Type>& f
|
||||||
) const
|
) const
|
||||||
{
|
{
|
||||||
notImplemented
|
FatalErrorIn
|
||||||
(
|
(
|
||||||
"ggiFvPatchField<Type>::transformCoupleField"
|
"ggiFvPatchField<Type>::transformCoupleField"
|
||||||
"(Field<Type>& f) const"
|
"(Field<Type>& f) const"
|
||||||
);
|
) << "transformCoupleField not implemented for patch "
|
||||||
|
<< this->patch().name()
|
||||||
|
<< abort(FatalError);
|
||||||
}
|
}
|
||||||
|
|
||||||
//- Initialise neighbour matrix update
|
//- Initialise neighbour matrix update
|
||||||
|
|
Reference in a new issue