template<class Grid>
class Dumux::PoreNetwork::GridData< Grid >
Class for grid data attached to dgf or gmsh grid files.
|
| GridData (Dune::GridPtr< Grid > grid, const std::string ¶mGroup) |
| constructor for dgf grid data More...
|
|
| GridData (std::shared_ptr< Grid > grid, const std::string ¶mGroup) |
| constructor for non-dgf grid data More...
|
|
const std::vector< double > & | parameters (const Vertex &vertex) const |
| Call the parameters function of the DGF grid pointer if available for vertex data. More...
|
|
const std::vector< double > & | parameters (const Element &element) const |
| Call the parameters function of the DGF grid pointer if available for element data. More...
|
|
template<class GridImp , class IntersectionImp > |
const Dune::DGFBoundaryParameter::type & | parameters (const Dune::Intersection< GridImp, IntersectionImp > &intersection) const |
| Call the parameters function of the DGF grid pointer if available. More...
|
|
std::vector< SmallLocalIndex > | getCoordinationNumbers () const |
| Returns the coordination numbers for all pore bodies. More...
|
|
void | assignParameters () |
| Assign parameters for generically created grids. More...
|
|
void | resizeParameterContainers () |
|
void | copyDgfData () |
|
int | parameterIndex (const std::string ¶mName) const |
| Return the index for a given parameter name. More...
|
|
const std::string & | paramGroup () const |
| Return the parameter group. More...
|
|
bool | gridHasElementParameter (const std::string ¶m) const |
| Return if a given element parameter is provided by the grid. More...
|
|
bool | gridHasVertexParameter (const std::string ¶m) const |
| Return if a given vertex parameter is provided by the grid. More...
|
|
Scalar | getParameter (const Element &element, const std::string ¶m) const |
| Returns the value of an element parameter. More...
|
|
Scalar | getParameter (const Vertex &vertex, const std::string ¶m) const |
| Returns the value of an vertex parameter. More...
|
|
int | poreLabelAtPosForGenericGrid (const GlobalPosition &pos) const |
| Returns the pore label at a given position for a generic grid. This is needed by the grid creator in case not all parameters are initialized yet. More...
|
|
const std::vector< std::string > & | vertexParameterNames () const |
| Returns the names of the vertex parameters. More...
|
|
const std::vector< std::string > & | elementParameterNames () const |
| Returns the names of the element parameters. More...
|
|