opm-grid
GridEnums.hpp
1 /*
2  Copyright 2009, 2010 SINTEF ICT, Applied Mathematics.
3  Copyright 2009, 2010, 2014 Statoil ASA.
4  Copyright 2014, 2015 Dr. Blatt - HPC-Simulartion-Software & Services
5  Copyright 2015 NTNU
6 
7  This file is part of The Open Porous Media project (OPM).
8 
9  OPM is free software: you can redistribute it and/or modify
10  it under the terms of the GNU General Public License as published by
11  the Free Software Foundation, either version 3 of the License, or
12  (at your option) any later version.
13 
14  OPM is distributed in the hope that it will be useful,
15  but WITHOUT ANY WARRANTY; without even the implied warranty of
16  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17  GNU General Public License for more details.
18 
19  You should have received a copy of the GNU General Public License
20  along with OPM. If not, see <http://www.gnu.org/licenses/>.
21 */
22 
23 #ifndef OPM_GRID_ENUMS_HPP
24 #define OPM_GRID_ENUMS_HPP
25 
26 namespace Dune {
41  };
42 
46  simple=0,
48  zoltan=1,
50  metis=2,
53  };
54 }
55 
56 #endif
Use the log of the transmissibilities as edge weights.
Definition: GridEnums.hpp:40
The namespace Dune is the main namespace for all Dune code.
Definition: CartesianIndexMapper.hpp:9
PartitionMethod
enum for choosing methods for partitioning a graph.
Definition: GridEnums.hpp:44
Use the transmissibilities as edge weights.
Definition: GridEnums.hpp:38
Use METIS for partitioning.
Definition: GridEnums.hpp:50
All edge have a uniform weight of 1.
Definition: GridEnums.hpp:36
Use Zoltan for partitioning.
Definition: GridEnums.hpp:48
Use simple approach based on rectangular partitioning the underlying cartesian grid.
Definition: GridEnums.hpp:46
use Zoltan on GraphOfGrid for partitioning
Definition: GridEnums.hpp:52
EdgeWeightMethod
enum for choosing Methods for weighting graph-edges correspoding to cell interfaces in Zoltan&#39;s or Me...
Definition: GridEnums.hpp:34