Skip to content
Snippets Groups Projects
Commit b0711210 authored by Kilian Weishaupt's avatar Kilian Weishaupt
Browse files

[staggered][faceVars] First step towards caching = off

parent 61f9c25d
No related branches found
No related tags found
3 merge requests!617[WIP] Next,!576Feature/port staggered ff to next next,!571Cleanup/next
...@@ -70,6 +70,7 @@ class StaggeredLocalAssembler<TypeTag, ...@@ -70,6 +70,7 @@ class StaggeredLocalAssembler<TypeTag,
using NumFaceEqVector = typename GET_PROP_TYPE(TypeTag, FacePrimaryVariables); using NumFaceEqVector = typename GET_PROP_TYPE(TypeTag, FacePrimaryVariables);
using FaceSolutionVector = typename GET_PROP_TYPE(TypeTag, FaceSolutionVector); using FaceSolutionVector = typename GET_PROP_TYPE(TypeTag, FaceSolutionVector);
using FaceSolution = typename GET_PROP_TYPE(TypeTag, StaggeredFaceSolution);
enum { numEq = GET_PROP_VALUE(TypeTag, NumEq) }; enum { numEq = GET_PROP_VALUE(TypeTag, NumEq) };
...@@ -516,7 +517,7 @@ static void dFacedFace_(Assembler& assembler, ...@@ -516,7 +517,7 @@ static void dFacedFace_(Assembler& assembler,
for(auto pvIdx : PriVarIndices(faceIdx)) for(auto pvIdx : PriVarIndices(faceIdx))
{ {
auto faceSolution = StaggeredFaceSolution<TypeTag>(scvf, curSol[faceIdx], assembler.fvGridGeometry()); auto faceSolution = FaceSolution(scvf, curSol[faceIdx], assembler.fvGridGeometry());
const Scalar eps = numericEpsilon(faceSolution[globalJ][pvIdx], faceIdx, faceIdx); const Scalar eps = numericEpsilon(faceSolution[globalJ][pvIdx], faceIdx, faceIdx);
......
...@@ -28,9 +28,17 @@ ...@@ -28,9 +28,17 @@
namespace Dumux namespace Dumux
{ {
/*!
* \ingroup ImplicitModel
* \brief Base class for the face variables vector
*/
template<class TypeTag, bool enableGlobalFaceVarsCache>
class StaggeredElementFaceVariables
{};
template<class TypeTag> template<class TypeTag>
class StaggeredElementFaceVariables class StaggeredElementFaceVariables<TypeTag, /*enableGlobalFaceVarsCache*/true>
{ {
using GridView = typename GET_PROP_TYPE(TypeTag, GridView); using GridView = typename GET_PROP_TYPE(TypeTag, GridView);
using Element = typename GridView::template Codim<0>::Entity; using Element = typename GridView::template Codim<0>::Entity;
...@@ -71,6 +79,43 @@ private: ...@@ -71,6 +79,43 @@ private:
const GlobalFaceVars* globalFaceVarsPtr_; const GlobalFaceVars* globalFaceVarsPtr_;
}; };
template<class TypeTag>
class StaggeredElementFaceVariables<TypeTag, /*enableGlobalFaceVarsCache*/false>
{
using GridView = typename GET_PROP_TYPE(TypeTag, GridView);
using Element = typename GridView::template Codim<0>::Entity;
using SolutionVector = typename GET_PROP_TYPE(TypeTag, SolutionVector);
using SubControlVolumeFace = typename GET_PROP_TYPE(TypeTag, SubControlVolumeFace);
using GlobalFaceVars = typename GET_PROP_TYPE(TypeTag, GlobalFaceVars);
using FaceVariables = typename GET_PROP_TYPE(TypeTag, FaceVariables);
using FVElementGeometry = typename GET_PROP_TYPE(TypeTag, FVElementGeometry);
using IndexType = typename GridView::IndexSet::IndexType;
using DofTypeIndices = typename GET_PROP(TypeTag, DofTypeIndices);
typename DofTypeIndices::CellCenterIdx cellCenterIdx;
typename DofTypeIndices::FaceIdx faceIdx;
public:
//! For compatibility reasons with the case of not storing the vol vars.
//! function to be called before assembling an element, preparing the vol vars within the stencil
void bind(const Element& element,
const FVElementGeometry& fvGeometry,
const SolutionVector& sol)
{
faceVariables_.resize(fvGeometry.numScvf());
for(auto&& scvf : scvfs(fvGeometry))
{
// TODO: do proper update
// faceVariables_[scvf.localFaceIdx()].update(sol[faceIdx], problem_(), element, fvGeometry, scvf)
}
}
private:
std::vector<IndexType> faceVarIndices_;
std::vector<FaceVariables> faceVariables_;
};
} // end namespace } // end namespace
#endif #endif
...@@ -64,6 +64,7 @@ NEW_PROP_TAG(CellCenterSolutionVector); ...@@ -64,6 +64,7 @@ NEW_PROP_TAG(CellCenterSolutionVector);
NEW_PROP_TAG(FaceSolutionVector); NEW_PROP_TAG(FaceSolutionVector);
NEW_PROP_TAG(StaggeredFaceSolution); NEW_PROP_TAG(StaggeredFaceSolution);
NEW_PROP_TAG(ElementFaceVariables); NEW_PROP_TAG(ElementFaceVariables);
NEW_PROP_TAG(EnableGlobalFaceVariablesCache);
//! Type tag for the box scheme. //! Type tag for the box scheme.
NEW_TYPE_TAG(StaggeredModel, INHERITS_FROM(FiniteVolumeModel, NumericModel)); NEW_TYPE_TAG(StaggeredModel, INHERITS_FROM(FiniteVolumeModel, NumericModel));
...@@ -115,7 +116,9 @@ SET_TYPE_PROP(StaggeredModel, IntersectionMapper, Dumux::ConformingGridIntersect ...@@ -115,7 +116,9 @@ SET_TYPE_PROP(StaggeredModel, IntersectionMapper, Dumux::ConformingGridIntersect
SET_TYPE_PROP(StaggeredModel, StaggeredFaceSolution, StaggeredFaceSolution<TypeTag>); SET_TYPE_PROP(StaggeredModel, StaggeredFaceSolution, StaggeredFaceSolution<TypeTag>);
SET_TYPE_PROP(StaggeredModel, ElementFaceVariables, StaggeredElementFaceVariables<TypeTag>); SET_TYPE_PROP(StaggeredModel, ElementFaceVariables, StaggeredElementFaceVariables<TypeTag, GET_PROP_VALUE(TypeTag, EnableGlobalFaceVariablesCache)>);
SET_BOOL_PROP(StaggeredModel, EnableGlobalFaceVariablesCache, true);
//! Definition of the indices for cell center and face dofs in the global solution vector //! Definition of the indices for cell center and face dofs in the global solution vector
SET_PROP(StaggeredModel, DofTypeIndices) SET_PROP(StaggeredModel, DofTypeIndices)
......
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