From 908d395c7bca03846d357ebd62d81a4eaee9d679 Mon Sep 17 00:00:00 2001
From: Philipp Nuske <philipp.nuske@mailbox.org>
Date: Tue, 4 Oct 2011 13:54:15 +0000
Subject: [PATCH] - the averaging of the velocities was supposed to be
 accomplished in the   model. - Thus, the name of the steering-property
 changed. - However, an old name went into the repository: changed back.

git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@6709 2fb0f335-1f38-0410-981e-8018bf24f1b0
---
 dumux/boxmodels/MpNc/MpNcproperties.hh       | 2 +-
 dumux/boxmodels/MpNc/MpNcpropertydefaults.hh | 4 ++--
 dumux/boxmodels/MpNc/MpNcvtkwritercommon.hh  | 2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/dumux/boxmodels/MpNc/MpNcproperties.hh b/dumux/boxmodels/MpNc/MpNcproperties.hh
index 40edab43e9..f8151fe7df 100644
--- a/dumux/boxmodels/MpNc/MpNcproperties.hh
+++ b/dumux/boxmodels/MpNc/MpNcproperties.hh
@@ -49,7 +49,7 @@ NEW_PROP_TAG(MPNCVtkMassModule); //!< Vtk writer module for writing the mass rel
 NEW_PROP_TAG(MPNCVtkEnergyModule); //!< Vtk writer module for writing the energy related quantities into the VTK output file
 NEW_PROP_TAG(MPNCVtkCustomModule); //!< Vtk writer module for writing the user-specified quantities into the VTK output file
 
-NEW_PROP_TAG(VelocityAveragingInProblem);//!< Should the averaging of velocities be done in the problem?
+NEW_PROP_TAG(VelocityAveragingInModel);//!< Should the averaging of velocities be done in the model?
 
 //! specify which quantities are written to the vtk output files
 NEW_PROP_TAG(MPNCVtkAddPorosity);
diff --git a/dumux/boxmodels/MpNc/MpNcpropertydefaults.hh b/dumux/boxmodels/MpNc/MpNcpropertydefaults.hh
index f3e912a486..00dc2a55e4 100644
--- a/dumux/boxmodels/MpNc/MpNcpropertydefaults.hh
+++ b/dumux/boxmodels/MpNc/MpNcpropertydefaults.hh
@@ -194,8 +194,8 @@ SET_PROP(BoxMPNC, MPNCVtkCustomModule)
 { typedef MPNCVtkWriterModule<TypeTag> type; };
 
 
-//!< Should the averaging of velocities be done in the problem? (By default in the output)
-SET_BOOL_PROP(BoxMPNC, VelocityAveragingInProblem, false);
+//!< Should the averaging of velocities be done in the Model? (By default in the output)
+SET_BOOL_PROP(BoxMPNC, VelocityAveragingInModel, false);
 
 //! Specify what to add to the VTK output by default
 SET_BOOL_PROP(BoxMPNC, MPNCVtkAddPorosity, true);
diff --git a/dumux/boxmodels/MpNc/MpNcvtkwritercommon.hh b/dumux/boxmodels/MpNc/MpNcvtkwritercommon.hh
index 63f91de447..a6b53eedae 100644
--- a/dumux/boxmodels/MpNc/MpNcvtkwritercommon.hh
+++ b/dumux/boxmodels/MpNc/MpNcvtkwritercommon.hh
@@ -67,7 +67,7 @@ class MPNCVtkWriterCommon : public MPNCVtkWriterModule<TypeTag>
     enum { numComponents = GET_PROP_VALUE(TypeTag, PTAG(NumComponents)) };
     enum { numEq = GET_PROP_VALUE(TypeTag, PTAG(NumEq)) };
 
-    enum { velocityAveragingInProblem = GET_PROP_VALUE(TypeTag, PTAG(VelocityAveragingInProblem)) };
+    enum { velocityAveragingInModel = GET_PROP_VALUE(TypeTag, PTAG(VelocityAveragingInModel)) };
 
     typedef Dune::FieldVector<Scalar, dim> VelocityVector;
     typedef Dune::BlockVector<VelocityVector> VelocityField;
-- 
GitLab