version 3.8
cellcentered/mpfa/gridvolumevariables.hh
Go to the documentation of this file.
1// -*- mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
2// vi: set et ts=4 sw=4 sts=4:
3//
4// SPDX-FileCopyrightInfo: Copyright © DuMux Project contributors, see AUTHORS.md in root folder
5// SPDX-License-Identifier: GPL-3.0-or-later
6//
12#ifndef DUMUX_DISCRETIZATION_CC_MPFA_GRID_VOLUMEVARIABLES_HH
13#define DUMUX_DISCRETIZATION_CC_MPFA_GRID_VOLUMEVARIABLES_HH
14
17
18namespace Dumux {
19
24template<class P, class VV>
26{
27 using Problem = P;
28 using VolumeVariables = VV;
29
30 template<class GridVolumeVariables, bool cachingEnabled>
32};
33
43template<class Problem,
44 class VolumeVariables,
45 bool cachingEnabled = false,
47class CCMpfaGridVolumeVariables : public CCGridVolumeVariables<Traits, cachingEnabled>
48{
49public:
51 using ParentType::ParentType;
52};
53
54} // end namespace Dumux
55
56#endif
The grid volume variables class for cell centered models.
The local (stencil) volume variables class for cell centered mpfa models.
Base class for the grid volume variables.
Definition: cellcentered/gridvolumevariables.hh:34
The local (stencil) volume variables class for cell centered mpfa models.
Definition: cellcentered/mpfa/elementvolumevariables.hh:181
Base class for the grid volume variables.
Definition: cellcentered/mpfa/gridvolumevariables.hh:48
Definition: adapt.hh:17
Traits for the base class for the grid volume variables.
Definition: cellcentered/mpfa/gridvolumevariables.hh:26
P Problem
Definition: cellcentered/mpfa/gridvolumevariables.hh:27
VV VolumeVariables
Definition: cellcentered/mpfa/gridvolumevariables.hh:28