The grid manager (this is the class used by the user) for all supported grid managers that constructs a grid from information in the input file and handles the data.
More...
template<class
Grid>
class Dumux::GridManager< Grid >
- Note
- This class is specialised below for all supported grid managers. It inherits the functionality of the base class Dumux::GridManagerBase.
|
| void | init (const std::string &modelParamGroup="") |
| | Make the grid. Implement this method in the specialization of this class for a grid type.
|
| |
| void | init (const std::string &modelParamGroup="") |
| | Make the grid. Implement this method in the specialization of this class for a grid type.
|
| |
| Grid & | grid () |
| | Returns a reference to the grid.
|
| |
| const Grid & | grid () const |
| | Returns a const reference to the grid.
|
| |
| Grid & | grid () |
| | Returns a reference to the grid.
|
| |
| const Grid & | grid () const |
| | Returns a const reference to the grid.
|
| |
| void | loadBalance () |
| | Call loadBalance() function of the grid.
|
| |
| void | loadBalance () |
| | Call loadBalance() function of the grid.
|
| |
| std::shared_ptr< GridData > | getGridData () const |
| | Get an owning pointer to grid data associated with the grid.
|
| |
| std::shared_ptr< GridData > | getGridData () const |
| | Get an owning pointer to grid data associated with the grid.
|
| |
| bool | hasGridData () const |
| | Check whether there is data associated with the grid.
|
| |
| bool | hasGridData () const |
| | Check whether there is data associated with the grid.
|
| |
|
| std::shared_ptr< Grid > & | gridPtr () |
| | Returns a reference to the grid pointer (std::shared_ptr<Grid>)
|
| |
| std::shared_ptr< Grid > & | gridPtr () |
| | Returns a reference to the grid pointer (std::shared_ptr<Grid>)
|
| |
| Dune::GridPtr< Grid > & | dgfGridPtr () |
| | Returns a reference to the DGF grid pointer (Dune::GridPtr<Grid>).
|
| |
| Dune::GridPtr< Grid > & | dgfGridPtr () |
| | Returns a reference to the DGF grid pointer (Dune::GridPtr<Grid>).
|
| |
| std::string | getFileExtension (const std::string &fileName) const |
| | Returns the filename extension of a given filename.
|
| |
| std::string | getFileExtension (const std::string &fileName) const |
| | Returns the filename extension of a given filename.
|
| |
| void | makeGridFromFile (const std::string &fileName, const std::string &modelParamGroup) |
| | Makes a grid from a file. We currently support.
|
| |
| void | makeGridFromFile (const std::string &fileName, const std::string &modelParamGroup) |
| | Makes a grid from a file. We currently support.
|
| |
| void | makeGridFromDgfFile (const std::string &fileName) |
| | Makes a grid from a DGF file. This is used by grid managers that only support DGF.
|
| |
| void | makeGridFromDgfFile (const std::string &fileName) |
| | Makes a grid from a DGF file. This is used by grid managers that only support DGF.
|
| |
| void | makeStructuredGrid (CellType cellType, const std::string &modelParamGroup) |
| | Makes a structured cube grid using the structured grid factory.
|
| |
| void | makeStructuredGrid (CellType cellType, const std::string &modelParamGroup) |
| | Makes a structured cube grid using the structured grid factory.
|
| |
| void | maybeRefineGrid (const std::string &modelParamGroup) |
| | Refines a grid after construction if GridParameterGroup.Refinement is set in the input file.
|
| |
| void | maybeRefineGrid (const std::string &modelParamGroup) |
| | Refines a grid after construction if GridParameterGroup.Refinement is set in the input file.
|
| |