Formatting
This commit is contained in:
parent
ac8bcf55a1
commit
49cfa1b7fe
1 changed files with 5 additions and 2 deletions
|
@ -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()
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
Reference in a new issue