mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-12-28 03:37:59 +00:00
ENH: make creation of streamline seeds demand-driven
This commit is contained in:
@ -131,12 +131,11 @@ void Foam::functionObjects::wallBoundedStreamLine::track()
|
||||
// Get the seed points
|
||||
// ~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
const sampledSet& seedPoints = sampledSetPtr_();
|
||||
|
||||
const sampledSet& seedPoints = sampledSetPoints();
|
||||
|
||||
forAll(seedPoints, i)
|
||||
{
|
||||
label celli = seedPoints.cells()[i];
|
||||
const label celli = seedPoints.cells()[i];
|
||||
|
||||
if (celli != -1)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user