Skip to content
Snippets Groups Projects
Commit 95303087 authored by mattijs's avatar mattijs
Browse files

BUG: fixed retrieving field from sub surface.

It now caters for
- all surfaces having fields
- no surfaces having fields
but not a combination of those.
parent 1513507e
Branches
Tags
No related merge requests found
......@@ -681,19 +681,22 @@ void Foam::searchableSurfaceCollection::getField
List<List<label> > infoMap;
sortHits(info, surfInfo, infoMap);
values.setSize(info.size());
//?Misses do not get set? values = 0;
// Do surface tests
forAll(surfInfo, surfI)
{
labelList surfValues;
subGeom_[surfI].getField(surfInfo[surfI], surfValues);
const labelList& map = infoMap[surfI];
forAll(map, i)
if (surfValues.size())
{
values[map[i]] = surfValues[i];
// Size values only when we have a surface that supports it.
values.setSize(info.size());
const labelList& map = infoMap[surfI];
forAll(map, i)
{
values[map[i]] = surfValues[i];
}
}
}
}
......
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