- barycentric coordinates in interpolation (instead of x/y/z) - ease U (velocity) requirement. Needn't be named in the sampled fields. - default tracking direction is 'forward'
48 lines
1.4 KiB
C++
48 lines
1.4 KiB
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
| ========= | |
|
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
| \\ / O peration | Version: v2206 |
|
|
| \\ / A nd | Website: www.openfoam.com |
|
|
| \\/ M anipulation | |
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
streamLines
|
|
{
|
|
type streamLine;
|
|
|
|
// Time control etc
|
|
${_visualization};
|
|
|
|
setFormat vtk;
|
|
|
|
// Tracking direction (forward | backward | bidirectional)
|
|
direction forward;
|
|
|
|
// Fields to sample
|
|
fields (p U);
|
|
|
|
// Steps particles can travel before being removed
|
|
lifeTime 10000;
|
|
|
|
// Number of steps per cell (estimate). Set to 1 to disable subcycling.
|
|
nSubCycle 5;
|
|
|
|
// Cloud name to use
|
|
cloud particleTracks;
|
|
|
|
// Seeding method.
|
|
seedSampleSet
|
|
{
|
|
type uniform;
|
|
axis x; //distance;
|
|
|
|
// Note: tracks slightly offset so as not to be on a face
|
|
start (-0.70 -0.25 0.025);
|
|
end (-0.70 0.25 0.025);
|
|
nPoints 20;
|
|
}
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|