Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Development
openfoam
Commits
e60a7744
Commit
e60a7744
authored
Dec 22, 2017
by
Mark Olesen
Browse files
STYLE: less verbose output of available procs in redistributePar
parent
3787d45c
Changes
1
Hide whitespace changes
Inline
Side-by-side
applications/utilities/parallelProcessing/redistributePar/redistributePar.C
View file @
e60a7744
...
...
@@ -2545,7 +2545,8 @@ int main(int argc, char *argv[])
haveMesh
[
Pstream
::
myProcNo
()]
=
isFile
(
meshPath
);
Pstream
::
gatherList
(
haveMesh
);
Pstream
::
scatterList
(
haveMesh
);
Info
<<
"Per processor mesh availability : "
<<
haveMesh
<<
endl
;
Info
<<
"Per processor mesh availability:"
<<
nl
<<
" "
<<
flatOutput
(
haveMesh
)
<<
nl
<<
endl
;
// Addressing back to reconstructed mesh as xxxProcAddressing.
...
...
@@ -2898,7 +2899,8 @@ int main(int argc, char *argv[])
haveMesh
[
Pstream
::
myProcNo
()]
=
isFile
(
meshPath
);
Pstream
::
gatherList
(
haveMesh
);
Pstream
::
scatterList
(
haveMesh
);
Info
<<
"Per processor mesh availability : "
<<
haveMesh
<<
endl
;
Info
<<
"Per processor mesh availability:"
<<
nl
<<
" "
<<
flatOutput
(
haveMesh
)
<<
nl
<<
endl
;
// Load mesh (or create dummy one)
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
...
...
@@ -2930,7 +2932,7 @@ int main(int argc, char *argv[])
fvMesh
&
mesh
=
meshPtr
();
label
nOldCells
=
mesh
.
nCells
();
const
label
nOldCells
=
mesh
.
nCells
();
//Pout<< "Loaded mesh : nCells:" << nOldCells
// << " nPatches:" << mesh.boundaryMesh().size() << endl;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment