Difference between revisions of "Snip access cellset data"

From OpenFOAMWiki
m (Reverted edit of Bhhqky, changed back to last version by Bgschaid)
m (Reverted edit of Wvzxnl, changed back to last version by Bgschaid)
 
(9 intermediate revisions by 7 users not shown)
(No difference)

Latest revision as of 08:24, 21 August 2006

It would be nice to access data in a cell set like this:

 
filter[cellSet]=filterID;

to set the value of filter for all the cells in the cellSet to filterID, but unfortunately that's not possible.

The way to do this is:

 
cellSet filterSet(mesh,filterName,IOobject::MUST_READ,IOobject::NO_WRITE);
 
for(cellSet::iterator cell=filterSet.begin();cell!=filterSet.end();cell++)
filter[cell.key()]=filterID;

This can be applied to cellSets too.

From this thread in the message board