My Project
|
Control parameters for on-rank subdomain partitioning using Zoltan library. More...
#include <partitionCells.hpp>
Public Attributes | |
double | domain_imbalance {1.03} |
Partition imbalance, percentage units. | |
std::function< int(const Element &)> | index |
Compute a locally unique, for this MPI process, ID of a local cell/element/entity. | |
std::function< int(int)> | local_to_global |
Compute a globally unique, across all MPI processes, ID for a local cell/element/entity. | |
Control parameters for on-rank subdomain partitioning using Zoltan library.
Element | Grid view entity type |
double Opm::ZoltanPartitioningControl< Element >::domain_imbalance {1.03} |
Partition imbalance, percentage units.
Assumed to be the run's value of ZoltanImbalanceTol.
std::function<int(int)> Opm::ZoltanPartitioningControl< Element >::local_to_global |
Compute a globally unique, across all MPI processes, ID for a local cell/element/entity.
Might for instance return the cell's linearised index
i + nx*(j + ny*k)
of the Cartesian cell (i,j,k).