Skip to content
Snippets Groups Projects
Commit 881ca2a4 authored by mattijs's avatar mattijs
Browse files

ENH: cyclicACMI: make sure non-overlap is before cyclicACMI

parent 2290b064
Branches
Tags
No related merge requests found
......@@ -68,6 +68,30 @@ Foam::cyclicACMIFvPatchField<Type>::cyclicACMIFvPatchField
if (!dict.found("value") && this->coupled())
{
// Extra check: make sure that the non-overlap patch is before
// this so it has actually been read - evaluate will crash otherwise
const GeometricField<Type, fvPatchField, volMesh>& fld =
static_cast<const GeometricField<Type, fvPatchField, volMesh>&>
(
this->primitiveField()
);
if (!fld.boundaryField().set(cyclicACMIPatch_.nonOverlapPatchID()))
{
FatalIOErrorInFunction
(
dict
)
<< " patch " << p.name()
<< " of field " << this->internalField().name()
<< " refers to non-overlap patch "
<< cyclicACMIPatch_.cyclicACMIPatch().nonOverlapPatchName()
<< " which is not constructed yet." << nl
<< " Either supply an initial value or change the ordering"
<< " in the file"
<< exit(FatalIOError);
}
this->evaluate(Pstream::commsTypes::blocking);
}
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment