diff --git a/dumux/boxmodels/1p2c/1p2cmodel.hh b/dumux/boxmodels/1p2c/1p2cmodel.hh
index 08ef2f13b6ff1b8846388ab8578e1a638af8afa7..caeccc67f7a1ad4c3b69617c1746bd7b129296ff 100644
--- a/dumux/boxmodels/1p2c/1p2cmodel.hh
+++ b/dumux/boxmodels/1p2c/1p2cmodel.hh
@@ -109,7 +109,12 @@ class OnePTwoCBoxModel : public BoxModel<TypeTag>
     static constexpr Scalar upwindAlpha = GET_PROP_VALUE(TypeTag, PTAG(UpwindAlpha));
     typedef Dune::FieldMatrix<Scalar, dimWorld, dimWorld> Tensor;
 
+    const Scalar scale_;
 public:
+    OnePTwoCBoxModel():
+        scale_(GET_PROP_VALUE(TypeTag, PTAG(Scaling)))
+    {}
+
     /*!
      * \brief \copybrief Dumux::BoxModel::addOutputVtkFields
      *
@@ -122,9 +127,8 @@ public:
     void addOutputVtkFields(const SolutionVector &sol,
                             MultiWriter &writer)
     {
-        Scalar scale = 1;//e3;
         typedef Dune::BlockVector<Dune::FieldVector<Scalar, 1> > ScalarField;
-
+        std::cout<<"Scaling darcy "<< scale_<<std::endl;
         // create the required scalar fields
         unsigned numVertices = this->problem_().gridView().size(dim);
         ScalarField *pressure = writer.template createField<Scalar, 1>(numVertices);
@@ -187,14 +191,14 @@ public:
                                i,
                                false);
 
-                (*pressure)[globalIdx] = volVars.pressure()*scale;
-                (*delp)[globalIdx] = volVars.pressure()*scale - 1e5;
+                (*pressure)[globalIdx] = volVars.pressure()*scale_;
+                (*delp)[globalIdx] = volVars.pressure()*scale_ - 1e5;
                 (*moleFrac0)[globalIdx] = volVars.moleFrac(0);
                 (*moleFrac1)[globalIdx] = volVars.moleFrac(1);
                 (*massFrac0)[globalIdx] = volVars.massFrac(0);
                 (*massFrac1)[globalIdx] = volVars.massFrac(1);
-                (*rho)[globalIdx] = volVars.density()*scale*scale*scale;
-                (*mu)[globalIdx] = volVars.viscosity()*scale;
+                (*rho)[globalIdx] = volVars.density()*scale_*scale_*scale_;
+                (*mu)[globalIdx] = volVars.viscosity()*scale_;
                 (*delFrac)[globalIdx] = volVars.massFrac(1)-volVars.moleFrac(1);
             };
 
@@ -295,16 +299,16 @@ public:
 
               //use vertiacl faces for vx and horizontal faces for vy calculation
              (*velocityX)[i] /= boxSurface[i][0];
-             (*velocityX)[i] /= scale;
+             (*velocityX)[i] /= scale_;
              if (dim >= 2)
              {
                  (*velocityY)[i] /= boxSurface[i][1];
-                 (*velocityY)[i] /= scale;
+                 (*velocityY)[i] /= scale_;
              }
              if (dim == 3)
              {
                  (*velocityZ)[i] /= boxSurface[i][2];
-                 (*velocityZ)[i] /= scale;
+                 (*velocityZ)[i] /= scale_;
              }
         }
 #endif
diff --git a/dumux/boxmodels/1p2c/1p2cproperties.hh b/dumux/boxmodels/1p2c/1p2cproperties.hh
index 2ce13078fd7c5709b7679bdb26666f0dfa0c7dc3..51bb9525f6cbfd4cf0e096dd4379911bc6ea026c 100644
--- a/dumux/boxmodels/1p2c/1p2cproperties.hh
+++ b/dumux/boxmodels/1p2c/1p2cproperties.hh
@@ -60,6 +60,7 @@ NEW_PROP_TAG(FluidSystem); //!< Type of the multi-component relations
 NEW_PROP_TAG(UpwindAlpha);   //!< The default value of the upwind parameter
 NEW_PROP_TAG(EnableGravity); //!< Returns whether gravity is considered in the problem
 NEW_PROP_TAG(UseMoles); //!Defines whether mole (true) or mass (false) fractions are used
+NEW_PROP_TAG(Scaling); //!Defines Scaling of the model
 }
 // \}
 }
diff --git a/dumux/boxmodels/1p2c/1p2cpropertydefaults.hh b/dumux/boxmodels/1p2c/1p2cpropertydefaults.hh
index 369d4e69a1a57f60a87fa9072a6d961ea7a6edd3..b8003cca92383147ad618134fd94938e838fafe7 100644
--- a/dumux/boxmodels/1p2c/1p2cpropertydefaults.hh
+++ b/dumux/boxmodels/1p2c/1p2cpropertydefaults.hh
@@ -54,6 +54,7 @@ namespace Properties
 SET_INT_PROP(BoxOnePTwoC, NumEq, 2); //!< set the number of equations to 2
 SET_INT_PROP(BoxOnePTwoC, NumPhases, 1); //!< The number of phases in the 1p2c model is 1
 SET_INT_PROP(BoxOnePTwoC, NumComponents, 2); //!< The number of components in the 1p2c model is 2
+SET_SCALAR_PROP(BoxOnePTwoC, Scaling, 1); //!< Scaling of the model is set to 1 by default
 
 //! Use the 1p2c local residual function for the 1p2c model
 SET_TYPE_PROP(BoxOnePTwoC, LocalResidual, OnePTwoCLocalResidual<TypeTag>);