Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion analysis/morphology.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -508,7 +508,7 @@ double MorphOpen(DoubleArray &SignDist, signed char *id,

// total Global is the number of nodes in the pore-space
totalGlobal = Dm->Comm.sumReduce(count);
maxdistGlobal = Dm->Comm.sumReduce(maxdist);
maxdistGlobal = Dm->Comm.maxReduce(maxdist);
double volume = double(nprocx * nprocy * nprocz) * double(nx - 2) *
double(ny - 2) * double(nz - 2);
double volume_fraction = totalGlobal / volume;
Expand Down
Loading