24#ifndef DUMUX_IO_GRID_MANAGER_ONED_HH
25#define DUMUX_IO_GRID_MANAGER_ONED_HH
27#include <dune/grid/onedgrid.hh>
28#include <dune/grid/io/file/dgfparser/dgfoned.hh>
30#ifndef DUMUX_IO_GRID_MANAGER_BASE_HH
55 using Grid = Dune::OneDGrid;
61 void init(
const std::string& modelParamGroup =
"")
67 ParentType::makeGridFromDgfFile(getParamFromGroup<std::string>(modelParamGroup,
"Grid.File"));
68 postProcessing_(modelParamGroup);
76 using CoordinateType =
typename Grid::ctype;
77 const auto leftBoundary = getParamFromGroup<CoordinateType>(modelParamGroup,
"Grid.LeftBoundary", 0.0);
78 const auto rightBoundary = getParamFromGroup<CoordinateType>(modelParamGroup,
"Grid.RightBoundary");
79 const int cells = getParamFromGroup<int>(modelParamGroup,
"Grid.Cells", 1);
81 ParentType::gridPtr() = std::make_shared<Grid>(cells, leftBoundary, rightBoundary);
82 postProcessing_(modelParamGroup);
89 const auto coordinates = getParamFromGroup<std::vector<typename Grid::ctype>>(modelParamGroup,
"Grid.Coordinates");
90 ParentType::gridPtr() = std::make_shared<Grid>(coordinates);
91 postProcessing_(modelParamGroup);
97 const auto prefix = modelParamGroup.empty() ? modelParamGroup : modelParamGroup +
".";
99 << prefix +
"Grid.RightBoundary"
100 <<
", or " << prefix +
"Grid.Coordinates"
101 <<
", or a grid file in " << prefix +
"Grid.File");
114 void postProcessing_(
const std::string& modelParamGroup)
117 const auto refType = getParamFromGroup<std::string>(modelParamGroup,
"Grid.RefinementType",
"Local");
118 if (refType ==
"Local")
119 ParentType::grid().setRefinementType(Dune::OneDGrid::RefinementType::LOCAL);
120 else if (refType ==
"Copy")
121 ParentType::grid().setRefinementType(Dune::OneDGrid::RefinementType::COPY);
123 DUNE_THROW(Dune::IOError,
"OneGrid only supports 'Local' or 'Copy' as refinment type. Not '"<< refType<<
"'!");
126 ParentType::maybeRefineGrid(modelParamGroup);
Provides a grid manager for all supported grid managers with input file interfaces....
bool hasParamInGroup(const std::string ¶mGroup, const std::string ¶m)
Check whether a key exists in the parameter tree with a model group prefix.
Definition: parameters.hh:391
Definition: common/pdesolver.hh:35
Exception thrown if a run-time parameter is not specified correctly.
Definition: exceptions.hh:60
The grid manager (this is the class used by the user) for all supported grid managers that constructs...
Definition: gridmanager_base.hh:320
The grid manager base interface (public) and methods common to most grid manager specializations (pro...
Definition: gridmanager_base.hh:73
void loadBalance()
Call loadBalance() function of the grid.
Definition: gridmanager_base.hh:103
void init(const std::string &modelParamGroup="")
Make the grid. This is implemented by specializations of this method.
Definition: gridmanager_oned.hh:61
void loadBalance()
Call loadBalance() function of the grid. OneDGrid is not parallel an thus cannot communicate.
Definition: gridmanager_oned.hh:108
Dune::OneDGrid Grid
Definition: gridmanager_oned.hh:55