From 4b5bddd562d096dbd47b0d1fd21ab2ee86331382 Mon Sep 17 00:00:00 2001
From: Timo Koch <timo.koch@iws.uni-stuttgart.de>
Date: Thu, 26 Jan 2017 17:43:35 +0100
Subject: [PATCH] [properties] Rename
 EvaluatePermeabilityAtScvfCenter->EvaluatePermeabilityAtScvfIP

---
 dumux/implicit/properties.hh                           | 3 +--
 test/mixeddimension/embedded/1p_1p/bloodflowproblem.hh | 2 +-
 2 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/dumux/implicit/properties.hh b/dumux/implicit/properties.hh
index a4aff8cbeb..ddb6ce0acf 100644
--- a/dumux/implicit/properties.hh
+++ b/dumux/implicit/properties.hh
@@ -98,11 +98,10 @@ NEW_PROP_TAG(SolutionDependentMolecularDiffusion); //!< specifies if the paramet
 NEW_PROP_TAG(EnableEnergyBalance); //! Specifies if the model solves an energy equation
 NEW_PROP_TAG(HeatConductionType); //! The type for the calculation of the heat conduction fluxes
 NEW_PROP_TAG(SolutionDependentHeatConduction); //!< specifies if the parameters for the heat conduction fluxes depend on the solution
-NEW_PROP_TAG(EvaluatePermeabilityAtScvfIP); //!< if the permeability has to be evaluated at the scvf integration point (for evaluating analytical fields)
 
 // specify if we evaluate the permeability in the volume (for discontinuous fields)
 // or at the scvf center for analytical permeability fields (e.g. convergence studies)
-NEW_PROP_TAG(EvaluatePermeabilityAtScvfCenter);
+NEW_PROP_TAG(EvaluatePermeabilityAtScvfIP);
 
 // vtk output
 NEW_PROP_TAG(VtkAddVelocity); //!< specifies if an element velocity it reconstructed for the output
diff --git a/test/mixeddimension/embedded/1p_1p/bloodflowproblem.hh b/test/mixeddimension/embedded/1p_1p/bloodflowproblem.hh
index ca07dc3dc7..17c49ef655 100644
--- a/test/mixeddimension/embedded/1p_1p/bloodflowproblem.hh
+++ b/test/mixeddimension/embedded/1p_1p/bloodflowproblem.hh
@@ -65,7 +65,7 @@ public:
 SET_TYPE_PROP(BloodFlowProblem, SpatialParams, BloodFlowSpatialParams<TypeTag>);
 
 // evaluate analytical permeability field at scvf center
-SET_BOOL_PROP(BloodFlowProblem, EvaluatePermeabilityAtScvfCenter, true);
+SET_BOOL_PROP(BloodFlowProblem, EvaluatePermeabilityAtScvfIP, true);
 
 // disable gravity
 SET_BOOL_PROP(BloodFlowProblem, ProblemEnableGravity, false);
-- 
GitLab