diff --git a/dumux/discretization/cellcentered/mpfa/interiorboundarydata.hh b/dumux/discretization/cellcentered/mpfa/interiorboundarydata.hh index 3244b8c74e3b2bf81d07001e2003fdaf3fe8b427..0ab82f8efcbf4c28d8376b3b0de8787bd66b65e0 100644 --- a/dumux/discretization/cellcentered/mpfa/interiorboundarydata.hh +++ b/dumux/discretization/cellcentered/mpfa/interiorboundarydata.hh @@ -123,12 +123,13 @@ public: VolumeVariables facetVolVars(const FVElementGeometry& fvGeometry) const { //! This cannot be called when FacetCoupling is active - assert(!GET_PROP_VALUE(TypeTag, MpfaFacetCoupling) && "For models with a coupled problem on the element facets you have to" - "provide a suitable implementation of the InteriorBoundaryData class"); + static const bool isFacetCoupling = GET_PROP_VALUE(TypeTag, MpfaFacetCoupling); + assert(!isFacetCoupling && "For models with a coupled problem on the element facets you have to" + "provide a suitable implementation of the InteriorBoundaryData class"); //! This can only be called for interior Dirichlet boundaries - assert(faceType_ == MpfaFaceType::interiorDirichlet && "requesting Dirichlet vol vars for a face which is" - "not marked as interior Dirichlet face."); + assert(faceType_ == MpfaFaceTypes::interiorDirichlet && "requesting Dirichlet vol vars for a face which is" + "not marked as interior Dirichlet face."); auto element = problem_().model().globalFvGeometry().element(elementIndex()); auto priVars = problem_().dirichlet(element, fvGeometry.scvf(scvfIndex()));