template<class FVElementGeometry, class PV>
class Dumux::CCElementSolution< FVElementGeometry, PV >
The element solution vector.
|
| | CCElementSolution ()=default |
| | default constructor More...
|
| |
| template<class SolutionVector > |
| | CCElementSolution (const Element &element, const SolutionVector &sol, const GridGeometry &gridGeometry) |
| | Constructor with element, solution vector and grid geometry. More...
|
| |
| template<class ElementVolumeVariables > |
| | CCElementSolution (const Element &element, const ElementVolumeVariables &elemVolVars, const FVElementGeometry &fvGeometry) |
| | Constructor with element, element volume variables and fv element geometry. More...
|
| |
| | CCElementSolution (PrimaryVariables &&priVars) |
| | Constructor with a primary variable object. More...
|
| |
| | CCElementSolution (const PrimaryVariables &priVars) |
| | Constructor with a primary variable object. More...
|
| |
| template<class SolutionVector > |
| void | update (const Element &element, const SolutionVector &sol, const GridGeometry &gridGeometry) |
| | extract the element solution from the solution vector using a mapper More...
|
| |
| constexpr std::size_t | size () const |
| | return the size of the element solution More...
|
| |
| template<typename IndexType > |
| const PrimaryVariables & | operator[] (IndexType i) const |
| | bracket operator const access More...
|
| |
| template<typename IndexType > |
| PrimaryVariables & | operator[] (IndexType i) |
| | bracket operator access More...
|
| |