diff --git a/src/meshTools/AMIInterpolation/AMIInterpolation/AMIInterpolation.C b/src/meshTools/AMIInterpolation/AMIInterpolation/AMIInterpolation.C index 7d797052ae..5a743787fa 100644 --- a/src/meshTools/AMIInterpolation/AMIInterpolation/AMIInterpolation.C +++ b/src/meshTools/AMIInterpolation/AMIInterpolation/AMIInterpolation.C @@ -768,10 +768,8 @@ bool Foam::AMIInterpolation::calculate } Info<< indent - << "AMI: Creating addressing and weights between " - << srcTotalSize << " source faces and " - << tgtTotalSize << " target faces" - << endl; + << "AMI: Patch source faces: " << srcTotalSize << nl + << "AMI: Patch target faces: " << tgtTotalSize << endl; singlePatchProc_ = calcDistribution(srcPatch, tgtPatch); diff --git a/src/meshTools/AMIInterpolation/patches/cyclicAMI/cyclicAMIPolyPatch/cyclicAMIPolyPatch.C b/src/meshTools/AMIInterpolation/patches/cyclicAMI/cyclicAMIPolyPatch/cyclicAMIPolyPatch.C index 5fba5daa5a..89aa2fc668 100644 --- a/src/meshTools/AMIInterpolation/patches/cyclicAMI/cyclicAMIPolyPatch/cyclicAMIPolyPatch.C +++ b/src/meshTools/AMIInterpolation/patches/cyclicAMI/cyclicAMIPolyPatch/cyclicAMIPolyPatch.C @@ -386,6 +386,9 @@ void Foam::cyclicAMIPolyPatch::resetAMI(const UList& points) const pointField srcPoints(localPoints()); pointField nbrPoints(nbr.localPoints()); + Info<< "AMI: Creating AMI for source:" << name() + << " and target:" << nbr.name() << endl; + if (debug) { const Time& t = boundaryMesh().mesh().time();