Formatting

This commit is contained in:
Hrvoje Jasak 2015-09-30 09:46:03 +01:00
parent ac8bcf55a1
commit 49cfa1b7fe

View file

@ -107,7 +107,9 @@ void Foam::overlapGgiFvPatch::makeCorrVecs(vectorField& cv) const
const Foam::overlapGgiFvPatch& Foam::overlapGgiFvPatch::shadow() const
{
const fvPatch& p = this->boundaryMesh()[overlapGgiPolyPatch_.shadowIndex()];
const fvPatch& p =
this->boundaryMesh()[overlapGgiPolyPatch_.shadowIndex()];
return refCast<const overlapGgiFvPatch>(p);
}
@ -128,7 +130,8 @@ Foam::tmp<Foam::vectorField> Foam::overlapGgiFvPatch::delta() const
return interpolate
(
shadow().Cn() - overlapGgiPolyPatch_.shadow().reconFaceCellCentres()
shadow().Cn()
- overlapGgiPolyPatch_.shadow().reconFaceCellCentres()
);
}
}