You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (Pstream::nProcs() == 1)
{
WarningInFunction
<< "Running parallel on single processor. This only"
<< " makes sense for multi-world simulation" << endl;
dictNProcs = 1;
}
however, this also means the parallel single case will not write to processor0, see e.g.
In the help for icoFOAM (and others) there is the option:
-world <name> Name of the local world for parallel communication
As discussed, this allows one processor parallel cases and avoids assuming MPI_COMM_WORLD, see e.g.
https://develop.openfoam.com/Development/openfoam/-/merge_requests/398/diffs?commit_id=89f2cda3abe9010d3994802080950a64af92a5ba
however, this also means the parallel single case will not write to processor0, see e.g.
The text was updated successfully, but these errors were encountered: