mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
ENH: mpi: use per-application communicator.
This commit is contained in:
@ -556,9 +556,11 @@ void Foam::meshToMesh::calculate(const word& methodName, const bool normalise)
|
||||
map.subMap(),
|
||||
false,
|
||||
tgtToSrcCellAddr_,
|
||||
labelList(),
|
||||
ListOps::appendEqOp<label>(),
|
||||
flipOp(),
|
||||
labelList()
|
||||
UPstream::msgType(),
|
||||
map.comm()
|
||||
);
|
||||
|
||||
// Set up as a reverse distribute
|
||||
@ -572,9 +574,11 @@ void Foam::meshToMesh::calculate(const word& methodName, const bool normalise)
|
||||
map.subMap(),
|
||||
false,
|
||||
tgtToSrcCellWght_,
|
||||
scalarList(),
|
||||
ListOps::appendEqOp<scalar>(),
|
||||
flipOp(),
|
||||
scalarList()
|
||||
UPstream::msgType(),
|
||||
map.comm()
|
||||
);
|
||||
|
||||
// weights normalisation
|
||||
|
||||
Reference in New Issue
Block a user