Skip to content
Snippets Groups Projects
Commit 66d3b715 authored by Samuel Burbulla's avatar Samuel Burbulla Committed by Timo Koch
Browse files

[gridmanager][mmesh] Create structured grid using implicit grid factory

parent c3603cb9
No related branches found
No related tags found
1 merge request!1751[mmesh] Add grid manager for dune-mmesh.
...@@ -75,7 +75,33 @@ public: ...@@ -75,7 +75,33 @@ public:
// Then look for the necessary keys to construct a structured grid from the input file // Then look for the necessary keys to construct a structured grid from the input file
else if (hasParamInGroup(modelParamGroup, "Grid.UpperRight")) else if (hasParamInGroup(modelParamGroup, "Grid.UpperRight"))
{ {
ParentType::template makeStructuredGrid<dim, dim>(ParentType::CellType::Simplex, modelParamGroup); using GlobalPosition = Dune::FieldVector<typename Grid::ctype, dim>;
const auto upperRight = getParamFromGroup<GlobalPosition>(modelParamGroup, "Grid.UpperRight");
const auto lowerLeft = getParamFromGroup<GlobalPosition>(modelParamGroup, "Grid.LowerLeft", GlobalPosition(0.0));
using CellArray = std::array<unsigned int, dim>;
CellArray numCells; numCells.fill(1);
numCells = getParamFromGroup<CellArray>(modelParamGroup, "Grid.Cells", numCells);
// Insert uniformly spaced vertices
std::array<unsigned int, dim> numVertices = numCells;
for (int i = 0; i < dim; ++i)
numVertices[i]++;
Dune::MMeshImplicitGridFactory<Grid> factory;
// Insert equally spaced vertices
Dune::FactoryUtilities::MultiIndex<dim> index(numVertices);
for (int i = 0; i < index.cycle(); ++i, ++index)
{
GlobalPosition pos(0);
for (int j=0; j<dim; j++)
pos[j] = lowerLeft[j] + index[j] * (upperRight[j]-lowerLeft[j])/(numVertices[j]-1);
factory.insertVertex(pos);
}
this->gridPtr() = std::unique_ptr<Grid>(factory.createGrid());
ParentType::maybeRefineGrid(modelParamGroup); ParentType::maybeRefineGrid(modelParamGroup);
ParentType::loadBalance(); ParentType::loadBalance();
} }
......
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