/*--------------------------------*- 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; } } // ************************************************************************* //