From 4eeff2bb0691516ba99d6eff9a1855ed525af1ae Mon Sep 17 00:00:00 2001 From: DennisGlaeser <dennis.glaeser@iws.uni-stuttgart.de> Date: Tue, 16 Jan 2018 20:53:13 +0100 Subject: [PATCH] [cc] do not set AssemblyMap property This is not used by means of the property system anymore --- dumux/discretization/cellcentered/mpfa/properties.hh | 6 ------ dumux/discretization/cellcentered/tpfa/properties.hh | 5 ----- 2 files changed, 11 deletions(-) diff --git a/dumux/discretization/cellcentered/mpfa/properties.hh b/dumux/discretization/cellcentered/mpfa/properties.hh index 5a461ae58c..00f6914d57 100644 --- a/dumux/discretization/cellcentered/mpfa/properties.hh +++ b/dumux/discretization/cellcentered/mpfa/properties.hh @@ -37,7 +37,6 @@ #include <dumux/discretization/cellcentered/elementsolution.hh> #include <dumux/discretization/cellcentered/elementboundarytypes.hh> -#include <dumux/discretization/cellcentered/mpfa/connectivitymap.hh> #include <dumux/discretization/cellcentered/mpfa/fvgridgeometry.hh> #include <dumux/discretization/cellcentered/mpfa/gridfluxvariablescache.hh> #include <dumux/discretization/cellcentered/mpfa/fvelementgeometry.hh> @@ -186,11 +185,6 @@ SET_TYPE_PROP(CCMpfaModel, ElementBoundaryTypes, CCElementBoundaryTypes<TypeTag> //! Set the BaseLocalResidual to CCLocalResidual SET_TYPE_PROP(CCMpfaModel, BaseLocalResidual, CCLocalResidual<TypeTag>); - -//! Set the AssemblyMap property -SET_TYPE_PROP(CCMpfaModel, AssemblyMap, Dumux::CCMpfaConnectivityMap<typename GET_PROP_TYPE(TypeTag, FVGridGeometry), - GET_PROP_VALUE(TypeTag, MpfaMethod)>); - } // namespace Properties } // namespace Dumux diff --git a/dumux/discretization/cellcentered/tpfa/properties.hh b/dumux/discretization/cellcentered/tpfa/properties.hh index 1524324e28..854abf0413 100644 --- a/dumux/discretization/cellcentered/tpfa/properties.hh +++ b/dumux/discretization/cellcentered/tpfa/properties.hh @@ -42,7 +42,6 @@ #include <dumux/discretization/cellcentered/subcontrolvolume.hh> #include <dumux/discretization/cellcentered/elementboundarytypes.hh> -#include <dumux/discretization/cellcentered/connectivitymap.hh> #include <dumux/discretization/cellcentered/elementsolution.hh> #include <dumux/discretization/cellcentered/tpfa/fvgridgeometry.hh> #include <dumux/discretization/cellcentered/tpfa/gridfluxvariablescache.hh> @@ -123,10 +122,6 @@ SET_TYPE_PROP(CCTpfaModel, ElementBoundaryTypes, CCElementBoundaryTypes<TypeTag> //! Set the BaseLocalResidual to CCLocalResidual SET_TYPE_PROP(CCTpfaModel, BaseLocalResidual, CCLocalResidual<TypeTag>); - -//! Set the AssemblyMap to the SimpleAssemblyMap per default -SET_TYPE_PROP(CCTpfaModel, AssemblyMap, CCSimpleConnectivityMap<TypeTag>); - } // namespace Properties } // namespace Dumux -- GitLab