Skip to content
Snippets Groups Projects
Commit df6c5ab5 authored by Timo Koch's avatar Timo Koch Committed by Dennis Gläser
Browse files

Remove property ElementVolumeVariables

parent 93e7deef
No related branches found
No related tags found
1 merge request!878Free grid/element/face volvars/fluxvarcache from typetag
...@@ -80,7 +80,6 @@ NEW_PROP_TAG(FVGridGeometry); //!< The type of the global f ...@@ -80,7 +80,6 @@ NEW_PROP_TAG(FVGridGeometry); //!< The type of the global f
NEW_PROP_TAG(EnableFVGridGeometryCache); //!< specifies if geometric data is saved (faster, but more memory consuming) NEW_PROP_TAG(EnableFVGridGeometryCache); //!< specifies if geometric data is saved (faster, but more memory consuming)
NEW_PROP_TAG(VolumeVariables); //!< The secondary variables within a sub-control volume NEW_PROP_TAG(VolumeVariables); //!< The secondary variables within a sub-control volume
NEW_PROP_TAG(ElementVolumeVariables); //!< The type for a local (element/stencil) container for the volume variables
NEW_PROP_TAG(GridVolumeVariables); //!< The type for a global container for the volume variables NEW_PROP_TAG(GridVolumeVariables); //!< The type for a global container for the volume variables
NEW_PROP_TAG(EnableGridVolumeVariablesCache); //!< If disabled, the volume variables are not stored (reduces memory, but is slower) NEW_PROP_TAG(EnableGridVolumeVariablesCache); //!< If disabled, the volume variables are not stored (reduces memory, but is slower)
NEW_PROP_TAG(FluxVariables); //!< Container storing the different types of flux variables NEW_PROP_TAG(FluxVariables); //!< Container storing the different types of flux variables
......
...@@ -73,9 +73,6 @@ public: ...@@ -73,9 +73,6 @@ public:
using type = BoxGridVolumeVariables<Problem, VolumeVariables, enableCache>; using type = BoxGridVolumeVariables<Problem, VolumeVariables, enableCache>;
}; };
//! The element volume variables vector class
SET_TYPE_PROP(BoxModel, ElementVolumeVariables, typename GET_PROP_TYPE(TypeTag, GridVolumeVariables)::LocalView);
//! Set the default for the ElementBoundaryTypes //! Set the default for the ElementBoundaryTypes
SET_TYPE_PROP(BoxModel, ElementBoundaryTypes, BoxElementBoundaryTypes<typename GET_PROP_TYPE(TypeTag, BoundaryTypes)>); SET_TYPE_PROP(BoxModel, ElementBoundaryTypes, BoxElementBoundaryTypes<typename GET_PROP_TYPE(TypeTag, BoundaryTypes)>);
......
...@@ -100,12 +100,6 @@ public: ...@@ -100,12 +100,6 @@ public:
using type = StaggeredGridVolumeVariables<FVGridGeometry, Traits, enableCache>; using type = StaggeredGridVolumeVariables<FVGridGeometry, Traits, enableCache>;
}; };
//! Set the element volume variables class
SET_PROP(StaggeredModel, ElementVolumeVariables)
{
using type = typename GET_PROP_TYPE(TypeTag, GridVolumeVariables)::LocalView;
};
//! Set the global flux variables cache vector class //! Set the global flux variables cache vector class
SET_PROP(StaggeredModel, GridFluxVariablesCache) SET_PROP(StaggeredModel, GridFluxVariablesCache)
{ {
......
...@@ -51,7 +51,6 @@ namespace Properties ...@@ -51,7 +51,6 @@ namespace Properties
NEW_PROP_TAG(TwoPIAIndices); NEW_PROP_TAG(TwoPIAIndices);
NEW_PROP_TAG(NumEq); NEW_PROP_TAG(NumEq);
NEW_PROP_TAG(MaterialLaw); NEW_PROP_TAG(MaterialLaw);
NEW_PROP_TAG(ElementVolumeVariables);
NEW_PROP_TAG(AwnSurface); NEW_PROP_TAG(AwnSurface);
NEW_PROP_TAG(AwnSurfaceParams); NEW_PROP_TAG(AwnSurfaceParams);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment