snappyHexMesh: Feature line tracking should end on AMI patches
This commit is contained in:
@ -209,6 +209,18 @@ void Foam::trackedParticle::hitCyclicPatch
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void Foam::trackedParticle::hitCyclicAMIPatch
|
||||||
|
(
|
||||||
|
const cyclicAMIPolyPatch&,
|
||||||
|
trackingData& td,
|
||||||
|
const vector&
|
||||||
|
)
|
||||||
|
{
|
||||||
|
// Remove particle
|
||||||
|
td.keepParticle = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
void Foam::trackedParticle::hitProcessorPatch
|
void Foam::trackedParticle::hitProcessorPatch
|
||||||
(
|
(
|
||||||
const processorPolyPatch&,
|
const processorPolyPatch&,
|
||||||
|
|||||||
@ -284,6 +284,14 @@ public:
|
|||||||
trackingData& td
|
trackingData& td
|
||||||
);
|
);
|
||||||
|
|
||||||
|
//- Overridable function to handle the particle hitting a cyclicAMI
|
||||||
|
void hitCyclicAMIPatch
|
||||||
|
(
|
||||||
|
const cyclicAMIPolyPatch&,
|
||||||
|
trackingData& td,
|
||||||
|
const vector&
|
||||||
|
);
|
||||||
|
|
||||||
//- Overridable function to handle the particle hitting a
|
//- Overridable function to handle the particle hitting a
|
||||||
//- processorPatch
|
//- processorPatch
|
||||||
void hitProcessorPatch
|
void hitProcessorPatch
|
||||||
|
|||||||
Reference in New Issue
Block a user