version 3.8
cellcentered/tpfa/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_TPFA_GRID_VOLUMEVARIABLES_HH
13#define DUMUX_DISCRETIZATION_CC_TPFA_GRID_VOLUMEVARIABLES_HH
14
17
18namespace Dumux {
19
20template<class P, class VV>
22{
23 using Problem = P;
24 using VolumeVariables = VV;
25
26 template<class GridVolumeVariables, bool cachingEnabled>
28};
29
39template<class Problem,
40 class VolumeVariables,
41 bool cachingEnabled = false,
43class CCTpfaGridVolumeVariables : public CCGridVolumeVariables<Traits, cachingEnabled>
44{
45public:
47 using ParentType::ParentType;
48};
49
50} // end namespace Dumux
51
52#endif
The grid volume variables class for cell centered models.
The local (stencil) volume variables class for cell centered tpfa models.
Base class for the grid volume variables.
Definition: cellcentered/gridvolumevariables.hh:34
The local (stencil) volume variables class for cell centered tpfa models.
Definition: cellcentered/tpfa/elementvolumevariables.hh:33
Base class for the grid volume variables.
Definition: cellcentered/tpfa/gridvolumevariables.hh:44
Definition: adapt.hh:17
Definition: cellcentered/tpfa/gridvolumevariables.hh:22
VV VolumeVariables
Definition: cellcentered/tpfa/gridvolumevariables.hh:24
P Problem
Definition: cellcentered/tpfa/gridvolumevariables.hh:23