Skip to content
Snippets Groups Projects
Commit a6444316 authored by Praetorius, Simon's avatar Praetorius, Simon
Browse files

Merge branch 'issue/parallel_mesh_creator' into 'master'

changed grid construction to allow parallel grids to be created directly

See merge request !90
parents 9dbcc1d8 fcd473a5
No related branches found
No related tags found
1 merge request!90changed grid construction to allow parallel grids to be created directly
...@@ -22,6 +22,16 @@ ...@@ -22,6 +22,16 @@
#include <amdis/common/TypeTraits.hpp> #include <amdis/common/TypeTraits.hpp>
#include <amdis/utility/MacroGridFactory.hpp> #include <amdis/utility/MacroGridFactory.hpp>
namespace Dune
{
// forward declarations
template <int dim, class Coordinates> class YaspGrid;
template <class ct, int dim> class EquidistantCoordinates;
template <class ct, int dim> class EquidistantOffsetCoordinates;
template <class ct, int dim> class TensorProductCoordinates;
}
namespace AMDiS namespace AMDiS
{ {
/// A creator class for dune grids. /// A creator class for dune grids.
...@@ -49,6 +59,7 @@ namespace AMDiS ...@@ -49,6 +59,7 @@ namespace AMDiS
* Otherwise reads the parameter `[meshName]->structured` and if set, creates: * Otherwise reads the parameter `[meshName]->structured` and if set, creates:
* - cube: a structured cube grid * - cube: a structured cube grid
* - simplex: a structured simplex grid * - simplex: a structured simplex grid
* using a StructuredGridFactory
* *
* Otherwise tries to create a grid depending on the grid type. * Otherwise tries to create a grid depending on the grid type.
**/ **/
...@@ -89,7 +100,7 @@ namespace AMDiS ...@@ -89,7 +100,7 @@ namespace AMDiS
{ {
return create_structured_grid([](auto&& lower, auto&& upper, auto&& numCells) return create_structured_grid([](auto&& lower, auto&& upper, auto&& numCells)
{ {
return MacroGridFactory<Grid>::createSimplexGrid(lower, upper, numCells); return Dune::StructuredGridFactory<Grid>::createSimplexGrid(lower, upper, numCells);
}); });
} }
...@@ -107,7 +118,7 @@ namespace AMDiS ...@@ -107,7 +118,7 @@ namespace AMDiS
private: private:
// use the structured grid factory to create the grid // use the structured grid factory to create the grid
template <class Factory> template <class Size = unsigned int, class Factory>
std::unique_ptr<Grid> create_structured_grid(Factory factory) const std::unique_ptr<Grid> create_structured_grid(Factory factory) const
{ {
// Lower left corner of the domain // Lower left corner of the domain
...@@ -115,7 +126,7 @@ namespace AMDiS ...@@ -115,7 +126,7 @@ namespace AMDiS
// Upper right corner of the domain // Upper right corner of the domain
Dune::FieldVector<ctype,int(dimworld)> upper(1); Dune::FieldVector<ctype,int(dimworld)> upper(1);
// number of blocks in each coordinate direction // number of blocks in each coordinate direction
auto numCells = Dune::filledArray<std::size_t(dimension),unsigned int>(1); auto numCells = Dune::filledArray<std::size_t(dimension),Size>(1);
Parameters::get(name_ + "->min corner", lower); Parameters::get(name_ + "->min corner", lower);
Parameters::get(name_ + "->max corner", upper); Parameters::get(name_ + "->max corner", upper);
...@@ -136,7 +147,7 @@ namespace AMDiS ...@@ -136,7 +147,7 @@ namespace AMDiS
return read_alberta_file<Grid>(filename, Dune::PriorityTag<42>{}); return read_alberta_file<Grid>(filename, Dune::PriorityTag<42>{});
} }
else { else {
error_exit("Can not read grid file. Unknown file extension."); error_exit("Cannot read grid file. Unknown file extension.");
return {}; return {};
} }
} }
...@@ -149,7 +160,7 @@ namespace AMDiS ...@@ -149,7 +160,7 @@ namespace AMDiS
// use GmshReader if GridFactory supports insertBoundarySegments // use GmshReader if GridFactory supports insertBoundarySegments
template <class GridType = Grid, template <class GridType = Grid,
REQUIRES(Dune::Std::is_detected<SupportsGmshReader, GridType>::value)> REQUIRES(Dune::Std::is_detected<SupportsGmshReader, GridType>::value)>
std::unique_ptr<GridType> read_gmsh_file(std::string const& filename, Dune::PriorityTag<2>) const std::unique_ptr<GridType> read_gmsh_file(std::string const& filename, Dune::PriorityTag<1>) const
{ {
Dune::GmshReader<GridType> reader; Dune::GmshReader<GridType> reader;
return std::unique_ptr<GridType>{reader.read(filename, boundaryIds_, elementIds_)}; return std::unique_ptr<GridType>{reader.read(filename, boundaryIds_, elementIds_)};
...@@ -184,8 +195,10 @@ namespace AMDiS ...@@ -184,8 +195,10 @@ namespace AMDiS
std::unique_ptr<GridType> read_alberta_file(std::string const& filename, Dune::PriorityTag<2>) const std::unique_ptr<GridType> read_alberta_file(std::string const& filename, Dune::PriorityTag<2>) const
{ {
Dune::GridFactory<GridType> factory; Dune::GridFactory<GridType> factory;
Dune::AlbertaReader<GridType> reader; if (Environment::mpiRank() == 0) {
reader.readGrid(filename, factory); Dune::AlbertaReader<GridType> reader;
reader.readGrid(filename, factory);
}
return std::unique_ptr<GridType>{factory.createGrid()}; return std::unique_ptr<GridType>{factory.createGrid()};
} }
...@@ -194,7 +207,7 @@ namespace AMDiS ...@@ -194,7 +207,7 @@ namespace AMDiS
REQUIRES(GridType::dimensionworld != DIM_OF_WORLD)> REQUIRES(GridType::dimensionworld != DIM_OF_WORLD)>
std::unique_ptr<GridType> read_alberta_file(std::string const& filename, Dune::PriorityTag<1>) const std::unique_ptr<GridType> read_alberta_file(std::string const& filename, Dune::PriorityTag<1>) const
{ {
error_exit("Alberta (and AlbertaReader) require WORLDDIM == Grid::dimensionworld. Change the cmake parameters!"); error_exit("AlbertaGrid (and AlbertaReader) require WORLDDIM == Grid::dimensionworld. Change the cmake parameters!");
return {}; return {};
} }
#else #else
...@@ -202,7 +215,7 @@ namespace AMDiS ...@@ -202,7 +215,7 @@ namespace AMDiS
template <class GridType> template <class GridType>
std::unique_ptr<GridType> read_alberta_file(std::string const& filename, Dune::PriorityTag<0>) const std::unique_ptr<GridType> read_alberta_file(std::string const& filename, Dune::PriorityTag<0>) const
{ {
error_exit("Alberta (and AlbertaReader) not available. Set AlbertaFlags to your executable in cmake!"); error_exit("AlbertaGrid (and AlbertaReader) not available. Set AlbertaFlags to your executable in cmake!");
return {}; return {};
} }
#endif #endif
...@@ -214,7 +227,10 @@ namespace AMDiS ...@@ -214,7 +227,10 @@ namespace AMDiS
REQUIRES(Dune::Std::is_detected<IsAlbertaGrid, GridType>::value)> REQUIRES(Dune::Std::is_detected<IsAlbertaGrid, GridType>::value)>
std::unique_ptr<GridType> create_by_gridtype(Dune::PriorityTag<3>) const std::unique_ptr<GridType> create_by_gridtype(Dune::PriorityTag<3>) const
{ {
return create_simplex_grid(); return create_structured_grid([](auto&& lower, auto&& upper, auto&& numCells)
{
return MacroGridFactory<Grid>::createSimplexGrid(lower, upper, numCells);
});
} }
#endif #endif
...@@ -223,9 +239,43 @@ namespace AMDiS ...@@ -223,9 +239,43 @@ namespace AMDiS
class = typename GridType::YGrid> class = typename GridType::YGrid>
std::unique_ptr<GridType> create_by_gridtype(Dune::PriorityTag<2>) const std::unique_ptr<GridType> create_by_gridtype(Dune::PriorityTag<2>) const
{ {
return create_cube_grid(); int overlap = 0;
Parameters::get(name_ + "->overlap", overlap);
std::string periodic(dimension, '0');
Parameters::get(name_ + "->periodic", periodic); // e.g. 000 01 111
return create_yaspgrid(Types<GridType>{}, overlap, std::bitset<dimension>(periodic));
}
template <int dim, class ct>
std::unique_ptr<Grid> create_yaspgrid(Types<Dune::YaspGrid<dim,Dune::EquidistantCoordinates<ct,dim>>>,
int overlap, std::bitset<dimension> const& per) const
{
return create_structured_grid<int>([&](auto&& /*lower*/, auto&& upper, std::array<int,dimension> const& numCells)
{
return std::make_unique<Grid>(upper, numCells, per, overlap);
});
}
template <int dim, class ct>
std::unique_ptr<Grid> create_yaspgrid(Types<Dune::YaspGrid<dim,Dune::EquidistantOffsetCoordinates<ct,dim>>>,
int overlap, std::bitset<dimension> const& per) const
{
return create_structured_grid<int>([&](auto&& lower, auto&& upper, std::array<int,dimension> const& numCells)
{
return std::make_unique<Grid>(lower, upper, numCells, per, overlap);
});
} }
template <int dim, class ct>
std::unique_ptr<Grid> create_yaspgrid(Types<Dune::YaspGrid<dim,Dune::TensorProductCoordinates<ct,dim>>>,
int overlap, std::bitset<dimension> const& per) const
{
error_exit("MeshCreator cannot create YaspGrid with TensorProductCoordinates.");
return {};
}
#if HAVE_DUNE_SPGRID #if HAVE_DUNE_SPGRID
// spgrid -> cube // spgrid -> cube
template <class GridType = Grid, template <class GridType = Grid,
...@@ -233,11 +283,9 @@ namespace AMDiS ...@@ -233,11 +283,9 @@ namespace AMDiS
class = typename GridType::MultiIndex> class = typename GridType::MultiIndex>
std::unique_ptr<GridType> create_by_gridtype(Dune::PriorityTag<1>) const std::unique_ptr<GridType> create_by_gridtype(Dune::PriorityTag<1>) const
{ {
return create_structured_grid([](auto&& lower, auto&& upper, auto&& numCells) return create_structured_grid<int>([](auto&& lower, auto&& upper, std::array<int,dimension> const& numCells)
{ {
std::array<int,dimworld> cells; typename GridType::MultiIndex multiIndex(numCells);
std::copy(std::begin(numCells), std::end(numCells), std::begin(cells));
typename GridType::MultiIndex multiIndex(cells);
return std::make_unique<GridType>(lower, upper, multiIndex); return std::make_unique<GridType>(lower, upper, multiIndex);
}); });
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment