From 4e1c88eef7d298f0008d25c2ab8a66497ea67e23 Mon Sep 17 00:00:00 2001 From: Kilian Weishaupt <kilian.weishaupt@iws.uni-stuttgart.de> Date: Sat, 18 Feb 2017 16:55:30 +0100 Subject: [PATCH] [staggeredGrid] Add property for compatbility --- dumux/implicit/staggered/properties.hh | 1 + dumux/implicit/staggered/propertydefaults.hh | 5 +++++ 2 files changed, 6 insertions(+) diff --git a/dumux/implicit/staggered/properties.hh b/dumux/implicit/staggered/properties.hh index 924e222c48..1c49343c05 100644 --- a/dumux/implicit/staggered/properties.hh +++ b/dumux/implicit/staggered/properties.hh @@ -50,6 +50,7 @@ NEW_PROP_TAG(FacePrimaryVariables); //!< A vector of primary variables for face NEW_PROP_TAG(CellCenterSolutionVector); //!< Vector containing all cell centered primary variables NEW_PROP_TAG(FaceSolutionVector); //!< Vector containing all face primary variables +NEW_PROP_TAG(EnableInteriorBoundaries); //!< For compatibility NEW_PROP_TAG(NumEqCellCenter); //!< Number of equations per cell center dof NEW_PROP_TAG(NumEqFace); //!< Number of equations per face dof diff --git a/dumux/implicit/staggered/propertydefaults.hh b/dumux/implicit/staggered/propertydefaults.hh index 8b6caf0818..3917d92c88 100644 --- a/dumux/implicit/staggered/propertydefaults.hh +++ b/dumux/implicit/staggered/propertydefaults.hh @@ -242,6 +242,11 @@ SET_TYPE_PROP(StaggeredModel, NewtonConvergenceWriter, StaggeredNewtonConvergenc //! Write separate vtp files for face variables by default SET_BOOL_PROP(StaggeredModel, VtkWriteFaceData, true); + +//! For compatibility +SET_BOOL_PROP(StaggeredModel, EnableInteriorBoundaries, false); + + } // namespace Properties } // namespace Dumux -- GitLab