diff --git a/dumux/implicit/cellcentered/tpfa/propertydefaults.hh b/dumux/implicit/cellcentered/tpfa/propertydefaults.hh index 917bfc171fa30988f09c245bed23ab17a2ebc08c..138d21dc449098c1b4910d62abeb0cc963b0a8de 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