BUG: forces - scatter result to all procs - mantis #1043

This commit is contained in:
andy
2014-01-13 15:00:11 +00:00
parent 43dd149577
commit 5b1deefafd

View File

@ -940,6 +940,8 @@ void Foam::forces::calcForcesMoment()
Pstream::listCombineGather(force_, plusEqOp<vectorField>()); Pstream::listCombineGather(force_, plusEqOp<vectorField>());
Pstream::listCombineGather(moment_, plusEqOp<vectorField>()); Pstream::listCombineGather(moment_, plusEqOp<vectorField>());
Pstream::listCombineScatter(force_);
Pstream::listCombineScatter(moment_);
} }