mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-12-28 03:37:59 +00:00
lagrangian: Removed unnecessary patch argument from hit methods
The patch can be determined from the particle when it is needed. Most of the time it is not.
This commit is contained in:
committed by
Andrew Heather
parent
d8782db651
commit
b8440c4232
@ -265,12 +265,7 @@ bool Foam::streamLineParticle::move
|
||||
}
|
||||
|
||||
|
||||
bool Foam::streamLineParticle::hitPatch
|
||||
(
|
||||
const polyPatch&,
|
||||
streamLineParticleCloud& cloud,
|
||||
trackingData& td
|
||||
)
|
||||
bool Foam::streamLineParticle::hitPatch(streamLineParticleCloud&, trackingData&)
|
||||
{
|
||||
// Disable generic patch interaction
|
||||
return false;
|
||||
@ -279,8 +274,7 @@ bool Foam::streamLineParticle::hitPatch
|
||||
|
||||
void Foam::streamLineParticle::hitWedgePatch
|
||||
(
|
||||
const wedgePolyPatch& pp,
|
||||
streamLineParticleCloud& cloud,
|
||||
streamLineParticleCloud&,
|
||||
trackingData& td
|
||||
)
|
||||
{
|
||||
@ -291,8 +285,7 @@ void Foam::streamLineParticle::hitWedgePatch
|
||||
|
||||
void Foam::streamLineParticle::hitSymmetryPlanePatch
|
||||
(
|
||||
const symmetryPlanePolyPatch& pp,
|
||||
streamLineParticleCloud& cloud,
|
||||
streamLineParticleCloud&,
|
||||
trackingData& td
|
||||
)
|
||||
{
|
||||
@ -303,8 +296,7 @@ void Foam::streamLineParticle::hitSymmetryPlanePatch
|
||||
|
||||
void Foam::streamLineParticle::hitSymmetryPatch
|
||||
(
|
||||
const symmetryPolyPatch& pp,
|
||||
streamLineParticleCloud& cloud,
|
||||
streamLineParticleCloud&,
|
||||
trackingData& td
|
||||
)
|
||||
{
|
||||
@ -315,8 +307,7 @@ void Foam::streamLineParticle::hitSymmetryPatch
|
||||
|
||||
void Foam::streamLineParticle::hitCyclicPatch
|
||||
(
|
||||
const cyclicPolyPatch& pp,
|
||||
streamLineParticleCloud& cloud,
|
||||
streamLineParticleCloud&,
|
||||
trackingData& td
|
||||
)
|
||||
{
|
||||
@ -327,8 +318,7 @@ void Foam::streamLineParticle::hitCyclicPatch
|
||||
|
||||
void Foam::streamLineParticle::hitCyclicAMIPatch
|
||||
(
|
||||
const cyclicAMIPolyPatch&,
|
||||
streamLineParticleCloud& cloud,
|
||||
streamLineParticleCloud&,
|
||||
trackingData& td,
|
||||
const vector&
|
||||
)
|
||||
@ -340,8 +330,7 @@ void Foam::streamLineParticle::hitCyclicAMIPatch
|
||||
|
||||
void Foam::streamLineParticle::hitCyclicACMIPatch
|
||||
(
|
||||
const cyclicACMIPolyPatch&,
|
||||
streamLineParticleCloud& cloud,
|
||||
streamLineParticleCloud&,
|
||||
trackingData& td,
|
||||
const vector&
|
||||
)
|
||||
@ -353,8 +342,7 @@ void Foam::streamLineParticle::hitCyclicACMIPatch
|
||||
|
||||
void Foam::streamLineParticle::hitProcessorPatch
|
||||
(
|
||||
const processorPolyPatch&,
|
||||
streamLineParticleCloud& cloud,
|
||||
streamLineParticleCloud&,
|
||||
trackingData& td
|
||||
)
|
||||
{
|
||||
@ -365,8 +353,7 @@ void Foam::streamLineParticle::hitProcessorPatch
|
||||
|
||||
void Foam::streamLineParticle::hitWallPatch
|
||||
(
|
||||
const wallPolyPatch& wpp,
|
||||
streamLineParticleCloud& cloud,
|
||||
streamLineParticleCloud&,
|
||||
trackingData& td
|
||||
)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user