template<class HostGrid, class SubGrid>
class Dumux::PoreNetwork::SubGridData< HostGrid, SubGrid >
wrapper for subgrid data
|
| | SubGridData (const SubGrid &subGrid, std::shared_ptr< const GridData< HostGrid > > hostGridData) |
| |
| 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...
|
| |
| auto | getParameter (const Element &element, const std::string ¶m) const |
| | Returns the value of an element parameter. More...
|
| |
| auto | getParameter (const Vertex &vertex, const std::string ¶m) const |
| | Returns the value of an vertex parameter. 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...
|
| |
| auto | throatLabel (const Element &element) const |
| | Computes and returns the label of a given throat. More...
|
| |
| int | boundaryFaceMarkerAtPos (const GlobalPosition &pos) const |
| | Returns the boundary face marker index at given position. More...
|
| |
| std::vector< SmallLocalIndex > | getCoordinationNumbers () const |
| | Returns the coordination numbers for all pore bodies. More...
|
| |
| 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...
|
| |
| 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...
|
| |