Skip to content
Snippets Groups Projects
Commit 161c66df authored by Mark OLESEN's avatar Mark OLESEN
Browse files

BUG: incorrect EnSight lagrangian fields in parallel (fixes #1629)

parent 41824870
Branches
Tags
No related merge requests found
......@@ -76,7 +76,7 @@ bool Foam::ensightOutput::writeCloudField
IPstream fromSlave(comm, slave);
Field<Type> recv(fromSlave);
for (Type val : field) // <-- working on a copy
for (Type val : recv) // <-- working on a copy
{
if (mag(val) < 1e-90) // approximately root(ROOTVSMALL)
{
......
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