Skip to content
Snippets Groups Projects
Commit 4059dbd6 authored by Will Bainbridge's avatar Will Bainbridge Committed by Andrew Heather
Browse files

snappyHexMesh: Feature line tracking should end on AMI patches

parent f96db2d6
Branches
Tags
No related merge requests found
......@@ -205,6 +205,18 @@ void Foam::trackedParticle::hitCyclicPatch
}
void Foam::trackedParticle::hitCyclicAMIPatch
(
const cyclicAMIPolyPatch&,
trackingData& td,
const vector&
)
{
// Remove particle
td.keepParticle = false;
}
void Foam::trackedParticle::hitProcessorPatch
(
const processorPolyPatch&,
......
......@@ -284,6 +284,14 @@ public:
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
//- processorPatch
void hitProcessorPatch
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment