From 9ea2161ee3868556d6d180d94b15ca5ed075a30f Mon Sep 17 00:00:00 2001 From: DennisGlaeser <dennis.glaeser@iws.uni-stuttgart.de> Date: Thu, 25 Feb 2016 23:37:34 +0100 Subject: [PATCH] [CCTpfaModel] Set properties for the different flux vars --- dumux/implicit/cellcentered/tpfa/propertydefaults.hh | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/dumux/implicit/cellcentered/tpfa/propertydefaults.hh b/dumux/implicit/cellcentered/tpfa/propertydefaults.hh index 917bfc171f..138d21dc44 100644 --- a/dumux/implicit/cellcentered/tpfa/propertydefaults.hh +++ b/dumux/implicit/cellcentered/tpfa/propertydefaults.hh @@ -34,6 +34,7 @@ #include <dumux/implicit/cellcentered/elementboundarytypes.hh> #include <dumux/implicit/cellcentered/localresidual.hh> #include <dumux/implicit/cellcentered/properties.hh> +#include <dumux/porousmediumflow/implicit/cellcentered/tpfa/darcyfluxvariables.hh> namespace Dumux { @@ -82,9 +83,18 @@ private: using IndexType = typename Grid::LeafGridView::IndexSet::IndexType; public: typedef Dumux::SubControlVolumeFace<ScvfGeometry, IndexType> type; - }; +//! The darcy flux variables +SET_PROP(CCTpfaModel, DarcyFluxVariables, Dumux::CCTpfaImplicitDarcyFluxVariables<TypeTag>); + +// TODO: Actually implement the diffusion and energy flux variables +//! The diffusion flux variables +SET_PROP(CCTpfaModel, DiffusionFluxVariables, Dumux::CCTpfaImplicitDarcyFluxVariables<TypeTag>); + +//! The energy flux variables +SET_PROP(CCTpfaModel, EnergyFluxVariables, Dumux::CCTpfaImplicitDarcyFluxVariables<TypeTag>); + } // namespace Properties } // namespace Dumux -- GitLab